/* ───────────────────────────────────────────────────────
   ScholarServe — styles.css
   Simple, modern, tech-forward. Dual audience: teens + parents.
   Color palette:
     Navy   #0b1437  — trust, depth, education
     Indigo #4361ee  — technology, primary action
     Teal   #0cbbab  — growth, opportunity, California
     Gold   #f6b93b  — warmth, achievement, CA sun
     Slate  #64748b  — secondary text
──────────────────────────────────────────────────────── */

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #fff;
  color: #0b1437;
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea, button { font-family: inherit; }

/* ── Design tokens ──────────────────────────────────── */
:root {
  --navy:        #0b1437;
  --navy-80:     rgba(11,20,55,.8);
  --indigo:      #4361ee;
  --indigo-dark: #3451d1;
  --indigo-10:   rgba(67,97,238,.08);
  --teal:        #0cbbab;
  --teal-10:     rgba(12,187,171,.10);
  --gold:        #f6b93b;
  --gold-10:     rgba(246,185,59,.12);
  --slate:       #64748b;
  --slate-light: #94a3b8;
  --border:      #e2e8f0;
  --surface:     #f8fafc;
  --white:       #ffffff;

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 4px rgba(11,20,55,.06);
  --shadow:      0 4px 20px rgba(11,20,55,.09);
  --shadow-lg:   0 12px 48px rgba(11,20,55,.13);
  --transition:  .22s cubic-bezier(.4,0,.2,1);
}

/* ── Utilities ──────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.mt-8       { margin-top: 8px; }
.full-w     { width: 100%; justify-content: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-10);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-label.light {
  color: var(--teal);
  background: rgba(12,187,171,.15);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-header p { color: var(--slate); margin-top: 14px; font-size: 1.05rem; }

.gradient-text {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--indigo);
  color: var(--white);
  border-color: var(--indigo);
  box-shadow: 0 2px 12px rgba(67,97,238,.30);
}
.btn-primary:hover {
  background: var(--indigo-dark);
  border-color: var(--indigo-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(67,97,238,.38);
}

.btn-ghost {
  background: rgba(255,255,255,.07);
  color: var(--white);
  border-color: rgba(255,255,255,.22);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.4);
}

.btn-outline {
  background: transparent;
  color: var(--indigo);
  border-color: var(--indigo);
}
.btn-outline:hover {
  background: var(--indigo);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-nav {
  background: var(--indigo);
  color: var(--white);
  border-color: var(--indigo);
  padding: 9px 18px;
  font-size: .85rem;
  box-shadow: 0 2px 10px rgba(67,97,238,.25);
}
.btn-nav:hover { background: var(--indigo-dark); border-color: var(--indigo-dark); }

.btn-white {
  background: var(--white);
  color: var(--indigo);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.play-icon {
  font-size: .65rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Chips */
.coming-chip {
  display: inline-flex;
  align-items: center;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--gold-10);
  color: #b45309;
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 4px;
}
.coming-chip.sm { font-size: .55rem; padding: 1px 5px; }

/* ── Scroll-reveal ──────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-delay="100"]  { transition-delay: .10s; }
[data-delay="150"]  { transition-delay: .15s; }
[data-delay="200"]  { transition-delay: .20s; }


/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background var(--transition), box-shadow var(--transition);
}
#site-header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.nav {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  display: block;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  transition: color var(--transition);
}
.logo-text em { font-style: normal; color: var(--teal); }

/* Once user scrolls past hero, nav background turns white — switch logo to dark */
#site-header.scrolled .logo-text { color: var(--navy); }
#site-header.scrolled .logo-text em { color: var(--indigo); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
#site-header.scrolled .nav-links a { color: var(--slate); }
#site-header.scrolled .nav-links a:hover { color: var(--indigo); }

.nav-blog { display: flex; align-items: center; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 16px; }
.hamburger span:nth-child(3) { width: 22px; }
#site-header.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  padding: 10px 0;
  border-bottom: 1px solid var(--surface);
  display: flex;
  align-items: center;
  gap: 6px;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--indigo); }


/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 70px;
  overflow: hidden;
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(67,97,238,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67,97,238,.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(67,97,238,.20) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(12,187,171,.15) 0%, transparent 70%);
  bottom: 0; left: -100px;
}

