/* ═══════════════════════════════════════════════════════════════
   Socialments — Vercel-style Design System
   Dark theme · Electric blue + Warm orange · Ultra-clean
   ═══════════════════════════════════════════════════════════════ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── Variables ── */
:root {
  --bg:          #000000;
  --bg-surface:  #0a0a0a;
  --bg-card:     #111111;
  --bg-card-hover: #161616;
  --border:      #222222;
  --border-light: #1a1a1a;

  --blue:        #00C2FF;
  --blue-dim:    rgba(0, 194, 255, 0.12);
  --blue-glow:   rgba(0, 194, 255, 0.25);
  --orange:      #FF6B35;
  --orange-dim:  rgba(255, 107, 53, 0.12);

  --text:        #FFFFFF;
  --text-2:      #888888;
  --text-3:      #555555;

  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:   'JetBrains Mono', 'Fira Code', monospace;

  --max-w:       1200px;
  --nav-h:       64px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;

  --shadow-card: 0 0 0 1px rgba(255,255,255,0.04), 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(0, 194, 255, 0.15);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ── Typography ── */
.display-hero {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text);
}
.display-hero .accent { color: var(--blue); }

.display-xl {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.display-lg {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.display-md {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.body-lg { font-size: 1.125rem; line-height: 1.7; color: var(--text-2); }
.body-md { font-size: 1rem; line-height: 1.65; }
.body-sm { font-size: 0.875rem; line-height: 1.6; color: var(--text-2); }
.mono { font-family: var(--font-mono); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--blue);
  color: #000;
  border: 1px solid var(--blue);
}
.btn-primary:hover {
  background: #33d1ff;
  border-color: #33d1ff;
  box-shadow: 0 0 24px var(--blue-glow);
}
.btn-orange {
  background: var(--orange);
  color: #fff;
  border: 1px solid var(--orange);
}
.btn-orange:hover {
  background: #ff7f52;
  border-color: #ff7f52;
  box-shadow: 0 0 24px rgba(255, 107, 53, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--text-2);
  background: rgba(255,255,255,0.04);
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid transparent;
}
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,0.04); }

.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; border-radius: var(--radius-md); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }

/* ── Navigation ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(0,0,0,0.7);
  border-bottom: 1px solid var(--border-light);
}
.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: opacity 0.15s;
}
.nav-logo:hover { opacity: 0.8; }
.logo-dot {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--blue);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-link-cta {
  background: var(--blue) !important;
  color: #000 !important;
  font-weight: 600;
  margin-left: 0.5rem;
}
.nav-link-cta:hover { opacity: 0.9; box-shadow: 0 0 20px var(--blue-glow); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-2);
  border-radius: 1px;
  transition: all 0.2s;
}

/* ── Hero ── */
.hero {
  padding-top: calc(var(--nav-h) + 6rem);
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(0,194,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(255,107,53,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 900px; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: var(--blue-dim);
  border: 1px solid rgba(0,194,255,0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--blue);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue) 0%, #66d9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-2);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}
.hero-stat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.hero-stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-top: 0.25rem;
}

.hero-trust {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}
.hero-trust p {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: 1rem;
}
.trust-logos {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust-logo {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-3);
  padding: 0.375rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

/* ── Sections ── */
.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.section-alt { background: var(--bg-surface); }
.section-dark {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; margin-bottom: 3rem; }
.section-header--center .eyebrow { display: block; margin-bottom: 0.75rem; }
.section-header .eyebrow { margin-bottom: 0.75rem; }
.section-header p { color: var(--text-2); margin-top: 1rem; max-width: 560px; }

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.2s ease;
}
.card:hover {
  border-color: rgba(255,255,255,0.1);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.card-icon {
  width: 40px; height: 40px;
  background: var(--blue-dim);
  border: 1px solid rgba(0,194,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.card p { color: var(--text-2); font-size: 0.9375rem; line-height: 1.6; }

/* ── Pricing Cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: all 0.2s ease;
}
.pricing-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.pricing-card--featured {
  border-color: var(--blue);
  background: linear-gradient(180deg, rgba(0,194,255,0.06) 0%, var(--bg-card) 40%);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-glow);
}
.pricing-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--blue);
  color: #000;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.pricing-tier {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.75rem;
}
.pricing-price {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-price span { font-size: 1rem; color: var(--text-3); font-weight: 400; }
.pricing-period {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-top: 0.375rem;
  margin-bottom: 1rem;
}
.pricing-tagline {
  font-size: 0.875rem;
  color: var(--text-2);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-2);
}
.pricing-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 600;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--blue-dim);
  border: 1px solid rgba(0,194,255,0.2);
  color: var(--blue);
  transition: all 0.15s;
}
.pricing-cta:hover { background: var(--blue); color: #000; box-shadow: 0 0 20px var(--blue-glow); }
.pricing-note {
  font-size: 0.75rem;
  color: var(--text-3);
  text-align: center;
  margin-top: 0.875rem;
}

/* ── Process ── */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  opacity: 0.3;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  position: relative;
  z-index: 1;
}
.process-step h3 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.8125rem; color: var(--text-3); line-height: 1.5; }

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}
.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.25rem;
}
.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.25rem;
  font-size: 2rem;
  color: var(--blue);
  font-family: var(--font-display);
  line-height: 1;
  opacity: 0.6;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1px solid rgba(0,194,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
}
.testimonial-name { font-size: 0.875rem; font-weight: 600; }
.testimonial-role { font-size: 0.75rem; color: var(--text-3); }

