/* ═══════════════════════════════════════════════════════════════════
   WHITE GLOVE DIGITAL SOLUTIONS
   Design System — Navy Trust Palette
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────────── */
:root {
  --navy-950:  #050d1a;
  --navy-900:  #0a1628;
  --navy-800:  #112236;
  --navy-700:  #142d4a;
  --navy-600:  #1a3a5c;
  --blue-600:  #1d6feb;
  --blue-500:  #3b82f6;
  --blue-100:  #dbeafe;
  --blue-50:   #eff6ff;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white:     #ffffff;
  --green:     #059669;
  --green-light: #d1fae5;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 20px 48px rgba(0,0,0,.14);
  --shadow-blue: 0 8px 32px rgba(29,111,235,.25);
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--navy-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font-body); }
ul { list-style: none; }

/* ── UTILITIES ──────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 5%; }
.text-center { text-align: center; }

.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}
.label::before {
  content: '';
  display: inline-block;
  width: 18px; height: 2px;
  background: var(--blue-600);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600; line-height: 1.1;
  color: var(--navy-900);
  letter-spacing: -.02em;
}
.section-title em { font-style: italic; color: var(--blue-600); }
.section-title .light { color: var(--white); }
.section-title em.light { color: #93c5fd; }

.section-sub {
  font-size: 17px; line-height: 1.8;
  color: var(--slate-500);
  max-width: 540px;
  margin-top: 16px;
}
.section-sub.center { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  letter-spacing: .01em;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all .2s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .2s; flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: #1a62d4;
  box-shadow: 0 12px 40px rgba(29,111,235,.35);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy-900);
  border: 1.5px solid var(--slate-300);
}
.btn-secondary:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
  background: var(--blue-50);
}
.btn-ghost-white {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25);
  backdrop-filter: blur(4px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.5);
}
.btn-lg { padding: 17px 40px; font-size: 15px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* ── NAVBAR ─────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 68px;
  transition: background .3s, box-shadow .3s;
}
.navbar.transparent { background: transparent; }
.navbar.solid {
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.navbar.white-nav {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
}
.navbar-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 5%;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-brand {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none;
}
.brand-mark {
  width: 40px; height: 40px;
  background: var(--navy-800);
  border: 1.5px solid var(--blue-600);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--white);
}
.brand-tagline {
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(147,197,253,.7);
}
.navbar.white-nav .brand-name { color: var(--navy-900); }
.navbar.white-nav .brand-tagline { color: var(--blue-600); opacity: .7; }
.navbar.white-nav .brand-mark { background: var(--navy-900); }

.nav-menu {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.7);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  letter-spacing: .01em;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.07);
}
.navbar.white-nav .nav-link { color: var(--slate-500); }
.navbar.white-nav .nav-link:hover,
.navbar.white-nav .nav-link.active { color: var(--navy-900); background: var(--slate-100); }

.nav-cta {
  font-size: 13px; font-weight: 600;
  background: var(--blue-600);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  margin-left: 8px;
  transition: all .2s;
  box-shadow: 0 2px 8px rgba(29,111,235,.3);
}
.nav-cta:hover {
  background: #1a62d4 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(29,111,235,.4);
}
.navbar.white-nav .nav-cta { color: var(--white) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all .3s;
}
.navbar.white-nav .hamburger span { background: var(--navy-900); }
.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); }

.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: var(--navy-950);
  padding: 24px 5% 32px;
  border-top: 1px solid rgba(255,255,255,.06);
  z-index: 899;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  font-size: 16px; padding: 12px 16px;
  display: block;
}

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  background: var(--navy-900);
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 140px 5% 100px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(29,111,235,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,111,235,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-bg-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 90%, rgba(29,111,235,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 20%, rgba(29,111,235,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(29,111,235,.15);
  border: 1px solid rgba(29,111,235,.35);
  border-radius: var(--radius-full);
  padding: 7px 18px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 32px;
  animation: fadeDown .7s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--blue-500);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 600; line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp .8s ease .1s both;
}
.hero h1 em {
  font-style: italic; color: #93c5fd;
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 560px; margin: 0 auto 44px;
  animation: fadeUp .8s ease .2s both;
}

.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .8s ease .3s both;
}

.hero-proof {
  margin-top: 64px;
  display: flex; align-items: center; justify-content: center; gap: 40px;
  flex-wrap: wrap;
  animation: fadeUp .8s ease .4s both;
}
.proof-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
}
.proof-value {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 600;
  color: var(--white); letter-spacing: -.02em;
}
.proof-label {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.proof-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,.1);
}

/* ── TRUST BAR ──────────────────────────────────────────────────── */
.trust-bar {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
  padding: 40px 5%;
}
.trust-bar-label {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--slate-300);
  text-align: center; margin-bottom: 24px;
}
.trust-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.trust-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  color: var(--slate-300);
  letter-spacing: .02em;
  transition: color .2s;
}
.trust-logo:hover { color: var(--slate-500); }
.trust-logo-icon {
  width: 30px; height: 30px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* ── SECTION WRAPPER ────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--navy-900); }