/* Hero inner */
.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 100px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-content .hero-sub { margin-left: auto; margin-right: auto; }
.hero-content .hero-actions { justify-content: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.hero-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -.03em;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }

.hero-note {
  font-size: .78rem;
  color: rgba(255,255,255,.38);
  letter-spacing: .02em;
}

/* Hero visual — terminal card */
.hero-visual { position: relative; z-index: 1; }

.terminal-card {
  background: #111827;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(67,97,238,.2);
  overflow: hidden;
  max-width: 460px;
  margin: 0 auto;
}

.terminal-bar {
  background: #1f2937;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.t-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.t-dot.red    { background: #ef4444; }
.t-dot.yellow { background: #f59e0b; }
.t-dot.green  { background: #10b981; }
.t-label {
  margin-left: 8px;
  font-size: .74rem;
  color: rgba(255,255,255,.3);
  font-family: 'Space Mono', monospace, sans-serif;
  letter-spacing: .04em;
}

.terminal-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.t-line {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: .82rem;
  line-height: 1.4;
}
.t-prompt { color: var(--teal); margin-right: 10px; flex-shrink: 0; }
.t-key    { color: var(--indigo); margin-right: 2px; }
.t-colon  { color: rgba(255,255,255,.25); margin-right: 10px; }
.t-val    { color: #e2e8f0; }
.t-status {
  color: var(--teal);
  background: rgba(12,187,171,.12);
  padding: 1px 8px;
  border-radius: 4px;
  font-size: .76rem;
}
.t-cursor {
  color: var(--teal);
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.t-blink { animation: none; }

.platform-badge {
  margin: 0 24px 20px;
  background: rgba(246,185,59,.08);
  border: 1px dashed rgba(246,185,59,.3);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .78rem;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.3);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(1); opacity: .5; }
  50% { transform: scaleY(.6); opacity: 1; }
}


/* ═══════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: .02em;
}
.trust-item svg { color: var(--indigo); flex-shrink: 0; }
.trust-sep { color: var(--border); font-size: 1.2rem; }


/* ═══════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.about-text p {
  color: var(--slate);
  margin-bottom: 16px;
  font-size: .97rem;
}

.about-quote {
  margin-top: 32px;
  padding: 20px 24px;
  border-left: 3px solid var(--indigo);
  background: var(--indigo-10);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about-quote blockquote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--indigo);
  line-height: 1.5;
  margin-bottom: 6px;
}
.about-quote cite {
  font-size: .8rem;
  color: var(--slate-light);
  font-style: normal;
}

/* Pillars */
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all var(--transition);
}
.pillar-card:hover {
  border-color: var(--indigo);
  box-shadow: 0 0 0 1px var(--indigo), var(--shadow);
  transform: translateY(-2px);
}
.pillar-icon {
  width: 44px; height: 44px;
  background: var(--indigo-10);
  color: var(--indigo);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.pillar-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.pillar-card p {
  font-size: .85rem;
  color: var(--slate);
  line-height: 1.55;
}


/* ═══════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════ */
.services { background: var(--surface); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 840px;
  margin: 0 auto;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all var(--transition);
  position: relative;
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.svc-active { border-color: var(--indigo); box-shadow: 0 0 0 1px var(--indigo), var(--shadow); }

.svc-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 20px;
  width: fit-content;
}
.svc-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
}
.svc-status.active {
  background: rgba(16,185,129,.1);
  color: #065f46;
}
.svc-status.active::before { background: #10b981; animation: pulse 2s ease-in-out infinite; }
.svc-status.future {
  background: var(--gold-10);
  color: #92400e;
}
.svc-status.future::before { background: var(--gold); }

.svc-icon {
  width: 52px; height: 52px;
  background: var(--indigo-10);
  color: var(--indigo);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.svc-future .svc-icon { background: var(--gold-10); color: #b45309; }

.svc-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.svc-card > p {
  font-size: .9rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 20px;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}
.svc-list li {
  font-size: .85rem;
  color: var(--slate);
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}
.svc-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: .8rem;
}

/* Horizon (coming soon) */
.svc-horizon {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 28px;
}
.horizon-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-light);
  display: block;
  margin-bottom: 10px;
}
.horizon-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.horizon-list li {
  font-size: .83rem;
  color: var(--slate);
  padding-left: 14px;
  position: relative;
}
.horizon-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Platform chips */
.platform-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.preview-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--slate);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 6px;
}
.preview-chip.muted { opacity: .6; }
.chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.preview-chip.muted .chip-dot { background: var(--slate-light); }

