/* ============================================================
   EXTEZ — Corporate Stylesheet (Revised)
   Fonts   : Instrument Serif (headings) + Plus Jakarta Sans (body)
   Palette : Deep navy · Slate · Corporate teal accent
   ============================================================ */

:root {
  --teal:        #0C8C72;
  --teal-lt:     #0dab8b;
  --teal-dark:   #096b57;
  --teal-muted:  rgba(12,140,114,0.12);
  --teal-border: rgba(12,140,114,0.22);
  --dark:        #080F1E;
  --dark2:       #0c1525;
  --dark3:       #060c18;
  --panel:       rgba(255,255,255,0.028);
  --panel-hover: rgba(255,255,255,0.048);
  --white:       #F4F6F9;
  --offwhite:    #e8ecf1;
  --gray:        #7A8FA8;
  --gray-lt:     #A8B8CC;
  --muted:       #4a5d72;
  --border:      rgba(255,255,255,0.07);
  --border-teal: rgba(12,140,114,0.25);
  --overlay-nav: rgba(8,15,30,0.94);
  --font-head:   'Syne', 'Arial Black', sans-serif;
  --font-body:   'Outfit', 'DM Sans', sans-serif;
  --section-pad: 100px 7vw;
  --nav-pad:     0 7vw;
  --radius-card: 6px;
  --radius-btn:  3px;
  --radius-tag:  2px;
  --shadow-btn:  0 2px 12px rgba(12,140,114,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: stretch;
  background: rgba(6, 10, 20, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 1px 0 rgba(12,140,114,0.15);
}

/* Left brand zone */
.nav-brand-zone {
  display: flex;
  align-items: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  position: relative;
}
.nav-brand-zone::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--teal);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo span { color: var(--teal); }
/* Logo image sizing */
.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 4px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}


/* Nav region label */
.nav-region {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,0.08);
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nav-region strong {
  color: rgba(255,255,255,0.4);
  font-size: 8px;
  letter-spacing: .1em;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1px;
}

/* Center link zone */
.nav-links-zone {
  display: flex;
  align-items: stretch;
  flex: 1;
  padding: 0 8px;
}

.nav-links {
  display: flex;
  align-items: stretch;
  gap: 0;
  list-style: none;
  height: 100%;
}
.nav-links li {
  position: relative;
  display: flex;
  align-items: stretch;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 18px; right: 18px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--white);
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
  transform: scaleX(1);
}

/* Services chevron */
.nav-links > li > a.has-dropdown .drop-chevron {
  display: inline-block;
  margin-left: 6px;
  font-size: 9px;
  opacity: .5;
  transition: transform .2s;
}
.nav-links li:hover > a .drop-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* MEGA DROPDOWN */
.nav-dropdown {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: rgba(6, 10, 20, 0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-top: 1px solid rgba(12,140,114,0.2);
  padding: 32px 7vw;
  z-index: 200;
  list-style: none;
  animation: dropDown .15s ease;
}
@keyframes dropDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-links li:hover .nav-dropdown { display: block; }

.nav-dropdown-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: 900px;
}
.nav-dropdown li a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 4px;
  transition: background .15s;
  border: 1px solid transparent;
}
.nav-dropdown li a:hover {
  background: rgba(12,140,114,0.08);
  border-color: rgba(12,140,114,0.15);
}
.drop-num {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: rgba(12,140,114,0.25);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -.02em;
  margin-top: 1px;
}
.drop-text { display: flex; flex-direction: column; gap: 2px; }
.drop-name {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: .01em;
  line-height: 1.2;
}
.drop-sub {
  font-size: 11px;
  color: var(--gray);
  font-weight: 400;
  letter-spacing: .02em;
}
.nav-dropdown li a:hover .drop-name { color: var(--white); }
.nav-dropdown li a:hover .drop-num  { color: rgba(12,140,114,0.6); }

/* Right action zone */
.nav-action-zone {
  display: flex;
  align-items: center;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.nav-status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  font-size: 10px;
  color: var(--gray);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  border-right: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}
.nav-status-dot {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-green 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%      { box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 0 28px;
  background: var(--teal);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--teal-lt); }
.nav-cta-arrow {
  font-size: 14px;
  transition: transform .2s;
}
.nav-cta:hover .nav-cta-arrow { transform: translateX(3px); }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; margin: 0 16px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s, opacity .3s; }

/* HERO */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 7vw 90px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  right: 6vw; top: 42%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(12,140,114,0.1) 0%, transparent 68%);
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--border) 30%, var(--border) 70%, transparent);
}
@keyframes pulse { 0%,100%{ opacity:.6 } 50%{ opacity:1 } }
.breadcrumb { font-size: 11px; color: var(--gray); margin-bottom: 20px; letter-spacing: .07em; text-transform: uppercase; font-weight: 600; }
.breadcrumb a { color: var(--teal); }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-muted);
  border: 1px solid var(--teal-border);
  padding: 5px 16px;
  border-radius: var(--radius-tag);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-tag::before { content: ''; width: 5px; height: 5px; background: var(--teal); border-radius: 50%; animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100%{ opacity:1 } 50%{ opacity:.2 } }
