/* ============================================================
   GRUPO KYKEON — Shared Stylesheet
   Digital Government Transformation
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --primary: #FF751F;
  --primary-light: #FF9A5C;
  --primary-dark: #E55F0A;
  --accent: #FF66C4;
  --accent-hover: #E54DAF;
  --accent-light: #FFF0F8;
  --black: #161616;
  --white: #FFFFFF;
  --gray-50: #F6F6F6;
  --gray-100: #EBEBEB;
  --gray-300: #D4D4D4;
  --gray-600: #5E5E5E;
  --gray-800: #2A2A2A;

  --font: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.16);

  --transition: .3s ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--black);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { max-width: 70ch; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--space-xl) 0;
}

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-family: var(--font);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  max-width: 55ch;
  color: var(--gray-600);
  margin-bottom: 3rem;
}

.text-center { text-align: center; }
.text-center p { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,117,31,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ── Top Bar ─────────────────────────────────────────────── */
.top-bar {
  background: var(--gray-100);
  padding: .5rem 0;
  border-bottom: 1px solid var(--gray-300);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--gray-600);
}

.top-bar a { color: var(--primary); font-weight: 600; }
.top-bar a:hover { color: var(--accent); }

.top-bar-contacts {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.top-bar-contacts span {
  display: flex;
  align-items: center;
  gap: .35rem;
}

/* ── Header / Nav ────────────────────────────────────────── */
.header {
  background: var(--black) !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-800);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22,22,22,0.72);
    /* gradient removed */
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,117,31,.15);
  border: 1px solid rgba(255,117,31,.35);
  color: var(--accent);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero h1 em {
  color: var(--primary) !important;
  font-style: normal;
  color: var(--accent);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  margin: 0 auto 2.5rem;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Stats Strip ────────────────────────────────────────── */
.stats-strip {
  background: var(--primary);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-number em {
  font-style: normal;
  color: var(--accent);
}

.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 600;
}

/* ── Who We Serve ────────────────────────────────────────── */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.serve-card {
  padding: 2rem 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  border-top: 4px solid transparent;
  text-align: center;
  transition: var(--transition);
}

.serve-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
  border-top-color: var(--accent);
}

.serve-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
  transition: var(--transition);
}

.serve-card:hover .serve-icon {
  background: var(--accent);
}

.serve-card h4 { margin-bottom: .5rem; }
.serve-card p { font-size: .9rem; margin: 0; }

/* ── Split Layout ────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-img::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  transform: translate(14px, 14px);
  z-index: -1;
}

.split-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.feature-dot {
  font-size: 0;
  color: transparent;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .25rem;
  font-size: .7rem;
  color: white;
}

/* ── Service Cards ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-card-body {
  padding: 1.75rem;
}

.service-card-body h3 { margin-bottom: .6rem; }
.service-card-body p { font-size: .9rem; margin: 0; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .2;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0;
}

.cta-inner h2 { color: var(--white); }
.cta-inner p { color: rgba(255,255,255,.8); margin: .75rem 0 0; }

.cta-panel {
  background: var(--primary);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  min-width: 280px;
  border: 1px solid rgba(255,117,31,.3);
}

.cta-panel p {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  margin-top: 1rem;
  max-width: none;
}

/* ── Sectors ─────────────────────────────────────────────── */
.sectors-section {
  background: var(--black);
  padding: var(--space-xl) 0;
}

.sectors-section .section-label { color: var(--accent); }
.sectors-section h2 { color: var(--white); }
.sectors-section .section-sub { color: rgba(255,255,255,.7); }

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.sector-card {
  text-align: center;
  cursor: default;
}

.sector-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 3px solid rgba(255,255,255,.15);
  transition: var(--transition);
}

.sector-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: .4s ease;
}

.sector-card:hover .sector-img {
  border-color: var(--accent);
}

.sector-card:hover .sector-img img {
  filter: grayscale(0);
  transform: scale(1.1);
}

.sector-card h4 {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: .35rem;
}

.sector-card p {
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  margin: 0;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card.featured {
  background: var(--black) !important;
  background: var(--primary);
  border-color: var(--primary);
}

.testimonial-card.featured * { color: var(--white); }
/* star-rating rows removed per brand guidelines */
.testimonial-card.featured .testimonial-text { color: rgba(255,255,255,.88); }
.testimonial-card.featured .testimonial-role { color: rgba(255,255,255,.65); }

.stars {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--gray-600);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--primary);
  flex-shrink: 0;
}

.testimonial-name { font-weight: 700; font-size: .9rem; }
.testimonial-role { font-size: .8rem; color: var(--gray-600); }

/* ── Value Cards ─────────────────────────────────────────── */
.value-card {
  padding: 2.5rem 2rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border-top: 4px solid transparent;
  transition: var(--transition);
}

