/* ═══════════════════════════════════════════════════════════════════════════
   M4 PLUMBERS NEAR ME — PREMIUM DESIGN SYSTEM v2.0
   Senior UI/UX Design System: conversion-focused, premium B2B, dark/light
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────────────────────── */
:root {
  /* Brand Palette */
  --brand-primary:        #1a6cf6;
  --brand-primary-dark:   #1256d4;
  --brand-primary-light:  #5a96ff;
  --brand-primary-xlight: #dbeafe;
  --brand-accent:         #f59e0b;
  --brand-accent-dark:    #d97706;
  --brand-accent-light:   #fde68a;
  --brand-success:        #10b981;
  --brand-error:          #ef4444;
  --brand-info:           #06b6d4;
  --brand-purple:         #8b5cf6;
  --brand-rose:           #f43f5e;

  /* Light Mode Surface */
  --bg-page:        #ffffff;
  --bg-alt:         #f8fafc;
  --bg-card:        #ffffff;
  --bg-card-hover:  #f0f6ff;
  --bg-hero:        #060d1a;
  --bg-header:      rgba(255,255,255,0.96);
  --bg-input:       #f8fafc;
  --bg-footer:      #060d1a;
  --bg-dark-section:#0f1929;
  --bg-badge:       rgba(26,108,246,0.08);
  --bg-badge-dark:  rgba(26,108,246,0.18);

  /* Light Mode Text */
  --text-primary:   #0f172a;
  --text-secondary: #475569;
  --text-muted:     #94a3b8;
  --text-on-dark:   #f1f5f9;
  --text-on-primary:#ffffff;
  --text-inverse:   #f8fafc;
  --text-link:      #1a6cf6;
  --text-link-hover:#1256d4;

  /* Borders */
  --border:         #e2e8f0;
  --border-card:    rgba(226,232,240,0.8);
  --border-strong:  #cbd5e1;
  --border-focus:   #1a6cf6;
  --border-dark:    rgba(255,255,255,0.08);

  /* Shadows — layered, premium */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:  0 16px 56px rgba(0,0,0,0.13), 0 8px 20px rgba(0,0,0,0.07);
  --shadow-2xl: 0 32px 80px rgba(0,0,0,0.16), 0 16px 32px rgba(0,0,0,0.08);
  --shadow-glow:0 0 40px rgba(26,108,246,0.30);
  --shadow-card-hover: 0 12px 40px rgba(26,108,246,0.14), 0 4px 12px rgba(0,0,0,0.06);

  /* Spacing Scale (8px base) */
  --sp-1: 0.25rem;   /* 4px  */
  --sp-2: 0.5rem;    /* 8px  */
  --sp-3: 0.75rem;   /* 12px */
  --sp-4: 1rem;      /* 16px */
  --sp-5: 1.25rem;   /* 20px */
  --sp-6: 1.5rem;    /* 24px */
  --sp-8: 2rem;      /* 32px */
  --sp-10: 2.5rem;   /* 40px */
  --sp-12: 3rem;     /* 48px */
  --sp-16: 4rem;     /* 64px */
  --sp-20: 5rem;     /* 80px */
  --sp-24: 6rem;     /* 96px */
  --sp-32: 8rem;     /* 128px */

  /* Typography */
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', sans-serif;
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg:   1.125rem;   /* 18px */
  --text-xl:   1.25rem;    /* 20px */
  --text-2xl:  1.5rem;     /* 24px */
  --text-3xl:  1.875rem;   /* 30px */
  --text-4xl:  2.25rem;    /* 36px */
  --text-5xl:  3rem;       /* 48px */
  --text-6xl:  3.75rem;    /* 60px */
  --text-7xl:  4.5rem;     /* 72px */
  --leading-tight:  1.15;
  --leading-snug:   1.35;
  --leading-normal: 1.6;
  --leading-relaxed:1.75;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;

  /* Border Radius */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl:32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out-quart: cubic-bezier(0.25,1,0.5,1);
  --ease-in-out: cubic-bezier(0.4,0,0.2,1);
  --dur-fast:   0.15s;
  --dur-base:   0.25s;
  --dur-slow:   0.4s;
  --dur-slower: 0.6s;
  --transition-base: var(--dur-base) var(--ease-in-out);

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 760px;
  --container-wide: 1400px;
  --header-h: 72px;
  --section-y: var(--sp-20);
}

/* ── 2. DARK MODE TOKENS ──────────────────────────────────────────────────── */
[data-theme="dark"] {
  --bg-page:         #060d1a;
  --bg-alt:          #0d1929;
  --bg-card:         #111e33;
  --bg-card-hover:   #172440;
  --bg-hero:         #030810;
  --bg-header:       rgba(6,13,26,0.97);
  --bg-input:        #111e33;
  --bg-footer:       #030810;
  --bg-dark-section: #030810;
  --bg-badge:        rgba(26,108,246,0.15);
  --bg-badge-dark:   rgba(26,108,246,0.25);

  --text-primary:    #f1f5f9;
  --text-secondary:  #94a3b8;
  --text-muted:      #64748b;
  --text-link:       #5a96ff;
  --text-link-hover: #7db3ff;

  --border:          #1e3352;
  --border-card:     rgba(30,51,82,0.8);
  --border-strong:   #2d4a6e;

  --shadow-xs:  0 1px 2px rgba(0,0,0,0.25);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.35), 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.40), 0 2px 6px rgba(0,0,0,0.25);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.50), 0 4px 12px rgba(0,0,0,0.30);
  --shadow-xl:  0 16px 56px rgba(0,0,0,0.55), 0 8px 20px rgba(0,0,0,0.35);
  --shadow-2xl: 0 32px 80px rgba(0,0,0,0.60), 0 16px 32px rgba(0,0,0,0.40);
  --shadow-glow:0 0 50px rgba(26,108,246,0.50);
  --shadow-card-hover: 0 12px 40px rgba(26,108,246,0.25), 0 4px 12px rgba(0,0,0,0.35);
}