.section-navy { background: var(--navy-800); }
.section-gray { background: var(--slate-50); }
.section-white { background: var(--white); }

/* ── SERVICES ───────────────────────────────────────────────────── */
.services-header {
  max-width: 520px;
  margin-bottom: 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--slate-100);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  transition: background .25s;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue-600);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover { background: var(--slate-50); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.service-icon svg {
  width: 22px; height: 22px;
  stroke: var(--blue-600); fill: none; stroke-width: 1.8;
}
.service-num {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  color: var(--slate-300); letter-spacing: .1em;
  margin-bottom: 10px; display: block;
}
.service-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 14px; line-height: 1.25;
}
.service-desc { font-size: 15px; color: var(--slate-500); line-height: 1.8; }

.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--blue-600);
  margin-top: 20px;
  transition: gap .2s;
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── AI SECTION ─────────────────────────────────────────────────── */
.ai-section {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px;
  align-items: center;
}
.ai-stat-row {
  display: flex; gap: 32px;
  margin: 36px 0;
}
.ai-stat {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px 24px;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  flex: 1;
}
.ai-stat-value {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 600;
  color: var(--white); letter-spacing: -.02em;
}
.ai-stat-value span { color: #93c5fd; }
.ai-stat-label {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.ai-desc { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.85; }

.ai-tools-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.ai-tool-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  transition: background .2s, border-color .2s;
}
.ai-tool-card:hover {
  background: rgba(29,111,235,.08);
  border-color: rgba(29,111,235,.25);
}
.ai-tool-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.ai-tool-name {
  font-size: 13px; font-weight: 600; color: var(--white);
  letter-spacing: .01em;
}
.ai-tool-cat {
  font-size: 11px; color: rgba(255,255,255,.35);
  margin-top: 2px;
}

/* ── COST COMPARISON ────────────────────────────────────────────── */
.cost-section-inner {
  max-width: 1000px; margin: 0 auto;
}
.cost-header { text-align: center; margin-bottom: 56px; }
.cost-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cost-col {
  padding: 44px 36px;
  border-right: 1px solid var(--slate-100);
  background: var(--white);
  position: relative;
}
.cost-col:last-child {
  border-right: none;
  background: var(--navy-900);
}
.cost-col-badge {
  display: inline-block;
  background: var(--blue-600);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.cost-col-name {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--slate-300); margin-bottom: 8px;
}
.cost-col:last-child .cost-col-name { color: rgba(255,255,255,.3); }

.cost-price {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 600;
  color: var(--navy-900); line-height: 1;
  margin-bottom: 4px; letter-spacing: -.02em;
}
.cost-col:last-child .cost-price { color: var(--white); font-size: 30px; }
.cost-price-note {
  font-size: 13px; color: var(--slate-300);
  margin-bottom: 32px;
}
.cost-col:last-child .cost-price-note { color: rgba(255,255,255,.3); }

.cost-list { display: flex; flex-direction: column; gap: 12px; }
.cost-list li {
  font-size: 14px; color: var(--slate-500);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.cost-list li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--slate-100);
  flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
}
.cost-col:last-child .cost-list li { color: rgba(255,255,255,.65); }
.cost-col:last-child .cost-list li::before {
  background: rgba(29,111,235,.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
}
.cost-cta { margin-top: 32px; }

/* ── BONUS ──────────────────────────────────────────────────────── */
.bonus-inner {
  max-width: 840px; margin: 0 auto; text-align: center;
}
.bonus-equation {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
  margin: 48px 0;
  padding: 40px 48px;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
}
.eq-block { text-align: center; }
.eq-value {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 600;
  color: var(--white); letter-spacing: -.02em;
}
.eq-label {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-top: 4px;
}
.eq-op {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 300;
  color: rgba(255,255,255,.2);
}
.eq-block.highlight .eq-value { color: #93c5fd; }
.bonus-note {
  font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.8;
}

/* ── FOUNDER ────────────────────────────────────────────────────── */
.founder-section {
  display: grid; grid-template-columns: 340px 1fr; gap: 80px;
  align-items: center;
}
.founder-photo {
  aspect-ratio: 4/5;
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.founder-photo-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 96px; font-weight: 600;
  color: rgba(255,255,255,.07);
  letter-spacing: -.04em;
}
.founder-photo-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--blue-600);
}
.founder-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 52px); font-weight: 600;
  color: black; letter-spacing: -.02em;
  margin-bottom: 6px;
}
.founder-role {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 28px;
}
.founder-quote-block {
  border-left: 3px solid var(--blue-600);
  padding-left: 22px;
  margin-bottom: 24px;
}
.founder-quote {
  font-family: var(--font-display);
  font-size: 20px; font-style: italic; font-weight: 400;
  color: black; line-height: 1.65;
}
.founder-bio { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.9; }