h1 { font-family: var(--font-head); font-size: clamp(36px, 5vw, 70px); font-weight: 800; line-height: 1.05; letter-spacing: -.03em; max-width: 700px; }
h1 .accent { color: var(--teal); font-style: italic; }
.hero-sub { font-size: 16.5px; color: var(--gray); max-width: 510px; margin-top: 22px; font-weight: 400; line-height: 1.85; }
.hero-btns { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary { background: var(--teal); color: var(--white); padding: 13px 32px; border-radius: var(--radius-btn); font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; transition: background .2s, box-shadow .2s, transform .15s; display: inline-block; }
.btn-primary:hover { background: var(--teal-lt); box-shadow: var(--shadow-btn); transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--border-teal); color: var(--gray-lt); padding: 13px 32px; border-radius: var(--radius-btn); font-size: 12px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; transition: border-color .2s, color .2s; display: inline-block; }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* SECTIONS */
section { padding: var(--section-pad); position: relative; }
.alt-bg { background: var(--dark2); }
.section-label { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); font-weight: 700; margin-bottom: 14px; font-family: var(--font-body); }
h2 { font-family: var(--font-head); font-size: clamp(26px, 3.5vw, 44px); font-weight: 700; line-height: 1.08; letter-spacing: -.03em; }
h2 .accent { color: var(--teal); font-style: italic; }
h3 { font-family: var(--font-head); font-size: clamp(16px, 1.8vw, 20px); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
.section-sub { font-size: 15px; color: var(--gray); max-width: 520px; margin-top: 14px; font-weight: 400; line-height: 1.85; }

/* CARDS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 50px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 50px; }
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: border-color .25s, background .25s, transform .25s;
  position: relative;
}
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--teal); opacity: 0; border-radius: var(--radius-card) var(--radius-card) 0 0; transition: opacity .25s; }
.card:hover { border-color: var(--border-teal); background: var(--panel-hover); transform: translateY(-3px); }
.card:hover::before { opacity: 1; }
.card-icon { font-size: 20px; margin-bottom: 16px; }
.card h3 { font-size: 16px; margin-bottom: 10px; font-family: var(--font-head); font-weight: 700; letter-spacing: -.02em; }
.card p { font-size: 14px; color: var(--gray); line-height: 1.75; }

/* TAGS */
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.tag { font-size: 10px; padding: 3px 10px; background: var(--teal-muted); border: 1px solid var(--teal-border); border-radius: var(--radius-tag); color: var(--teal); letter-spacing: .07em; font-weight: 700; text-transform: uppercase; }

/* FEATURE ROW */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 70px; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-text p { font-size: 15px; color: var(--gray-lt); line-height: 1.85; margin-bottom: 16px; }
.feature-text p strong { color: var(--white); font-weight: 500; }
.feature-visual { background: var(--teal-muted); border: 1px solid var(--teal-border); border-radius: var(--radius-card); padding: 48px 36px; }

/* STATS STRIP */
.stats-strip { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; margin-top: 56px; flex-wrap: wrap; }
.stat { flex: 1; min-width: 130px; padding: 32px 28px; border-right: 1px solid var(--border); text-align: center; position: relative; }
.stat:last-child { border-right: none; }
.stat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--teal), transparent); opacity: .4; }
.stat-num { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -.02em; }
.stat-label { font-size: 10px; color: var(--gray); margin-top: 6px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; margin-top: 56px; }
.step { padding: 36px 28px; border-right: 1px solid var(--border); transition: background .2s; }
.step:last-child { border-right: none; }
.step:hover { background: rgba(12,140,114,0.04); }
.step-num { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: rgba(12,140,114,0.12); line-height: 1; margin-bottom: 16px; letter-spacing: -.03em; }
.step h4 { font-family: var(--font-body); font-size: 11px; font-weight: 700; margin-bottom: 8px; letter-spacing: .09em; text-transform: uppercase; color: var(--white); }
.step p { font-size: 13.5px; color: var(--gray); line-height: 1.75; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, rgba(12,140,114,0.1) 0%, transparent 60%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; padding: 90px 7vw; }
.cta-band h2 { max-width: 580px; margin: 0 auto 16px; }
.cta-band p { color: var(--gray); max-width: 460px; margin: 0 auto 36px; font-size: 15px; }
.cta-band .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* SERVICE LINKS */
.service-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 44px; }
.svc-link { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 22px 20px; transition: border-color .2s, background .2s; position: relative; overflow: hidden; }
.svc-link::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--teal); transform: scaleX(0); transition: transform .25s; }
.svc-link:hover { border-color: var(--border-teal); background: var(--panel-hover); }
.svc-link:hover::before { transform: scaleX(1); }
.svc-link-num { font-size: 10px; color: var(--teal); font-weight: 700; letter-spacing: .1em; margin-bottom: 8px; text-transform: uppercase; }
.svc-link-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--white); line-height: 1.3; letter-spacing: -.01em; }