/* ── 3. RESET & BASE ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background-color: var(--bg-page);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color var(--dur-slow) var(--ease-in-out),
              color var(--dur-slow) var(--ease-in-out);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--text-link); text-decoration: none; transition: color var(--transition-base); }
a:hover { color: var(--text-link-hover); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: var(--leading-tight);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
}
p { color: var(--text-secondary); line-height: var(--leading-relaxed); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── 4. ORB FIELD (animated background blobs) ─────────────────────────────── */
#orb-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
#app { position: relative; z-index: 1; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
  animation:
    orb-fade-in 1.4s var(--ease-out-quart) forwards,
    orb-drift var(--orb-dur, 30s) ease-in-out infinite var(--orb-delay, 0s);
  will-change: transform, opacity;
}

[data-theme="light"] .orb { mix-blend-mode: multiply; }
[data-theme="dark"]  .orb { mix-blend-mode: screen; }

.orb--blue    { background: radial-gradient(circle, rgba(26,108,246,0.50) 0%, transparent 70%); }
.orb--indigo  { background: radial-gradient(circle, rgba(99,102,241,0.45) 0%, transparent 70%); }
.orb--cyan    { background: radial-gradient(circle, rgba(6,182,212,0.40) 0%, transparent 70%); }
.orb--amber   { background: radial-gradient(circle, rgba(245,158,11,0.38) 0%, transparent 70%); }
.orb--emerald { background: radial-gradient(circle, rgba(16,185,129,0.35) 0%, transparent 70%); }
.orb--violet  { background: radial-gradient(circle, rgba(139,92,246,0.40) 0%, transparent 70%); }
.orb--sky     { background: radial-gradient(circle, rgba(56,189,248,0.38) 0%, transparent 70%); }
.orb--rose    { background: radial-gradient(circle, rgba(244,63,94,0.28) 0%, transparent 70%); }

[data-theme="dark"] .orb--blue    { background: radial-gradient(circle, rgba(26,108,246,0.65) 0%, transparent 70%); }
[data-theme="dark"] .orb--indigo  { background: radial-gradient(circle, rgba(99,102,241,0.55) 0%, transparent 70%); }
[data-theme="dark"] .orb--cyan    { background: radial-gradient(circle, rgba(6,182,212,0.52) 0%, transparent 70%); }
[data-theme="dark"] .orb--amber   { background: radial-gradient(circle, rgba(245,158,11,0.48) 0%, transparent 70%); }
[data-theme="dark"] .orb--emerald { background: radial-gradient(circle, rgba(16,185,129,0.45) 0%, transparent 70%); }
[data-theme="dark"] .orb--violet  { background: radial-gradient(circle, rgba(139,92,246,0.55) 0%, transparent 70%); }
[data-theme="dark"] .orb--sky     { background: radial-gradient(circle, rgba(56,189,248,0.50) 0%, transparent 70%); }
[data-theme="dark"] .orb--rose    { background: radial-gradient(circle, rgba(244,63,94,0.38) 0%, transparent 70%); }

@keyframes orb-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  15%  { transform: translate(var(--orb-x1, 20px), var(--orb-y1, -25px)) scale(1.04); }
  30%  { transform: translate(var(--orb-x2, -18px), var(--orb-y2, 15px)) scale(0.97); }
  50%  { transform: translate(var(--orb-x3, 25px), var(--orb-y3, 20px)) scale(1.06); }
  70%  { transform: translate(var(--orb-x4, -22px), var(--orb-y4, -18px)) scale(0.98); }
  85%  { transform: translate(var(--orb-x5, 12px), var(--orb-y5, 28px)) scale(1.03); }
  100% { transform: translate(0, 0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .orb { animation: orb-fade-in 1s forwards; }
}

/* ── 5. LAYOUT UTILITIES ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
.container--narrow { max-width: var(--container-narrow); }
.container--wide   { max-width: var(--container-wide); }

.section {
  padding-block: var(--section-y);
}
.section--alt  { background-color: var(--bg-alt); }
.section--dark {
  background-color: var(--bg-dark-section);
  color: var(--text-on-dark);
}
.section--dark h2,
.section--dark h3 { color: var(--text-on-dark); }
.section--dark p  { color: rgba(241,245,249,0.75); }
.section--tight   { padding-block: var(--sp-12); }

.text-center { text-align: center; }

/* ── 6. SECTION INTRO ─────────────────────────────────────────────────────── */
.section-intro { margin-bottom: var(--sp-12); }
.section-intro--center { text-align: center; }
.section-intro--center .section-subtitle {
  max-width: 640px;
  margin-inline: auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: var(--bg-badge);
  border: 1px solid rgba(26,108,246,0.18);
  border-radius: var(--radius-full);
  padding: var(--sp-2) var(--sp-4);
  margin-bottom: var(--sp-4);
}
[data-theme="dark"] .section-badge {
  background: var(--bg-badge-dark);
  border-color: rgba(26,108,246,0.30);
}

.section-title {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: var(--fw-extrabold);
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--sp-4);
}
.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