.value-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
  border-top-color: var(--primary);
}

.value-number {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: .5rem;
  transition: var(--transition);
}

.value-card:hover .value-number { color: var(--accent-light); }
.value-card h3 { margin-bottom: .75rem; }
.value-card p { font-size: .9rem; margin: 0; }

/* ── Team / About grid ───────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-card {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 1.25rem;
}

.process-card h4 { margin-bottom: .5rem; }
.process-card p { font-size: .875rem; margin: 0; }

/* ── Contact Page ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-card {
  padding: 2.5rem 2rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
}

.contact-card h3 { margin-bottom: .75rem; font-size: 1.1rem; }
.contact-card p { font-size: .9rem; margin: 0; }
.contact-card a { color: var(--primary); font-weight: 600; }
.contact-card a:hover { color: var(--accent); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group.full { grid-column: 1 / -1; }

label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-800);
  text-transform: uppercase;
  letter-spacing: .5px;
}

input, select, textarea {
  font-family: var(--font);
  font-size: .95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,117,31,.15);
  background: var(--white);
}

textarea { resize: vertical; min-height: 130px; }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--black) !important;
  background: var(--primary);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  display: none;
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gray-50);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 55ch; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.25rem;
}

.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,.65);
}

.footer-top {
  padding: 5rem 0 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand img {
  height: 45px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: .875rem;
  max-width: 30ch;
  line-height: 1.7;
}

.footer-col h5 {
  color: var(--white);
  font-size: .8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
}

.footer-bottom a { color: var(--accent); }

/* ── CSS Fallback Gradients (when images unavailable) ───── */
.hero-gradient-fallback {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

/* Animated geometric pattern overlay for hero */
.hero-gradient-fallback::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    /* removed */ none;
    none;
    none;
  background-size: 100% 100%, 100% 100%, 100% 100%, 80px 80px, 80px 80px;
  pointer-events: none;
  z-index: 1;
}

.hero-gradient-fallback .hero-overlay { z-index: 2; }
.hero-gradient-fallback .hero-content { z-index: 3; }

.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

/* Geometric dot pattern for all placeholders */
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  /* flat dark - no gradient */
  background-size: 28px 28px;
  pointer-events: none;
}

.img-placeholder .ph-icon {
  font-size: 3.5rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}

.img-placeholder .ph-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  position: relative;
  z-index: 1;
}

.img-ph-blue  { background: var(--black); }
.img-ph-teal  { background: #1A1A1A; }
.img-ph-dark  { background: var(--black); }
.img-ph-navy  { background: #111111; }
.img-ph-cyan  { background: #1E1E1E; }
.img-ph-mixed { background: var(--black); }

/* Sector circular placeholders */
.sector-img-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 3px solid rgba(255,255,255,.15);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sector-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  /* flat dark, no dot pattern */
  background-size: 16px 16px;
}

.sector-img-placeholder .sector-icon {
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}

.sector-card:hover .sector-img-placeholder { border-color: var(--accent); transform: scale(1.05); }

/* Service card image placeholder enhancements */
.svc-ph {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  position: relative;
  overflow: hidden;
}
.svc-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 24px 24px;
}
.svc-ph .svc-icon { font-size: 2.8rem; position: relative; z-index: 1; }
.svc-ph .svc-label { font-size: .65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.45); position: relative; z-index: 1; }

/* Solution card image placeholders */
.sol-ph {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.sol-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.sol-ph .sol-icon { font-size: 4rem; position: relative; z-index: 1; filter: drop-shadow(0 4px 14px rgba(0,0,0,.4)); }
.sol-ph .sol-label { font-size: .7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.4); position: relative; z-index: 1; }

/* ── Scroll Animation ────────────────────────────────────── */
/* All elements are always visible — clean, no JS dependency */
.reveal {
  opacity: 1;
  transform: none;
}


/* ── Utility ─────────────────────────────────────────────── */
/* Disable decorative dot-pattern pseudo-elements */
.svc-ph::before, .sol-ph::before { content: none; background-image: none; }
.bg-gray { background: var(--gray-50); }
.bg-primary { background: var(--primary); }
.bg-black { background: var(--black); }
.accent-text { color: var(--accent); }
.white-text { color: var(--white); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-reverse { direction: ltr; }
  .split-img img { height: 280px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }

  .nav-links,
  .nav-cta .btn { display: none; }

  .nav-cta .hamburger { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    font-size: 1.3rem;
    z-index: 999;
  }

  .services-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .cta-panel { min-width: unset; }
  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  :root { --space-xl: 4rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .sector-img { width: 120px; height: 120px; }
}

/* inline svg icon alignment */
span > svg, a > svg, .feature-dot > svg, .contact-icon > svg { vertical-align: -0.125em; }
.contact-icon > svg { width: 20px; height: 20px; }
