﻿/* DESIGN SYSTEM */
:root {
  --ink:       #08090d;
  --ink-soft:  #1c1d24;
  --ink-muted: #6b6e7c;
  --ink-faint: #a8aabb;
  --paper:     #ffffff;
  --paper-2:   #f7f7fb;
  --paper-3:   #f0f0f8;
  --border:    rgba(0,0,0,0.07);
  --border-md: rgba(0,0,0,0.12);

  --blue:      #2563eb;
  --violet:    #7c3aed;
  --grad:      linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --grad-soft: linear-gradient(135deg, rgba(37,99,235,.08) 0%, rgba(124,58,237,.08) 100%);
  --grad-glow: linear-gradient(135deg, rgba(37,99,235,.18) 0%, rgba(124,58,237,.14) 100%);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --sh-sm: 0 1px 3px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.04);
  --sh:    0 4px 20px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  --sh-lg: 0 20px 60px rgba(0,0,0,.09), 0 4px 16px rgba(0,0,0,.05);
  --sh-xl: 0 40px 100px rgba(0,0,0,.12), 0 8px 32px rgba(0,0,0,.07);

  --f-display: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --f-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --ease:      cubic-bezier(.25,.46,.45,.94);
  --spring:    cubic-bezier(.34,1.56,.64,1);
  --nav-h:     68px;
}

/*  RESET  */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/*  CUSTOM SCROLLBAR  */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2563eb 0%, #7c3aed 100%);
  border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #1d4ed8 0%, #6d28d9 100%);
}
html {
  scrollbar-width: thin;
  scrollbar-color: #2563eb var(--paper-2);
}

/*  UTILITIES  */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--blue);
  background: rgba(37,99,235,.08); padding: 5px 13px; border-radius: 100px;
  border: 1px solid rgba(37,99,235,.14);
}
.section-eyebrow {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--ink-muted);
  margin-bottom: 14px; display: block;
}
.section-h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -.04em; color: var(--ink);
}
.section-h2 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-sub {
  font-size: 1.05rem; color: var(--ink-muted); line-height: 1.75;
  max-width: 520px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-display); font-size: 14px; font-weight: 700;
  padding: 14px 26px; border-radius: 100px; border: none;
  cursor: pointer; white-space: nowrap; letter-spacing: -.01em;
  transition: all .22s var(--ease);
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 4px 18px rgba(37,99,235,.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,.42); }
.btn-glass {
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border-md); box-shadow: var(--sh-sm);
}
.btn-outline:hover { background: var(--paper-2); transform: translateY(-1px); box-shadow: var(--sh); }
.btn-dark {
  background: var(--ink); color: #fff;
  box-shadow: 0 4px 18px rgba(8,9,13,.25);
}
.btn-dark:hover { background: var(--ink-soft); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(8,9,13,.3); }