/* Section title on dark bg */
.section--dark .section-title  { color: #f1f5f9; }
.section--dark .section-badge  {
  background: rgba(26,108,246,0.20);
  border-color: rgba(26,108,246,0.35);
  color: #7db3ff;
}

/* ── 7. BUTTONS ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: var(--text-sm);
  line-height: 1;
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-6);
  transition:
    background-color var(--dur-fast) var(--ease-in-out),
    color var(--dur-fast) var(--ease-in-out),
    border-color var(--dur-fast) var(--ease-in-out),
    box-shadow var(--dur-fast) var(--ease-in-out),
    transform var(--dur-fast) var(--ease-in-out);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible {
  outline: 3px solid var(--brand-primary);
  outline-offset: 3px;
}

/* Primary */
.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
  box-shadow: 0 4px 14px rgba(26,108,246,0.35);
}
.btn-primary:hover {
  background: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
  color: #fff;
  box-shadow: 0 6px 22px rgba(26,108,246,0.50);
  transform: translateY(-1px);
}

/* Accent */
.btn-accent {
  background: var(--brand-accent);
  color: #0f172a;
  border-color: var(--brand-accent);
  box-shadow: 0 4px 14px rgba(245,158,11,0.30);
}
.btn-accent:hover {
  background: var(--brand-accent-dark);
  border-color: var(--brand-accent-dark);
  color: #0f172a;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(245,158,11,0.45);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.btn-outline:hover {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26,108,246,0.30);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--bg-alt);
  border-color: var(--border-strong);
  color: var(--text-primary);
}

/* Dark ghost (on dark sections) */
.btn-ghost-dark {
  background: rgba(255,255,255,0.08);
  color: #f1f5f9;
  border-color: rgba(255,255,255,0.18);
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.30);
}

/* Sizes */
.btn-sm  { font-size: var(--text-xs); padding: var(--sp-2) var(--sp-4); }
.btn-lg  {
  font-size: var(--text-base);
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius-lg);
}
.btn-xl  {
  font-size: var(--text-lg);
  padding: var(--sp-5) var(--sp-10);
  border-radius: var(--radius-lg);
}

/* ── 8. CARDS ─────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--dur-base) var(--ease-out-quart),
    box-shadow var(--dur-base) var(--ease-out-quart),
    border-color var(--dur-base) var(--ease-in-out);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(26,108,246,0.22);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--bg-badge);
  border: 1px solid rgba(26,108,246,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xl);
  color: var(--brand-primary);
  margin-bottom: var(--sp-5);
  transition: all var(--dur-base) var(--ease-out-quart);
}
[data-theme="dark"] .card-icon {
  background: rgba(26,108,246,0.15);
  border-color: rgba(26,108,246,0.25);
}
.card:hover .card-icon {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
  transform: scale(1.08);
}
.card-title {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}
.card-body {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ── 9. HEADER / NAV ──────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--bg-header);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition:
    background var(--dur-base) var(--ease-in-out),
    border-color var(--dur-base) var(--ease-in-out),
    box-shadow var(--dur-base) var(--ease-in-out);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}
.nav-container {
  display: flex;
  align-items: center;
  height: var(--header-h);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  gap: var(--sp-4);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: var(--text-base);
  box-shadow: 0 4px 12px rgba(26,108,246,0.35);
  flex-shrink: 0;
}
.logo-text {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.logo-text strong { font-weight: var(--fw-extrabold); color: var(--brand-primary); }

/* Desktop nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
  list-style: none;
}
.nav-link {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color var(--dur-fast), background var(--dur-fast);
  white-space: nowrap;
}
.nav-link:hover { color: var(--text-primary); background: var(--bg-alt); }
.nav-link--active {
  color: var(--brand-primary);
  font-weight: var(--fw-semibold);
  background: var(--bg-badge);
}
.nav-link--members {
  color: var(--brand-primary);
  font-weight: var(--fw-semibold);
}
.nav-cta { margin-left: var(--sp-2); }

/* Theme + mobile toggle */
.nav-actions-desktop {
  display: flex; align-items: center; gap: var(--sp-2);
  margin-left: var(--sp-3);
}
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--dur-fast);
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger-line {
  display: block;
  width: 20px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--dur-base), opacity var(--dur-base);
}
.nav-toggle.open .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle.open .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── 10. HERO SECTION ─────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  background: var(--bg-hero);
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + var(--sp-16));
  padding-bottom: var(--sp-20);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}
.hero-bg-shape--1 {
  width: 900px; height: 900px;
  top: -300px; right: -200px;
  background: radial-gradient(circle, rgba(26,108,246,0.18) 0%, transparent 70%);
}
.hero-bg-shape--2 {
  width: 700px; height: 700px;
  bottom: -200px; left: -150px;
  background: radial-gradient(circle, rgba(245,158,11,0.10) 0%, transparent 70%);
}
.hero-bg-shape--3 {
  width: 600px; height: 600px;
  top: 50%; left: 40%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(99,102,241,0.10) 0%, transparent 70%);
}
.hero-bg-shape--4 {
  width: 500px; height: 500px;
  bottom: -100px; right: 30%;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand-accent);
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.28);
  border-radius: var(--radius-full);
  padding: var(--sp-2) var(--sp-4);
  margin-bottom: var(--sp-6);
}
.hero-badge i { color: var(--brand-accent); }