/* ── CTA BANNER ─────────────────────────────────────────────────── */
.cta-banner {
  background: var(--blue-600);
  padding: 96px 5%;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255,255,255,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 30%, rgba(0,0,0,.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px); font-weight: 600;
  color: var(--white); margin-bottom: 16px;
  line-height: 1.1; letter-spacing: -.02em;
}
.cta-banner-sub {
  font-size: 17px; color: rgba(255,255,255,.75);
  margin-bottom: 40px; line-height: 1.7;
}
.cta-group { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── ABOUT PAGE ─────────────────────────────────────────────────── */
.page-hero {
  background: var(--navy-900);
  padding: 160px 5% 96px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29,111,235,.5), transparent);
}
.page-hero-inner { max-width: 1160px; margin: 0 auto; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 88px); font-weight: 600;
  color: var(--white); line-height: 1.05;
  letter-spacing: -.025em; max-width: 700px;
}
.page-hero-title em { font-style: italic; color: #93c5fd; }

.about-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 96px;
  align-items: start;
}
.about-left { position: sticky; top: 100px; }
.about-stats { display: flex; flex-direction: column; gap: 24px; margin-top: 48px; }
.about-stat {
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-left: 3px solid var(--blue-600);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}
.about-stat-val {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 600;
  color: var(--navy-900); letter-spacing: -.02em; line-height: 1;
}
.about-stat-text {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--slate-300); margin-top: 4px;
}
.about-content p {
  font-size: 16px; color: var(--slate-500); line-height: 1.9; margin-bottom: 20px;
}
.about-content p:first-of-type {
  font-size: 18px; color: var(--navy-900);
  font-weight: 400; line-height: 1.75;
}

.values-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 56px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s;
}
.value-card:hover {
  border-color: var(--blue-100);
  box-shadow: var(--shadow);
}
.value-icon {
  width: 44px; height: 44px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.value-icon svg { width: 20px; height: 20px; stroke: var(--blue-600); fill: none; stroke-width: 1.8; }
.value-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: var(--navy-900); margin-bottom: 8px;
}
.value-desc { font-size: 14px; color: var(--slate-500); line-height: 1.75; }

/* FOUNDER FULL BIO */
.founder-full-grid {
  display: grid; grid-template-columns: 360px 1fr; gap: 80px;
}
.founder-full-photo {
  aspect-ratio: 3/4;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  border: 1px solid var(--slate-100);
}
.founder-full-photo-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 120px; font-weight: 600;
  color: rgba(255,255,255,.07);
}
.founder-full-photo-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--blue-600);
}
.founder-full-name {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 60px); font-weight: 600;
  color: var(--navy-900); letter-spacing: -.025em; line-height: 1.05;
}
.founder-full-role {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-600); margin: 8px 0 28px;
  opacity: .8;
}
.expertise-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.expertise-tag {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--navy-700);
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 400;
  letter-spacing: .06em;
  padding: 5px 14px; border-radius: var(--radius-full);
}
.founder-bio-text p {
  font-size: 15px; color: var(--slate-500); line-height: 1.9; margin-bottom: 18px;
}

/* ── CONTACT PAGE ───────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 96px;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
}
.cd-icon {
  width: 46px; height: 46px;
  background: var(--navy-900);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.cd-icon svg { width: 20px; height: 20px; stroke: var(--blue-500); fill: none; stroke-width: 1.6; }
.cd-label {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--slate-300); margin-bottom: 3px;
}
.cd-value { font-size: 15px; font-weight: 500; color: var(--navy-900); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  color: var(--navy-900); margin-bottom: 8px;
}
.form-title-sub {
  font-size: 14px; color: var(--slate-500); margin-bottom: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--slate-500);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--slate-50);
  border: 1.5px solid var(--slate-100);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px; color: var(--navy-900);
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(29,111,235,.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--slate-300); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-select { appearance: none; cursor: pointer; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  margin-top: 8px;
  transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover {
  background: var(--blue-600);
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}
.form-submit svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* SUCCESS / ERROR states */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 500;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.alert-success { background: var(--green-light); color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 72px 5% 32px;
}
.footer-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-desc {
  font-size: 14px; color: rgba(255,255,255,.35);
  line-height: 1.8; margin-top: 18px; max-width: 280px;
}
.footer-col-heading {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.2); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.85); }
.footer-divider {
  max-width: 1160px; margin: 0 auto;
  border: none; border-top: 1px solid rgba(255,255,255,.05);
  margin-bottom: 28px;
}
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.2); }
.footer-copy a { color: rgba(147,197,253,.6); }

/* ── SCROLL REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── ANIMATIONS ─────────────────────────────────────────────────── */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: none; } }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-left { position: static; }
  .founder-full-grid { grid-template-columns: 1fr; }
  .founder-full-photo { aspect-ratio: 16/9; max-width: 480px; }
  .ai-section { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; }
  .cost-grid { grid-template-columns: 1fr; }
  .cost-col { border-right: none; border-bottom: 1px solid var(--slate-100); }
  .cost-col:last-child { border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .founder-section { grid-template-columns: 1fr; gap: 48px; }
  .founder-photo { aspect-ratio: 16/9; max-width: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 40px; }
  .hero-proof { gap: 20px; }
  .proof-divider { display: none; }
  .bonus-equation { flex-direction: column; gap: 12px; padding: 28px 24px; }
  .eq-op { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 24px; }
  .cta-banner { padding: 72px 5%; }
}