/* ── CTA Banner ── */
.cta-banner {
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(0,194,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 1.125rem;
  color: var(--text-2);
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Page Hero (small) ── */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.125rem;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.65;
}

/* ── Two Column Layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col-wide { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: start; }

/* ── Service List ── */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-2);
}
.service-list li::before {
  content: '→';
  color: var(--blue);
  font-weight: 600;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── Price Tag ── */
.service-price-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--orange-dim);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
}

/* ── Team Grid ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.2s;
}
.team-card:hover { border-color: rgba(255,255,255,0.1); }
.team-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1px solid rgba(0,194,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 auto 1rem;
}
.team-name { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.team-role { font-size: 0.8125rem; color: var(--blue); font-weight: 500; margin-bottom: 0.875rem; }
.team-bio { font-size: 0.875rem; color: var(--text-3); line-height: 1.6; }

/* ── Stat Cards ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s;
}
.stat-card:hover { border-color: rgba(255,255,255,0.1); }
.stat-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stat-label { font-size: 0.8125rem; color: var(--text-3); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color 0.15s;
  gap: 1rem;
}
.faq-question:hover { color: var(--blue); }
.faq-toggle {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--text-2);
  flex-shrink: 0;
  transition: all 0.2s;
}
.faq-item.open .faq-toggle {
  background: var(--blue);
  border-color: var(--blue);
  color: #000;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── Contact Form ── */
.form-container { max-width: 560px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group--full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.01em;
}
.form-label span { color: var(--orange); }
.form-input, .form-select, .form-textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.9375rem;
  transition: border-color 0.15s;
  width: 100%;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-3); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-dim);
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: var(--blue-dim);
  border: 1px solid rgba(0,194,255,0.2);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--blue);
  font-weight: 500;
}

/* ── Legal Pages ── */
.legal-content { max-width: 720px; }
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  letter-spacing: -0.01em;
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p { color: var(--text-2); margin-bottom: 1rem; line-height: 1.7; font-size: 0.9375rem; }
.legal-content ul { margin: 0.75rem 0 1.25rem 1.25rem; }
.legal-content ul li { color: var(--text-2); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 0.5rem; }
.legal-content strong { color: var(--text); }

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.footer-tagline { font-size: 0.875rem; color: var(--text-3); margin-bottom: 0.75rem; }
.footer-email { font-size: 0.875rem; color: var(--blue); }
.footer-nav {
  display: flex;
  gap: 4rem;
}
.footer-nav-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav-col p {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.25rem;
}
.footer-nav-col a {
  font-size: 0.875rem;
  color: var(--text-2);
  transition: color 0.15s;
}
.footer-nav-col a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-3);
}

/* ── Feature Rows ── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-text .eyebrow { margin-bottom: 0.75rem; }
.feature-text h2 { margin-bottom: 1rem; }
.feature-text p { color: var(--text-2); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.feature-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.feature-visual-placeholder {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-3);
  font-style: italic;
}
.feature-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-2);
}
.feature-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 600;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── Onboarding ── */
.onboarding-wrapper {
  max-width: 680px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) 0 6rem;
}
.onboarding-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 3rem;
}
.progress-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-3);
  flex-shrink: 0;
}
.progress-step.active { color: var(--blue); font-weight: 600; }
.progress-step.done { color: var(--text-3); }
.progress-step-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  background: var(--bg-card);
}
.progress-step.active .progress-step-num {
  background: var(--blue);
  border-color: var(--blue);
  color: #000;
}
.progress-step.done .progress-step-num { border-color: var(--blue); color: var(--blue); }
.progress-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 0.5rem;
}
.onboarding-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.onboarding-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.onboarding-card .subtitle { color: var(--text-2); font-size: 0.9375rem; margin-bottom: 2rem; }
.onboarding-form { display: flex; flex-direction: column; gap: 1rem; }
.onboarding-form .btn { align-self: flex-start; margin-top: 0.5rem; }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.5s ease forwards; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .process-timeline::before { display: none; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .card-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-nav { gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .process-timeline { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
}

/* Mobile Nav Open State */
.nav-links.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  gap: 0.25rem;
  z-index: 99;
}

/* ── Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Gradient Text Effect ── */
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, #66d9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subtle Card Shine on Hover ── */
.pricing-card::after,
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,194,255,0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.pricing-card:hover::after,
.card:hover::after {
  opacity: 1;
}