.hero-title {
  font-size: clamp(var(--text-4xl), 5.5vw, var(--text-7xl));
  font-weight: var(--fw-black);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  color: #f1f5f9;
  margin-bottom: var(--sp-6);
}
.hero-title--accent {
  background: linear-gradient(135deg, var(--brand-accent), #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(148,163,184,0.90);
  line-height: var(--leading-relaxed);
  max-width: 520px;
  margin-bottom: var(--sp-8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(148,163,184,0.85);
}
.hero-trust-item .fa-star { color: var(--brand-accent); font-size: var(--text-xs); }
.hero-trust-item .fa-shield-alt { color: var(--brand-success); }
.hero-trust-item .fa-pound-sign { color: var(--brand-primary-light); }
.hero-trust-divider {
  width: 1px; height: 18px;
  background: rgba(148,163,184,0.3);
}

/* Hero visual / stats cards */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  align-items: flex-end;
}
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--sp-6);
  box-shadow: 0 16px 40px rgba(0,0,0,0.30);
  transition: transform var(--dur-base) var(--ease-out-quart);
}
.hero-card:hover { transform: translateY(-4px); }

.hero-card--main {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-8);
  width: 100%;
  max-width: 340px;
}
.hero-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-2xl);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(26,108,246,0.45);
}
.hero-card-content { display: flex; flex-direction: column; gap: 2px; }
.hero-card-label { font-size: var(--text-xs); color: rgba(148,163,184,0.9); font-weight: var(--fw-medium); }
.hero-card-value {
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  color: var(--brand-success);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-card-sub { font-size: var(--text-xs); color: rgba(148,163,184,0.75); }

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  width: 100%;
  max-width: 340px;
}
.hero-stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  padding: var(--sp-4);
  text-align: center;
  transition: transform var(--dur-base) var(--ease-out-quart);
}
.hero-stat-card:hover { transform: translateY(-3px); }
.hero-stat-card i {
  font-size: var(--text-lg);
  color: var(--brand-primary-light);
  margin-bottom: var(--sp-2);
  display: block;
}
.hero-stat-card span {
  font-size: 10px;
  color: rgba(148,163,184,0.85);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
  display: block;
}

/* ── 11. SOCIAL PROOF BAR ────────────────────────────────────────────────────*/
.logos-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: var(--sp-6);
}
.logos-label {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
}
.logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
}
.logo-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: var(--sp-2) var(--sp-5);
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-fast);
}
.logo-pill:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(26,108,246,0.10);
  transform: translateY(-1px);
}
.logo-pill i { color: var(--brand-primary); }

/* ── 12. PROBLEM SECTION ──────────────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-base) var(--ease-out-quart);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-error), var(--brand-accent));
  opacity: 0;
  transition: opacity var(--dur-base);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.problem-card:hover::before { opacity: 1; }
.problem-icon {
  width: 48px; height: 48px;
  background: rgba(239,68,68,0.10);
  border: 1px solid rgba(239,68,68,0.18);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xl);
  color: var(--brand-error);
  margin-bottom: var(--sp-5);
}
[data-theme="dark"] .problem-icon { background: rgba(239,68,68,0.12); border-color: rgba(239,68,68,0.22); }
.problem-title {
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}
.problem-body { font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--leading-relaxed); }

/* ── 13. SOLUTION CARDS ───────────────────────────────────────────────────── */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.solution-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-out-quart);
  position: relative;
  overflow: hidden;
}
.solution-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-info));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out-quart);
}
.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(26,108,246,0.22);
}
.solution-card:hover::after { transform: scaleX(1); }
.solution-card-icon {
  width: 52px; height: 52px;
  background: var(--bg-badge);
  border: 1px solid rgba(26,108,246,0.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xl);
  color: var(--brand-primary);
  margin-bottom: var(--sp-5);
  transition: all var(--dur-base) var(--ease-out-quart);
}
.solution-card:hover .solution-card-icon {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
  transform: scale(1.08);
}
.solution-card-title {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}
.solution-card-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  flex: 1;
  margin-bottom: var(--sp-5);
}
.solution-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--brand-primary);
  margin-top: auto;
  transition: gap var(--dur-fast);
}
.solution-card:hover .solution-card-link { gap: var(--sp-3); }