/* Gradient text */
.gt { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/*  ANIMATIONS  */
@keyframes fadeUp   { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes scaleIn  { from { opacity:0; transform:scale(.94); } to { opacity:1; transform:scale(1); } }
@keyframes float    { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
@keyframes pulse    { 0%,100% { box-shadow:0 0 0 0 rgba(37,99,235,.4); } 60% { box-shadow:0 0 0 14px rgba(37,99,235,0); } }
@keyframes shimmer  { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes spin     { to { transform: rotate(360deg); } }
@keyframes meshMove { 0%,100% { background-position: 0% 0%; } 50% { background-position: 100% 100%; } }
@keyframes gradShift { 0%,100% { opacity:.7; transform:scale(1); } 50% { opacity:1; transform:scale(1.08); } }

.anim-1 { opacity:0; animation: fadeUp .8s var(--ease) .05s forwards; }
.anim-2 { opacity:0; animation: fadeUp .8s var(--ease) .18s forwards; }
.anim-3 { opacity:0; animation: fadeUp .8s var(--ease) .3s  forwards; }
.anim-4 { opacity:0; animation: fadeUp .8s var(--ease) .42s forwards; }
.anim-5 { opacity:0; animation: fadeUp .8s var(--ease) .55s forwards; }

.reveal {
  opacity:0; transform:translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal.d1 { transition-delay:.06s; }
.reveal.d2 { transition-delay:.12s; }
.reveal.d3 { transition-delay:.18s; }
.reveal.d4 { transition-delay:.24s; }
.reveal.d5 { transition-delay:.30s; }
.reveal.d6 { transition-delay:.38s; }

/*  NAVIGATION  */
nav {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  height: var(--nav-h);
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
nav.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1160px; margin:0 auto; padding: 0 28px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  transition: color .25s;
}
nav .nav-logo { color: #333; }
nav.scrolled .nav-logo { color: var(--ink); }
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  transition: opacity .25s ease, transform .25s ease;
}
.nav-logo-svg { height: 38px; width: auto; display: block; }
.nav-logo-svg text, .nav-logo-svg line, .nav-logo-svg rect:not(:first-child) { fill: currentColor; stroke: currentColor; }
.nav-logo-mark {
  display: none;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-family: var(--f-display); font-size: 13.5px; font-weight: 600;
  color: rgba(255,255,255,.75); padding: 7px 14px; border-radius: 100px;
  transition: color .2s, background .2s;
}
nav.scrolled .nav-links a { color: var(--ink-muted); }
.nav-links a:hover { color: var(--paper); background: rgba(255,255,255,.1); }
nav.scrolled .nav-links a:hover { color: var(--ink); background: var(--paper-2); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-tel {
  font-family: var(--f-display); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.7); transition: color .25s;
}
nav.scrolled .nav-tel { color: var(--ink-muted); }
.nav-tel:hover { color: var(--paper) !important; }
nav.scrolled .nav-tel:hover { color: var(--ink) !important; }
.nav-btn-cta {
  font-family: var(--f-display); font-size: 13px; font-weight: 700;
  padding: 10px 20px; border-radius: 100px;
  background: rgba(255,255,255,.14); color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  cursor: pointer; transition: all .2s;
}
nav.scrolled .nav-btn-cta { background: var(--grad); border-color: transparent; box-shadow: 0 3px 12px rgba(37,99,235,.3); }
.nav-btn-cta:hover { background: rgba(255,255,255,.24); }
nav.scrolled .nav-btn-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.4); }
.mob-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.mob-btn span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: background .25s; }
nav.scrolled .mob-btn span { background: var(--ink); }
.mob-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(8,9,13,.96); backdrop-filter: blur(20px);
  z-index: 999; padding: 100px 28px 40px;
  flex-direction: column; gap: 6px;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-family: var(--f-display); font-size: 24px; font-weight: 700;
  color: rgba(255,255,255,.85); padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.mob-menu a:hover { color: #fff; }
.mob-close {
  position: absolute; top: 20px; right: 28px;
  font-size: 28px; cursor: pointer; color: rgba(255,255,255,.5);
}

/*  HERO  */
.hero {
  min-height: 100vh; padding: calc(var(--nav-h) + 100px) 0 120px;
  position: relative; overflow: hidden;
  background: var(--ink);
  display: flex; align-items: center;
}
.hero-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(37,99,235,.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(124,58,237,.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(14,165,233,.1) 0%, transparent 50%);
  animation: gradShift 8s ease-in-out infinite;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black, transparent);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-left {}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px; padding: 7px 16px 7px 9px;
  font-family: var(--f-display); font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.8); margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge-pulse {
  width: 22px; height: 22px; border-radius: 100px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  animation: pulse 2.5s infinite;
  flex-shrink: 0;
}
.hero-badge-pulse svg { width: 10px; height: 10px; }
.hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 800; line-height: 1.02;
  letter-spacing: -.05em; color: #fff;
  margin-bottom: 24px;
}
.hero-h1 .gt { background: linear-gradient(135deg,#60a5fa 0%,#a78bfa 60%,#f0abfc 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-p {
  font-size: 1.12rem; color: rgba(255,255,255,.6);
  line-height: 1.75; max-width: 480px; margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hstat-val {
  font-family: var(--f-display); font-size: 1.7rem; font-weight: 800;
  letter-spacing: -.04em;
  background: linear-gradient(135deg,#fff 0%,rgba(255,255,255,.7) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hstat-label { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 500; margin-top: 2px; }
.hero-right { animation: float 6s ease-in-out infinite; }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl); padding: 32px;
  backdrop-filter: blur(20px); position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top:0; left:0; right:0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
}
.hero-card-title {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}
.hcard-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.hcard-metric {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r); padding: 16px;
}
.hcard-m-label { font-size: 10px; color: rgba(255,255,255,.4); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.hcard-m-val {
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 800;
  letter-spacing: -.04em;
  background: linear-gradient(135deg,#60a5fa,#a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hcard-m-note { font-size: 10px; color: rgba(255,255,255,.35); margin-top: 3px; }
.hcard-services { display: flex; flex-direction: column; gap: 8px; }
.hcard-svc {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px; padding: 10px 14px;
}
.hcard-svc-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.hcard-svc-name { font-size: 12.5px; color: rgba(255,255,255,.7); font-weight: 500; flex: 1; }
.hcard-svc-check {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: rgba(37,99,235,.3); border: 1px solid rgba(37,99,235,.5);
  display: flex; align-items: center; justify-content: center;
}
.hcard-svc-check svg { width: 10px; height: 10px; }

/*  TRUST STRIP  */
.trust {
  padding: 56px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.trust-lbl { font-family: var(--f-display); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; transition: color .2s ease; }
.trust-lbl:hover { color: var(--blue); }
.trust-divider { width: 1px; height: 40px; background: var(--border-md); flex-shrink: 0; }
.trust-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.tstat-num { font-family: var(--f-display); font-size: 2.1rem; font-weight: 800; letter-spacing: -.05em; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.tstat-lbl { font-size: 12px; color: var(--ink-faint); margin-top: 3px; }
.trust-sectors { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.tsector { font-family: var(--f-display); font-size: 13px; font-weight: 700; color: var(--ink-soft); opacity: .95; transition: color .2s ease, opacity .2s ease; cursor: default; letter-spacing: -.01em; }
.tsector:hover { color: var(--blue); opacity: 1; }

/*  SERVICES  */
.services { padding: 120px 0; background: var(--paper-2); }
.sec-header { text-align: center; margin-bottom: 72px; }
.sec-header .section-sub { margin: 16px auto 0; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  cursor: default;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: var(--grad-soft); opacity: 0; transition: opacity .3s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: rgba(37,99,235,.18); }
.svc-card:hover::before { opacity: 1; }
.svc-card.hero-svc {
  grid-column: span 2;
  background: var(--ink); border-color: transparent;
  color: #fff;
}
.svc-card.hero-svc::before { background: radial-gradient(ellipse at 0% 0%, rgba(37,99,235,.3) 0%, transparent 60%); opacity: 1; }
.svc-card.hero-svc:hover { transform: translateY(-5px); }

.svc-num {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: 20px; position: relative; z-index: 1;
}
.svc-card.hero-svc .svc-num { color: rgba(255,255,255,.3); }
.svc-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; position: relative; z-index: 1;
}
.svc-icon-blue { background: rgba(37,99,235,.1); border: 1px solid rgba(37,99,235,.15); }
.svc-icon-vio  { background: rgba(124,58,237,.08); border: 1px solid rgba(124,58,237,.12); }
.svc-icon-teal { background: rgba(14,165,233,.08); border: 1px solid rgba(14,165,233,.12); }
.svc-icon-green{ background: rgba(34,197,94,.08);  border: 1px solid rgba(34,197,94,.12); }
.svc-icon-amber{ background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.12); }
.svc-icon-white{ background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.15); }
.svc-icon svg { width: 24px; height: 24px; }
.svc-title {
  font-family: var(--f-display); font-size: 1.05rem; font-weight: 700;
  letter-spacing: -.02em; margin-bottom: 10px; position: relative; z-index: 1;
}
.svc-card.hero-svc .svc-title { font-size: 1.5rem; color: #fff; }
.svc-desc { font-size: 13.5px; color: var(--ink-muted); line-height: 1.65; position: relative; z-index: 1; }
.svc-card.hero-svc .svc-desc { color: rgba(255,255,255,.6); font-size: 1rem; max-width: 480px; }
.svc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 18px; position: relative; z-index: 1; }
.svc-tag {
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  border-radius: 100px; border: 1px solid var(--border);
  background: var(--paper-2); color: var(--ink-muted);
}
.svc-card.hero-svc .svc-tag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.12); }
.svc-arrow {
  position: absolute; top: 28px; right: 28px; width: 32px; height: 32px;
  border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateX(-4px);
  transition: all .25s; z-index: 1;
}
.svc-card.hero-svc .svc-arrow { border-color: rgba(255,255,255,.2); opacity: .5; }
.svc-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }

/*  DEDICATED SERVICE SECTIONS  */
.svc-section { padding: 100px 0; }
.svc-section:nth-child(even) { background: var(--paper-2); }
.svc-section:nth-child(odd)  { background: var(--paper); }

.svc-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.svc-row-rev .svc-visual { order: 2; }
.svc-row-rev .svc-copy  { order: 1; }

.svc-copy .section-eyebrow { margin-bottom: 12px; }
.svc-copy .section-h2 { margin-bottom: 12px; }
.svc-tagline {
  font-family: var(--f-display); font-size: .9rem; font-weight: 700;
  color: var(--blue); letter-spacing: .01em; margin-bottom: 18px; display: block;
}
.svc-copy p { font-size: .98rem; color: var(--ink-muted); line-height: 1.8; margin-bottom: 14px; }
.svc-copy .svc-tags { margin-top: 24px; }

.svc-visual-card {
  border-radius: var(--r-xl); padding: 40px;
  position: relative; overflow: hidden; box-shadow: var(--sh-xl);
}
.svc-visual-card::before {
  content: ''; position: absolute; top:0; left:0; right:0; height: 3px;
  background: var(--grad);
}
.svc-card-dark { background: var(--ink); }
.svc-card-light { background: var(--paper); border: 1px solid var(--border); }
.svc-card-blue { background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%); }

.sv-icon-wrap {
  width: 56px; height: 56px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.sv-icon-wrap svg { width: 28px; height: 28px; }
.sv-num {
  font-family: var(--f-display); font-size: 5rem; font-weight: 800;
  letter-spacing: -.07em; line-height: .9; margin-bottom: 24px;
}
.sv-num-light { background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.4)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sv-num-dark  { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.sv-checklist { display: flex; flex-direction: column; gap: 12px; }
.sv-checklist li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 500; line-height: 1.4;
}
.sv-check-icon { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.sv-check-icon svg { width: 10px; height: 10px; }
.sv-light li { color: rgba(255,255,255,.8); }
.sv-light .sv-check-icon { background: rgba(37,99,235,.4); border: 1px solid rgba(96,165,250,.5); }
.sv-dark  li { color: var(--ink-muted); }
.sv-dark  .sv-check-icon { background: rgba(37,99,235,.1); border: 1px solid rgba(37,99,235,.25); }

/*  ABOUT  */
.about { padding: 120px 0; background: var(--ink); position: relative; overflow: hidden; }
.about-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 90% 50%, rgba(37,99,235,.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(124,58,237,.1) 0%, transparent 55%);
}
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.about-copy {}
.about-eyebrow { font-family: var(--f-display); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.about-h2 {
  font-family: var(--f-display); font-size: clamp(2rem,4.5vw,3rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.1; color: #fff; margin-bottom: 24px;
}
.about-h2 em { font-style: normal; background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-copy p { font-size: 1rem; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 20px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.pillar {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r); padding: 20px;
}
.pillar-icon { width: 32px; height: 32px; border-radius: 8px; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; }
.pillar-icon svg { width: 16px; height: 16px; }
.pillar h4 { font-family: var(--f-display); font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: -.01em; margin-bottom: 5px; }
.pillar p { font-size: 12.5px; color: rgba(255,255,255,.4); line-height: 1.6; }

.about-visual { position: relative; }
.orbit-center {
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--grad); margin: 80px auto;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 0 0 28px rgba(37,99,235,.08), 0 0 0 56px rgba(37,99,235,.04);
}
.orbit-center svg { width: 70px; height: 70px; }
.orbit-ring {
  position: absolute; border-radius: 50%;
  border: 1px dashed rgba(37,99,235,.2); pointer-events: none;
}
.or1 { width: 270px; height: 270px; top:50%; left:50%; transform:translate(-50%,-50%); }
.or2 { width: 370px; height: 370px; top:50%; left:50%; transform:translate(-50%,-50%); }
@keyframes orb1 { from { transform:rotate(0deg) translateX(105px) rotate(0deg);   } to { transform:rotate(360deg) translateX(105px) rotate(-360deg); } }
@keyframes orb2 { from { transform:rotate(180deg) translateX(75px) rotate(-180deg); } to { transform:rotate(540deg) translateX(75px) rotate(-540deg); } }
@keyframes orb3 { from { transform:rotate(90deg) translateX(135px) rotate(-90deg);  } to { transform:rotate(450deg) translateX(135px) rotate(-450deg); } }
.orbit-dot {
  position: absolute; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  top:50%; left:50%; margin:-19px 0 0 -19px;
}
.orbit-dot svg { width: 18px; height: 18px; }
.od1 { animation: orb1  9s linear infinite; }
.od2 { animation: orb2 12s linear infinite; }
.od3 { animation: orb3 15s linear infinite reverse; }

/*  WHY US  */
.why { padding: 120px 0; background: var(--paper); }
.why-inner { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
.why-left {}
.why-left .section-eyebrow { margin-bottom: 12px; }
.why-left .section-h2 { margin-bottom: 16px; }
.why-left .section-sub { margin-bottom: 32px; }
.why-badge-stack { display: flex; flex-direction: column; gap: 12px; }
.why-badge {
  display: flex; align-items: center; gap: 14px;
  background: var(--ink); border-radius: var(--r);
  padding: 16px 18px;
  transition: transform .25s var(--ease);
}
.why-badge:hover { transform: translateX(4px); }
.why-badge-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--grad); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.why-badge-icon svg { width: 18px; height: 18px; }
.why-badge-text h4 { font-family: var(--f-display); font-size: .85rem; font-weight: 700; color: #fff; letter-spacing: -.01em; margin-bottom: 2px; }
.why-badge-text p { font-size: 12px; color: rgba(255,255,255,.45); }

.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-feat {
  background: var(--paper-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.why-feat:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: rgba(37,99,235,.15); }
.why-feat.hl { background: var(--grad); border-color: transparent; }
.why-feat-icon {
  width: 42px; height: 42px; border-radius: 10px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
}
.why-feat-icon svg { width: 22px; height: 22px; }
.why-feat-icon-bg { background: var(--grad-soft); border: 1px solid var(--border); }
.why-feat-icon-wh { background: rgba(255,255,255,.2); }
.why-feat h3 { font-family: var(--f-display); font-size: .95rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 7px; }
.why-feat p  { font-size: 13px; color: var(--ink-muted); line-height: 1.65; }
.why-feat.hl h3 { color: #fff; }
.why-feat.hl p  { color: rgba(255,255,255,.65); }

/*  PROCESS  */
.process { padding: 120px 0; background: var(--paper-2); }
.process-header { text-align: center; margin-bottom: 72px; }
.process-track { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.process-track::before {
  content: ''; position: absolute;
  top: 28px; left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 1px; background: linear-gradient(90deg, var(--blue), var(--violet));
  opacity: .25; z-index: 0;
}
.process-step {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  position: relative; text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: rgba(37,99,235,.2); }
.process-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--paper-3); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  transition: all .3s;
}
.process-step:hover .process-num { background: var(--grad); border-color: transparent; }
.process-num span {
  font-family: var(--f-display); font-size: .95rem; font-weight: 800;
  letter-spacing: -.03em; color: var(--ink-muted);
  transition: color .3s;
}
.process-step:hover .process-num span { color: #fff; }
.process-step h3 { font-family: var(--f-display); font-size: 1rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.process-step p  { font-size: 13px; color: var(--ink-muted); line-height: 1.65; }

/*  TESTIMONIALS  */
.testimonials { padding: 120px 0; background: var(--paper); }
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-card {
  background: var(--paper-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.testimonial-card.feat-t {
  background: var(--ink); border-color: transparent;
  grid-row: span 2;
  display: flex; flex-direction: column; justify-content: space-between;
}
.t-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.t-stars span { color: #FBBF24; font-size: 14px; }
.testimonial-card.feat-t .t-stars span { color: #FCD34D; }
.t-quote {
  font-size: 14px; color: var(--ink-muted); line-height: 1.75; flex: 1;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-card.feat-t .t-quote { color: rgba(255,255,255,.6); font-size: 1rem; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 13px; font-weight: 800; color: #fff;
}
.t-name { font-family: var(--f-display); font-size: .85rem; font-weight: 700; letter-spacing: -.01em; }
.t-role { font-size: 12px; color: var(--ink-faint); margin-top: 1px; }
.testimonial-card.feat-t .t-name { color: #fff; }
.testimonial-card.feat-t .t-role { color: rgba(255,255,255,.35); }

/*  PRICING  */
.pricing { padding: 120px 0; background: var(--paper-2); }
.pricing-header { text-align: center; margin-bottom: 72px; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.pricing-card {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 36px;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.pricing-card.dark-card {
  background: var(--ink); border-color: transparent;
}
.pricing-card::before {
  content: ''; position: absolute; top:0; left:0; right:0; height: 3px;
  background: var(--grad);
}
.p-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-display); font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  margin-bottom: 20px;
}
.p-tag-blue { color: #3b82f6; background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.2); }
.p-tag-green { color: #10b981; background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.2); }
.p-tag-amber { color: #f59e0b; background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.2); }

.p-amount {
  font-family: var(--f-display); font-size: 2.6rem; font-weight: 800;
  letter-spacing: -.05em; line-height: 1; margin-bottom: 6px;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.p-amount-white {
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,.7) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.p-subtitle {
  font-family: var(--f-display); font-size: 1rem; font-weight: 700;
  margin-bottom: 10px; letter-spacing: -.02em;
}
.pricing-card.dark-card .p-subtitle { color: rgba(255,255,255,.9); }
.p-desc { font-size: 13.5px; color: var(--ink-muted); line-height: 1.65; margin-bottom: 24px; }
.pricing-card.dark-card .p-desc { color: rgba(255,255,255,.5); }
.p-includes {
  border-top: 1px solid var(--border); padding-top: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.pricing-card.dark-card .p-includes { border-color: rgba(255,255,255,.08); }
.p-include-item { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.pricing-card.dark-card .p-include-item { color: rgba(255,255,255,.65); }
.p-include-item svg { width: 16px; height: 16px; flex-shrink: 0; }

.p-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.p-metric {
  min-width: 0; background: var(--paper-2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 8px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: visible;
}
.p-metric-val { font-family: var(--f-display); font-size: clamp(.95rem, 1.9vw, 1.4rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.1; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; white-space: nowrap; overflow: visible; text-overflow: clip; display: block; }
.p-metric-lbl { font-size: 11px; color: var(--ink-faint); margin-top: 3px; white-space: normal; line-height: 1.3; }

/*  CTA  */
.cta-section { padding: 120px 0; background: var(--ink); position: relative; overflow: hidden; }
.cta-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 65% at 50% 50%, rgba(37,99,235,.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(124,58,237,.12) 0%, transparent 50%);
}
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 740px; margin: 0 auto; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px; padding: 7px 16px 7px 9px;
  font-family: var(--f-display); font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.75); margin-bottom: 28px;
}
.cta-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--grad); animation: pulse 2.5s infinite;
}
.cta-h2 {
  font-family: var(--f-display); font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800; letter-spacing: -.05em; line-height: 1.05; color: #fff;
  margin-bottom: 20px;
}
.cta-h2 em { font-style: normal; background: linear-gradient(135deg, #60a5fa, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-p { font-size: 1.05rem; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 36px; font-weight: 300; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.cta-contact-row {
  display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.07);
}
.cta-contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: rgba(255,255,255,.45);
  transition: color .2s;
}
.cta-contact-item:hover { color: rgba(255,255,255,.75); }
.cta-contact-item svg { width: 16px; height: 16px; }

/*  PARENT COMPANY  */
.parent-company { padding: 100px 0; background: var(--paper); border-top: 1px solid var(--border); }
.parent-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.parent-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--blue);
  background: rgba(37,99,235,.08); padding: 5px 13px; border-radius: 100px;
  border: 1px solid rgba(37,99,235,.14); margin-bottom: 16px;
}
.parent-h2 {
  font-family: var(--f-display); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.12; color: var(--ink);
  margin-bottom: 16px;
}
.parent-h2 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.parent-copy p { font-size: .98rem; color: var(--ink-muted); line-height: 1.8; margin-bottom: 14px; }
.parent-services { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.parent-svc {
  display: flex; align-items: center; gap: 10px;
  background: var(--paper-2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 16px;
  transition: transform .25s, box-shadow .25s;
}
.parent-svc:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.parent-svc-icon {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  background: var(--grad-soft); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.parent-svc-icon svg { width: 16px; height: 16px; }
.parent-svc span { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.parent-visual {
  background: var(--ink); border-radius: var(--r-xl); padding: 44px;
  position: relative; overflow: hidden; box-shadow: var(--sh-xl);
}
.parent-visual::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 70% 30%, rgba(37,99,235,.2) 0%, transparent 60%);
}
.parent-visual-tag {
  font-family: var(--f-display); font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3);
  margin-bottom: 20px; position: relative;
}
.parent-visual h3 {
  font-family: var(--f-display); font-size: 1.6rem; font-weight: 800;
  letter-spacing: -.03em; color: #fff; margin-bottom: 8px; position: relative;
}
.parent-visual .pv-tagline {
  font-size: 1rem; color: rgba(255,255,255,.5); margin-bottom: 28px; position: relative;
}
.parent-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; position: relative; }
.parent-stat {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r); padding: 18px;
}
.parent-stat-val {
  font-family: var(--f-display); font-size: 1.2rem; font-weight: 800;
  letter-spacing: -.03em; margin-bottom: 3px;
  background: linear-gradient(135deg,#60a5fa,#a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.parent-stat-lbl { font-size: 11px; color: rgba(255,255,255,.4); }
.parent-visual-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-display); font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.6); margin-top: 24px; position: relative;
  transition: color .2s;
}
.parent-visual-link:hover { color: #fff; }
.parent-visual-link svg { width: 14px; height: 14px; }

/*  FOOTER  */
footer { background: var(--ink-soft); border-top: 1px solid rgba(255,255,255,.05); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { color: #fff !important; margin-bottom: 16px; }
.footer-brand .nav-logo-img { height: 44px; }
.footer-brand .nav-logo-svg { height: 36px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.3); line-height: 1.7; max-width: 240px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.fsocial {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.35); transition: all .2s;
}
.fsocial:hover { background: rgba(255,255,255,.07); color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.2); }
.fsocial svg { width: 16px; height: 16px; }
.footer-col h4 { font-family: var(--f-display); font-size: 12px; font-weight: 700; letter-spacing: .02em; color: rgba(255,255,255,.4); text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col ul li a:hover { color: rgba(255,255,255,.85); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06); flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.2); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,.2); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.55); }

/*  RESPONSIVE  */
@media (max-width: 1024px) {
  .hero-inner       { grid-template-columns: 1fr; }
  .hero-right       { display: none; }
  .nav-tel          { display: none; }
  .hero-h1          { font-size: clamp(2.8rem, 8vw, 4rem); }
  .svc-grid         { grid-template-columns: 1fr 1fr; }
  .svc-card.hero-svc{ grid-column: span 2; }
  .svc-row, .svc-row-rev { grid-template-columns: 1fr; gap: 40px; }
  .svc-row-rev .svc-visual, .svc-row-rev .svc-copy { order: 0; }
  .about-inner      { grid-template-columns: 1fr; gap: 40px; }
  .about-visual     { display: none; }
  .why-inner        { grid-template-columns: 1fr; gap: 40px; }
  .process-track    { grid-template-columns: 1fr 1fr; }
  .process-track::before { display: none; }
  .testimonials-grid{ grid-template-columns: 1fr 1fr; }
  .testimonial-card.feat-t { grid-row: auto; }
  .pricing-grid     { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .parent-inner     { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .mob-btn { display: flex; }
  .hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 80px; }
  .hcard-metrics { grid-template-columns: 1fr 1fr; }
  .trust-inner { flex-direction: column; align-items: flex-start; }
  .trust-divider { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card.hero-svc { grid-column: 1; }
  .services { padding: 80px 0; }
  .svc-section { padding: 64px 0; }
  .about { padding: 80px 0; }
  .why { padding: 80px 0; }
  .why-features { grid-template-columns: 1fr; }
  .process { padding: 80px 0; }
  .process-track { grid-template-columns: 1fr; }
  .testimonials { padding: 80px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing { padding: 80px 0; }
  .pricing-card { padding: 24px; }
  .p-amount { font-size: 2rem; }
  .p-metrics { gap: 8px; }
  .p-metric { padding: 12px 8px; min-width: 0; }
  .p-metric-val { font-size: 1.1rem; }
  .cta-section { padding: 80px 0; }
  .parent-company { padding: 64px 0; }
  .parent-services { grid-template-columns: 1fr; }
  .parent-visual { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-pillars { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .svc-visual-card { padding: 28px; }
  .sv-num { font-size: 3.5rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero-p { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; text-align: center; }
  .hero-stats { gap: 16px; }
  .hstat-val { font-size: 1.4rem; }
  .section-h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .pricing-card { padding: 20px; }
  .p-amount { font-size: 1.8rem; }
  .p-subtitle { font-size: .9rem; }
  .p-desc { font-size: 12.5px; }
  .p-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .p-metric { padding: 10px 4px; }
  .p-metric-val { font-size: .9rem; }
  .p-metric-lbl { font-size: 9px; }
  .svc-visual-card { padding: 20px; }
  .sv-num { font-size: 2.5rem; }
  .cta-h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; text-align: center; }
  .cta-contact-row { flex-direction: column; align-items: center; gap: 12px; }
  .trust-stats { gap: 16px; }
  .tstat-num { font-size: 1.6rem; }
  .trust-sectors { gap: 14px; }
  .why-badge { padding: 12px 14px; }
  .process-step { padding: 20px; }
  .testimonial-card { padding: 20px; }
  .mob-menu { padding: 80px 20px 30px; }
  .mob-menu a { font-size: 20px; padding: 12px 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-logo-img { height: 30px; }
  .nav-logo-svg { height: 30px; }
  .parent-stat-grid { grid-template-columns: 1fr; }
}