.svc-cta { margin-top: auto; }


/* ═══════════════════════════════════════════════════════
   WHY SCHOLARSERVE
═══════════════════════════════════════════════════════ */
.why {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.why-bg { position: absolute; inset: 0; pointer-events: none; }
.glow-why {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(67,97,238,.18) 0%, transparent 70%);
  top: -200px; right: -150px;
}

.why-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 20px;
  letter-spacing: -.025em;
}
.why-text p {
  color: rgba(255,255,255,.6);
  font-size: .97rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.why-text .btn-white { margin-top: 12px; }

/* Stats */
.why-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}
.why-stat:hover {
  background: rgba(67,97,238,.12);
  border-color: rgba(67,97,238,.3);
}
.why-stat strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -.03em;
  margin-bottom: 6px;
}
.why-stat span {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.contact-info > p {
  color: var(--slate);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-channels { display: flex; flex-direction: column; gap: 14px; }

.channel, .channel.static {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}
a.channel:hover {
  border-color: var(--indigo);
  background: var(--indigo-10);
  transform: translateX(3px);
}
.channel.static { cursor: default; background: var(--surface); }

.channel-icon {
  width: 40px; height: 40px;
  background: var(--indigo-10);
  color: var(--indigo);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.channel-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 2px;
}
.channel-value {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
}

/* Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .02em;
}

.field input,
.field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: .92rem;
  color: var(--navy);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus,
.field textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(67,97,238,.1);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--slate-light); }
.field textarea { resize: vertical; min-height: 110px; }

/* Custom select */
.select-wrap { position: relative; }
.select-wrap select {
  width: 100%;
  appearance: none;
  padding: 11px 40px 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: .92rem;
  color: var(--navy);
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.select-wrap select:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(67,97,238,.1);
}
.select-chevron {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--slate-light);
}

/* Submit button states */
.btn-sending { display: none; }
.contact-form.submitting .btn-text    { display: none; }
.contact-form.submitting .btn-sending { display: inline; }
.contact-form.submitting button       { opacity: .75; pointer-events: none; }

/* Success message */
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.25);
  color: #065f46;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .88rem;
  font-weight: 500;
}
.form-success svg { color: #10b981; flex-shrink: 0; }
.form-success.visible { display: flex; }


/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.55);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand .logo { display: inline-flex; margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text em { color: var(--teal); }
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.social-row { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}
.social-link:hover { background: var(--indigo); border-color: var(--indigo); color: var(--white); }

.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-location {
  font-size: .85rem;
  color: rgba(255,255,255,.35);
}

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.28); }
.footer-tagline { font-style: italic; color: rgba(255,255,255,.2); }


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .why-stats     { flex-direction: row; flex-wrap: wrap; }
  .why-stat      { flex: 1; min-width: 180px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Nav */
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  #site-header { position: relative; background: var(--navy); }
  #site-header.scrolled { position: sticky; top: 0; }

  /* Hero */
  .hero { min-height: auto; padding-bottom: 60px; }
  .hero-inner { padding-top: 48px; padding-bottom: 64px; }
  .terminal-card { max-width: 100%; }
  .hero-scroll-hint { display: none; }

  /* About */
  .about-grid  { grid-template-columns: 1fr; gap: 48px; }
  .about-pillars { grid-template-columns: 1fr 1fr; }

  /* Why */
  .why-inner { grid-template-columns: 1fr; gap: 48px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav   { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .about-pillars { grid-template-columns: 1fr; }
  .footer-nav    { grid-template-columns: 1fr; }
  .trust-sep     { display: none; }
  .trust-inner   { gap: 12px 16px; justify-content: flex-start; }
  .hero-actions  { flex-direction: column; align-items: flex-start; }
}