/* ── 14. FOUNDER / TEAM ───────────────────────────────────────────────────── */
.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-16);
  align-items: center;
}
.founder-image-wrap { position: relative; }
.founder-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 400px;
  background: linear-gradient(160deg, var(--bg-alt) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
}
.founder-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,13,26,0.50) 100%);
  border-radius: var(--radius-2xl);
}
.founder-badge-float {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: #f1f5f9;
  background: rgba(26,108,246,0.85);
  border: 1px solid rgba(26,108,246,0.50);
  border-radius: var(--radius-full);
  padding: var(--sp-3) var(--sp-5);
  backdrop-filter: blur(12px);
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(26,108,246,0.40);
}
.founder-copy { display: flex; flex-direction: column; gap: var(--sp-5); }
.founder-copy .section-badge { align-self: flex-start; }
.founder-copy .section-title { margin-bottom: 0; }
.founder-copy p { font-size: var(--text-base); }
.founder-stats {
  display: flex;
  gap: var(--sp-8);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
  margin-top: var(--sp-2);
}
.founder-stat { display: flex; flex-direction: column; gap: var(--sp-1); }
.founder-stat-number {
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  color: var(--brand-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.founder-stat-label { font-size: var(--text-sm); color: var(--text-muted); }

/* ── 15. WHY CARDS ────────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-base) var(--ease-out-quart);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: rgba(26,108,246,0.20); }
.why-card-icon {
  width: 48px; height: 48px;
  background: var(--bg-badge);
  border: 1px solid rgba(26,108,246,0.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xl);
  color: var(--brand-primary);
  margin-bottom: var(--sp-5);
  transition: all var(--dur-base) var(--ease-out-quart);
}
.why-card:hover .why-card-icon { background: var(--brand-primary); color: #fff; }
.why-card-title { font-size: var(--text-base); font-weight: var(--fw-bold); color: var(--text-primary); margin-bottom: var(--sp-3); }
.why-card-body  { font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--leading-relaxed); }

/* ── 16. PROCESS / HOW IT WORKS ──────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  position: relative;
}
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--sp-8) var(--sp-6);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: all var(--dur-base) var(--ease-out-quart);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.process-step-number {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  font-size: var(--text-4xl);
  font-weight: var(--fw-black);
  color: var(--bg-alt);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  transition: color var(--dur-slow);
}
[data-theme="dark"] .process-step-number { color: rgba(255,255,255,0.04); }
.process-step:hover .process-step-number { color: rgba(26,108,246,0.08); }
.process-step-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-2xl);
  color: #fff;
  margin: 0 auto var(--sp-5);
  box-shadow: 0 8px 24px rgba(26,108,246,0.35);
  transition: transform var(--dur-base) var(--ease-out-quart);
}
.process-step:hover .process-step-icon { transform: scale(1.08) rotate(-4deg); }
.process-step-title { font-size: var(--text-base); font-weight: var(--fw-bold); color: var(--text-primary); margin-bottom: var(--sp-3); }
.process-step-body  { font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--leading-relaxed); }
.process-connector {
  display: none; /* Connectors handled at larger screens */
}

/* ── 17. STATISTICS STRIP ─────────────────────────────────────────────────── */
.stats-strip {
  background: var(--bg-dark-section);
  padding-block: var(--sp-16);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  text-align: center;
}
.stat-item {}
.stat-number {
  display: block;
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: var(--fw-black);
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--brand-primary-light), var(--brand-info));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-label {
  font-size: var(--text-sm);
  color: rgba(148,163,184,0.75);
  font-weight: var(--fw-medium);
}

/* ── 18. TESTIMONIALS ─────────────────────────────────────────────────────── */
.testimonials-section { padding-block: var(--section-y); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--dur-base) var(--ease-out-quart);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--sp-5); right: var(--sp-6);
  font-size: 5rem;
  font-weight: var(--fw-black);
  line-height: 1;
  color: var(--brand-primary);
  opacity: 0.10;
  font-family: Georgia, serif;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); border-color: rgba(26,108,246,0.20); }
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-5);
}
.testimonial-stars i { color: var(--brand-accent); font-size: var(--text-sm); }
.testimonial-body {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  font-style: italic;
  flex: 1;
  margin-bottom: var(--sp-6);
}
.testimonial-author { display: flex; align-items: center; gap: var(--sp-4); margin-top: auto; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-size: var(--text-sm); font-weight: var(--fw-bold); color: var(--text-primary); }
.testimonial-company { font-size: var(--text-xs); color: var(--text-muted); }
.testimonial-result {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--brand-success);
  background: rgba(16,185,129,0.10);
  border: 1px solid rgba(16,185,129,0.20);
  border-radius: var(--radius-full);
  padding: 2px var(--sp-3);
  margin-top: var(--sp-2);
}

/* ── 19. FAQ ACCORDION ────────────────────────────────────────────────────── */
.faq-section { padding-block: var(--section-y); }
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-3);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--dur-base);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(26,108,246,0.25); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--sp-6) var(--sp-8);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: var(--sp-4);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  transition: color var(--dur-fast);
}
.faq-question:hover { color: var(--brand-primary); }
.faq-item.open .faq-question { color: var(--brand-primary); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: all var(--dur-base) var(--ease-out-quart);
}
.faq-item.open .faq-icon {
  background: var(--brand-primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out-quart),
              padding var(--dur-slow) var(--ease-out-quart);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 var(--sp-8) var(--sp-6);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-5);
}
.faq-answer-inner a { color: var(--brand-primary); font-weight: var(--fw-semibold); }

/* ── 20. CONSULTATION / CTA FORM ─────────────────────────────────────────── */
.consultation-section {
  background: var(--bg-dark-section);
  padding-block: var(--sp-24);
  position: relative;
  overflow: hidden;
}
.consultation-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,108,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.consultation-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.consultation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
  position: relative;
  z-index: 2;
}
.consultation-copy .section-title { color: #f1f5f9; margin-bottom: var(--sp-5); }
.consultation-copy .section-subtitle { color: rgba(148,163,184,0.85); margin-bottom: var(--sp-8); }
.consultation-benefits { display: flex; flex-direction: column; gap: var(--sp-4); }
.consultation-benefit {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--text-sm);
  color: rgba(148,163,184,0.90);
}
.consultation-benefit-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-md);
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-sm);
  color: var(--brand-success);
  flex-shrink: 0;
}

/* Form card */
.consultation-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-2xl);
  padding: var(--sp-10);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.40);
}
.form-group { margin-bottom: var(--sp-5); }
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: rgba(241,245,249,0.85);
  margin-bottom: var(--sp-2);
}
.form-control {
  width: 100%;
  padding: var(--sp-4) var(--sp-5);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: #f1f5f9;
  transition: all var(--dur-fast);
  outline: none;
  font-family: var(--font-sans);
}
.form-control::placeholder { color: rgba(148,163,184,0.60); }
.form-control:focus {
  border-color: rgba(26,108,246,0.60);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 0 0 3px rgba(26,108,246,0.20);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-honeypot { display: none !important; }
.form-submit { width: 100%; margin-top: var(--sp-4); }

/* Light-mode form (standalone forms) */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-lg);
}
.form-card .form-label { color: var(--text-primary); }
.form-card .form-control {
  background: var(--bg-input);
  border-color: var(--border);
  color: var(--text-primary);
}
.form-card .form-control::placeholder { color: var(--text-muted); }
.form-card .form-control:focus {
  border-color: var(--brand-primary);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(26,108,246,0.12);
}