/* FOOTER */
footer { background: var(--dark3); border-top: 1px solid var(--border); padding: 64px 7vw 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 52px; }
.footer-logo { font-family: var(--font-head); font-size: 18px; font-weight: 800; letter-spacing: .06em; color: var(--white); display: block; margin-bottom: 14px; }
.footer-logo span { color: var(--teal); }
.footer-brand p { font-size: 13.5px; color: var(--gray); line-height: 1.85; max-width: 280px; }
.footer-col h5 { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13.5px; color: var(--gray); transition: color .2s; }
.footer-col ul a:hover { color: var(--teal); }
.nasscom-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--teal); border: 1px solid var(--teal-border); padding: 5px 12px; border-radius: var(--radius-tag); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); letter-spacing: .03em; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--teal); }
.footer-bottom-links { display: flex; gap: 24px; }

/* INDEX — STATS BAR */
.stats-bar { display: flex; gap: 52px; margin-top: 60px; flex-wrap: wrap; padding-top: 40px; border-top: 1px solid var(--border); }
.stats-bar .stat { text-align: left; padding: 0; border: none; flex: unset; min-width: unset; }
.stats-bar .stat::before { display: none; }
.stats-bar .stat-num { font-family: var(--font-head); font-size: 34px; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -.02em; }
.stats-bar .stat-label { font-size: 10px; color: var(--gray); margin-top: 5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }

/* INDEX — ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 56px; }
.about-text p { font-size: 15.5px; color: var(--gray-lt); line-height: 1.9; margin-bottom: 18px; }
.about-text p strong { color: var(--white); font-weight: 600; }
.about-text p em { color: var(--teal); font-style: italic; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pillar { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 26px 22px; transition: border-color .2s; }
.pillar:hover { border-color: var(--border-teal); }
.pillar-icon { font-size: 18px; margin-bottom: 12px; }
.pillar h4 { font-family: var(--font-body); font-size: 11px; font-weight: 700; margin-bottom: 8px; letter-spacing: .09em; text-transform: uppercase; color: var(--white); }
.pillar p { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* INDEX — SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 56px; }
.service-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 32px 28px; transition: border-color .25s, background .25s, transform .25s; display: block; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--teal), transparent); opacity: 0; transition: opacity .25s; }
.service-card:hover { border-color: var(--border-teal); background: var(--panel-hover); transform: translateY(-3px); }
.service-card:hover::before { opacity: 1; }
.service-num { font-size: 10px; letter-spacing: .12em; color: var(--teal); font-weight: 700; margin-bottom: 14px; text-transform: uppercase; font-family: var(--font-body); }
.service-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 12px; color: var(--white); line-height: 1.2; letter-spacing: -.02em; }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.75; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }

/* INDEX — APPROACH */
.approach { background: var(--dark2); }

/* INDEX — WHY */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 56px; }
.why-card { display: flex; gap: 22px; align-items: flex-start; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 30px 26px; transition: border-color .2s; }
.why-card:hover { border-color: var(--border-teal); }
.why-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.why-card h4 { font-family: var(--font-body); font-size: 11px; font-weight: 700; margin-bottom: 8px; letter-spacing: .08em; text-transform: uppercase; color: var(--white); }
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.75; }

/* INDEX — REGIONS */
.regions { background: var(--dark2); }
.regions-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.region-chip { display: flex; align-items: center; gap: 10px; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-tag); padding: 10px 22px; font-size: 13.5px; font-weight: 500; transition: border-color .2s, background .2s; }
.region-chip:hover { border-color: var(--border-teal); background: var(--teal-muted); }

/* INDEX — CTA SECTION */
.cta-section { background: linear-gradient(135deg, rgba(12,140,114,0.08) 0%, transparent 60%); border-top: 1px solid var(--border); text-align: center; padding: 100px 7vw; }
.cta-section h2 { max-width: 580px; margin: 0 auto 16px; }
.cta-section > p { color: var(--gray); max-width: 500px; margin: 0 auto 36px; font-size: 15px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .service-links { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  :root { --section-pad: 80px 6vw; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  :root { --section-pad: 64px 5vw; }
  .nav-links-zone { display: none; }
  .nav-hamburger  { display: flex; }
  .nav-status     { display: none; }
  .nav-brand-zone { padding: 0 20px; }
  .nav-region     { display: none; }
  .nav-links-zone.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(6,10,20,0.99);
    padding: 12px 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 2px;
    z-index: 99;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .nav-links { flex-direction: column; height: auto; padding: 0; }
  .nav-links > li > a { padding: 12px 8px; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links > li > a::after { display: none; }
  .nav-dropdown { position: static; display: none; backdrop-filter: none; border: none; border-top: none; padding: 4px 0 0 12px; animation: none; }
  .nav-dropdown-inner { grid-template-columns: 1fr 1fr; gap: 2px; }
  .nav-links li.mob-open .nav-dropdown { display: block; }
  .drop-chevron { display: inline-block; }
  h1 { font-size: clamp(34px, 9vw, 50px); }
  .hero { padding: 110px 5vw 64px; }
  .hero-glow, .hero::after { display: none; }
  .grid-3, .grid-2, .service-links, .services-grid, .about-pillars { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .stats-strip { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .feature-row.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-band .cta-btns { flex-direction: column; align-items: center; }
  .stats-bar { gap: 32px; }
}