/* ── 21. SERVICES PAGE ────────────────────────────────────────────────────── */
.page-hero {
  background: var(--bg-hero);
  padding-top: calc(var(--header-h) + var(--sp-20));
  padding-bottom: var(--sp-20);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(26,108,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand-accent);
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.28);
  border-radius: var(--radius-full);
  padding: var(--sp-2) var(--sp-4);
  margin-bottom: var(--sp-5);
}
.page-hero-title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
  font-weight: var(--fw-black);
  letter-spacing: -0.03em;
  line-height: var(--leading-tight);
  color: #f1f5f9;
  margin-bottom: var(--sp-5);
}
.page-hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(148,163,184,0.85);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--sp-8);
  line-height: var(--leading-relaxed);
}

/* Service detail blocks */
.service-block {
  padding-block: var(--sp-20);
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block--alt { background: var(--bg-alt); }
.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.service-block-inner.reverse { direction: rtl; }
.service-block-inner.reverse > * { direction: ltr; }

.service-visual {
  background: linear-gradient(160deg, var(--bg-alt), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  aspect-ratio: 5/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.service-visual-icon {
  font-size: 5rem;
  color: var(--brand-primary);
  opacity: 0.25;
}
.service-visual-badge {
  position: absolute;
  bottom: var(--sp-6); left: var(--sp-6);
  background: rgba(26,108,246,0.85);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin: var(--sp-6) 0;
}
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}
.service-feature-check {
  width: 22px; height: 22px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.22);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--brand-success);
  flex-shrink: 0;
  margin-top: 2px;
}
.service-result-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--brand-success);
  background: rgba(16,185,129,0.10);
  border: 1px solid rgba(16,185,129,0.20);
  border-radius: var(--radius-full);
  padding: var(--sp-2) var(--sp-4);
  margin-bottom: var(--sp-5);
}

/* ── 22. SERVICE AREAS ────────────────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.area-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--sp-7);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-out-quart);
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-info));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out-quart);
}
.area-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(26,108,246,0.22);
}
.area-card:hover::before { transform: scaleX(1); }
.area-card-icon {
  font-size: var(--text-2xl);
  color: var(--brand-primary);
  margin-bottom: var(--sp-4);
  display: block;
}
.area-card-city {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}
.area-card-region {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-4);
}
.area-card-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  flex: 1;
  margin-bottom: var(--sp-5);
}
.area-card-cta {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: auto;
}
.area-card:hover .area-card-cta { gap: var(--sp-3); }

/* ── 23. ABOUT PAGE ───────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.team-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--sp-10) var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-base) var(--ease-out-quart);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.team-avatar {
  width: 96px; height: 96px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  margin: 0 auto var(--sp-5);
  box-shadow: 0 8px 24px rgba(26,108,246,0.30);
}
.team-name { font-size: var(--text-xl); font-weight: var(--fw-bold); color: var(--text-primary); margin-bottom: var(--sp-1); }
.team-role { font-size: var(--text-sm); color: var(--brand-primary); font-weight: var(--fw-semibold); margin-bottom: var(--sp-4); }
.team-bio  { font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--leading-relaxed); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.value-card {
  display: flex;
  gap: var(--sp-5);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--sp-7);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-base) var(--ease-out-quart);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-card-icon {
  width: 48px; height: 48px;
  background: var(--bg-badge);
  border: 1px solid rgba(26,108,246,0.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xl);
  color: var(--brand-primary);
  flex-shrink: 0;
}
.value-card-content { flex: 1; }
.value-card-title { font-size: var(--text-base); font-weight: var(--fw-bold); color: var(--text-primary); margin-bottom: var(--sp-2); }
.value-card-body  { font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--leading-relaxed); }

/* ── 24. MEMBERS LOGIN ────────────────────────────────────────────────────── */
.members-page {
  min-height: 100vh;
  background: var(--bg-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + var(--sp-12)) var(--sp-6) var(--sp-12);
  position: relative;
  overflow: hidden;
}
.members-page::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(26,108,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.members-card {
  width: 100%;
  max-width: 460px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-2xl);
  padding: var(--sp-12) var(--sp-10);
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.50);
  position: relative;
  z-index: 2;
}
.members-logo { text-align: center; margin-bottom: var(--sp-8); }
.members-logo .logo-icon { width: 56px; height: 56px; margin-inline: auto; font-size: var(--text-xl); }
.members-title { font-size: var(--text-2xl); font-weight: var(--fw-extrabold); color: #f1f5f9; text-align: center; margin-bottom: var(--sp-2); }
.members-subtitle { font-size: var(--text-sm); color: rgba(148,163,184,0.80); text-align: center; margin-bottom: var(--sp-8); }
.members-form .form-label { color: rgba(241,245,249,0.85); }
.password-input-wrap { position: relative; }
.password-input-wrap .form-control { padding-right: var(--sp-12); }
.toggle-password {
  position: absolute;
  top: 50%; right: var(--sp-4);
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(148,163,184,0.70);
  cursor: pointer;
  padding: var(--sp-1);
  font-size: var(--text-sm);
  transition: color var(--dur-fast);
}
.toggle-password:hover { color: rgba(241,245,249,0.90); }
.members-coming-soon {
  text-align: center;
  padding: var(--sp-6);
  background: rgba(26,108,246,0.10);
  border: 1px solid rgba(26,108,246,0.22);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  color: rgba(148,163,184,0.85);
  margin-top: var(--sp-6);
}

/* ── 25. BLOG ─────────────────────────────────────────────────────────────── */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-10);
}
.blog-filter-btn {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--dur-fast);
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all var(--dur-base) var(--ease-out-quart);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); border-color: rgba(26,108,246,0.20); }
.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(160deg, var(--bg-alt) 0%, var(--bg-card) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.blog-card-image-icon {
  font-size: 3rem;
  color: var(--brand-primary);
  opacity: 0.20;
}
.blog-card-category {
  position: absolute;
  top: var(--sp-4); left: var(--sp-4);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--brand-primary);
  border-radius: var(--radius-full);
  padding: var(--sp-1) var(--sp-3);
}
.blog-card-body { padding: var(--sp-6); display: flex; flex-direction: column; flex: 1; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}
.blog-card-title {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
  line-height: var(--leading-snug);
}
.blog-card:hover .blog-card-title { color: var(--brand-primary); }
.blog-card-excerpt {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  flex: 1;
  margin-bottom: var(--sp-5);
}
.blog-card-read-more {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--brand-primary);
  display: flex; align-items: center; gap: var(--sp-2);
  margin-top: auto;
}
.blog-card:hover .blog-card-read-more { gap: var(--sp-3); }

/* Blog post page */
.blog-post-wrap { max-width: var(--container-narrow); margin-inline: auto; }
.blog-post-header { margin-bottom: var(--sp-10); }
.blog-post-category {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--brand-primary);
  background: var(--bg-badge);
  border: 1px solid rgba(26,108,246,0.15);
  border-radius: var(--radius-full);
  padding: var(--sp-2) var(--sp-4);
  margin-bottom: var(--sp-5);
}
.blog-post-title {
  font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
  font-weight: var(--fw-black);
  letter-spacing: -0.025em;
  line-height: var(--leading-tight);
  color: var(--text-primary);
  margin-bottom: var(--sp-5);
}
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border);
}
.blog-post-content { font-size: var(--text-base); line-height: var(--leading-relaxed); }
.blog-post-content h2 {
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--text-primary);
  margin: var(--sp-10) 0 var(--sp-5);
  letter-spacing: -0.02em;
}
.blog-post-content h3 {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin: var(--sp-8) 0 var(--sp-4);
}
.blog-post-content p { margin-bottom: var(--sp-5); color: var(--text-secondary); }
.blog-post-content ul { margin: 0 0 var(--sp-6) var(--sp-5); }
.blog-post-content ul li {
  list-style: disc;
  color: var(--text-secondary);
  margin-bottom: var(--sp-3);
  font-size: var(--text-base);
}
.blog-post-content strong { color: var(--text-primary); font-weight: var(--fw-bold); }
.blog-post-content a { color: var(--brand-primary); font-weight: var(--fw-semibold); }

/* ── 26. FOOTER ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-footer);
  padding-top: var(--sp-20);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {}
.footer-logo { margin-bottom: var(--sp-5); }
.footer-logo .logo-text { color: #f1f5f9; }
.footer-logo .logo-text strong { color: var(--brand-primary-light); }
.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(148,163,184,0.75);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--sp-6);
  max-width: 280px;
}
.footer-contact { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: rgba(148,163,184,0.75);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.footer-contact-item i { color: var(--brand-primary-light); width: 16px; flex-shrink: 0; }
.footer-contact-item:hover { color: #f1f5f9; }
.footer-social { display: flex; gap: var(--sp-3); }
.footer-social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-sm);
  color: rgba(148,163,184,0.75);
  text-decoration: none;
  transition: all var(--dur-fast);
}
.footer-social-link:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px);
}
.footer-col-title {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: #f1f5f9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-link {
  font-size: var(--text-sm);
  color: rgba(148,163,184,0.70);
  text-decoration: none;
  transition: color var(--dur-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.footer-link:hover { color: #f1f5f9; }
.footer-link i { font-size: var(--text-xs); color: var(--brand-primary-light); opacity: 0.7; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--sp-6);
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer-copyright { font-size: var(--text-xs); color: rgba(100,116,139,0.80); }
.footer-legal { display: flex; gap: var(--sp-5); }
.footer-legal-link {
  font-size: var(--text-xs);
  color: rgba(100,116,139,0.80);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.footer-legal-link:hover { color: #f1f5f9; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: rgba(100,116,139,0.60);
}
.footer-badge i { color: var(--brand-success); }

/* ── 27. TRUST BADGE STRIP ────────────────────────────────────────────────── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-5);
  padding: var(--sp-8) 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-secondary);
}
.trust-badge i { font-size: var(--text-lg); color: var(--brand-success); }
.trust-badge-divider { width: 1px; height: 32px; background: var(--border); }

/* ── 28. BREADCRUMBS ──────────────────────────────────────────────────────── */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(148,163,184,0.75);
  margin-bottom: var(--sp-6);
}
.breadcrumbs a { color: rgba(148,163,184,0.75); text-decoration: none; transition: color var(--dur-fast); }
.breadcrumbs a:hover { color: #f1f5f9; }
.breadcrumbs-sep { color: rgba(148,163,184,0.40); font-size: var(--text-xs); }
.breadcrumbs-current { color: rgba(241,245,249,0.70); }

/* ── 29. SCROLL TO TOP ────────────────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  width: 44px; height: 44px;
  background: var(--brand-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-sm);
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: all var(--dur-base) var(--ease-out-quart);
  box-shadow: 0 6px 20px rgba(26,108,246,0.40);
  z-index: 999;
}
#scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#scroll-top:hover { background: var(--brand-primary-dark); transform: translateY(-2px); }

/* ── 30. ANIMATIONS ───────────────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slide-right {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scale-up {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-fade-up  { animation: fade-up  0.6s var(--ease-out-quart) both; }
.animate-fade-in  { animation: fade-in  0.5s var(--ease-out-quart) both; }
.animate-scale-up { animation: scale-up 0.5s var(--ease-out-quart) both; }

/* Stagger delays */
.delay-1  { animation-delay: 0.05s; }
.delay-2  { animation-delay: 0.10s; }
.delay-3  { animation-delay: 0.15s; }
.delay-4  { animation-delay: 0.20s; }
.delay-5  { animation-delay: 0.25s; }
.delay-6  { animation-delay: 0.30s; }

/* Scroll-triggered animation base state */
.anim-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out-quart), transform 0.6s var(--ease-out-quart);
}
.anim-ready.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .anim-ready { opacity: 1; transform: none; transition: none; }
}

/* ── 31. LEGAL PAGES (Terms, Privacy) ────────────────────────────────────── */
.legal-content {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-top: calc(var(--header-h) + var(--sp-16));
  padding-bottom: var(--sp-20);
}
.legal-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: var(--fw-black);
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}
.legal-subtitle { font-size: var(--text-base); color: var(--text-muted); margin-bottom: var(--sp-10); padding-bottom: var(--sp-8); border-bottom: 1px solid var(--border); }
.legal-content h2 {
  font-size: var(--text-xl);
  font-weight: var(--fw-extrabold);
  color: var(--text-primary);
  margin: var(--sp-10) 0 var(--sp-4);
  letter-spacing: -0.015em;
}
.legal-content h3 {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin: var(--sp-6) 0 var(--sp-3);
}
.legal-content p { margin-bottom: var(--sp-4); font-size: var(--text-base); }
.legal-content ul { margin: 0 0 var(--sp-5) var(--sp-5); }
.legal-content ul li {
  list-style: disc;
  color: var(--text-secondary);
  margin-bottom: var(--sp-3);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

/* ── 32. THANK YOU & 404 ──────────────────────────────────────────────────── */
.centered-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-8);
  text-align: center;
  background: var(--bg-hero);
  padding-top: calc(var(--header-h) + var(--sp-8));
}
.centered-card {
  max-width: 560px;
  width: 100%;
}
.centered-icon {
  width: 88px; height: 88px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto var(--sp-8);
}
.centered-icon--success { background: rgba(16,185,129,0.15); color: var(--brand-success); border: 2px solid rgba(16,185,129,0.30); }
.centered-icon--error   { background: rgba(239,68,68,0.12); color: var(--brand-error); border: 2px solid rgba(239,68,68,0.25); }
.centered-title { font-size: var(--text-4xl); font-weight: var(--fw-black); color: #f1f5f9; margin-bottom: var(--sp-5); letter-spacing: -0.025em; }
.centered-subtitle { font-size: var(--text-lg); color: rgba(148,163,184,0.80); margin-bottom: var(--sp-8); line-height: var(--leading-relaxed); }

/* ── 33. NOTIFICATION / ALERT ─────────────────────────────────────────────── */
.alert {
  display: none;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  margin-top: var(--sp-4);
}
.alert.show { display: flex; }
.alert--success {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  color: #34d399;
}
.alert--error {
  background: rgba(239,68,68,0.10);
  border: 1px solid rgba(239,68,68,0.22);
  color: #f87171;
}

/* ── 34. RESPONSIVE BREAKPOINTS ───────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  :root { --section-y: var(--sp-16); }
  .hero-inner           { grid-template-columns: 1fr; gap: var(--sp-12); }
  .hero-visual          { align-items: center; }
  .hero-card--main      { max-width: 100%; }
  .hero-stats-row       { max-width: 100%; }
  .founder-inner        { grid-template-columns: 1fr; gap: var(--sp-10); }
  .founder-image-wrap   { max-width: 400px; margin-inline: auto; }
  .consultation-inner   { grid-template-columns: 1fr; gap: var(--sp-10); }
  .service-block-inner  { grid-template-columns: 1fr; gap: var(--sp-10); }
  .service-block-inner.reverse { direction: ltr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile nav */
@media (max-width: 768px) {
  :root { --section-y: var(--sp-12); --header-h: 64px; }
  .nav-toggle { display: flex; }
  .nav-actions-desktop { display: none; }
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--bg-header);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: var(--sp-4);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    z-index: 999;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-link { display: block; width: 100%; padding: var(--sp-4); font-size: var(--text-base); border-radius: var(--radius-md); }
  .nav-link--members { padding: var(--sp-4); }
  .nav-cta { width: 100%; justify-content: center; margin: var(--sp-3) 0 0; text-align: center; }

  .problem-grid  { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .areas-grid    { grid-template-columns: repeat(2, 1fr); }
  .blog-grid     { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; text-align: center; gap: var(--sp-3); }

  .hero-title   { font-size: clamp(var(--text-3xl), 8vw, var(--text-5xl)); }
  .form-row     { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }

  .members-card { padding: var(--sp-8) var(--sp-6); }
}

@media (max-width: 480px) {
  :root { --section-y: var(--sp-10); }
  .container { padding-inline: var(--sp-4); }
  .areas-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .hero-trust-divider { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ── 35. PRINT ────────────────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, #scroll-top, #orb-field { display: none; }
  body { background: #fff; color: #000; }
  .hero-section { background: #fff; }
  .page-hero { background: #fff; }
}
