/* ============================================================
   STRATEGOS AI — Design System
   ============================================================ */

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

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  --bg:          #060b16;
  --bg-2:        #0b1220;
  --bg-3:        #0f1a2e;
  --surface:     rgba(255,255,255,0.045);
  --surface-hov: rgba(255,255,255,0.08);
  --border:      rgba(255,255,255,0.09);
  --border-glow: rgba(26,110,255,0.4);

  --blue:        #1a6eff;
  --blue-light:  #4d92ff;
  --blue-dark:   #0e4db5;
  --gold:        #f5c542;
  --gold-light:  #ffd97d;
  --green:       #22c55e;

  --text:        #e8edf7;
  --text-muted:  #8a98b8;
  --text-dim:    #5a6a8a;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   36px;

  --shadow-blue: 0 0 40px rgba(26,110,255,0.25);
  --shadow-gold: 0 0 30px rgba(245,197,66,0.2);

  --nav-h:       72px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
p  { font-size: clamp(0.95rem, 1.5vw, 1.1rem); color: var(--text-muted); }

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 0.75rem;
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
section { padding: clamp(5rem, 10vw, 8rem) 0; }
.text-center { text-align: center; }

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

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(26,110,255,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,110,255,0.6);
}
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  border-color: var(--blue);
  background: var(--surface-hov);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #e8a800 100%);
  color: #060b16;
  box-shadow: 0 4px 24px rgba(245,197,66,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,197,66,0.55);
}

/* ── Glassmorphism Card ────────────────────────────────────── */
.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.glass:hover {
  border-color: rgba(26,110,255,0.3);
  background: var(--surface-hov);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}

/* ── Divider ───────────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 99px;
  margin: 1.25rem auto;
}
.divider-left { margin-left: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(6,11,22,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width var(--transition);
  border-radius: 99px;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switcher */
.lang-switch {
  display: flex;
  gap: 0.25rem;
  background: var(--surface);
  padding: 0.25rem;
  border-radius: 50px;
  border: 1px solid var(--border);
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
}
.lang-btn.active {
  background: var(--blue);
  color: #fff;
}
.lang-btn:hover:not(.active) {
  color: var(--text);
  background: var(--surface-hov);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  transition: var(--transition);
}
.hamburger:hover { background: var(--surface-hov); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(6,11,22,0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--text); }
.mobile-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero-bg.png') center center / cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(6,11,22,0.2) 0%,
    rgba(6,11,22,0.4) 60%,
    rgba(6,11,22,1) 100%);
  z-index: 1;
}
/* Animated mesh gradient */
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 50%, rgba(26,110,255,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 85% 30%, rgba(245,197,66,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(26,110,255,0.08) 0%, transparent 70%);
  animation: meshFloat 8s ease-in-out infinite alternate;
}
@keyframes meshFloat {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.04) translateY(-20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(26,110,255,0.12);
  border: 1px solid rgba(26,110,255,0.3);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 1.5rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.05em;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}
.hero h1 {
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 2.25rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
}
.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 500;
}
.hero-stat-num span { color: var(--gold); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.1em;
  animation: scrollBob 2.5s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
.scroll-mouse {
  width: 22px; height: 35px;
  border: 2px solid var(--border);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px; height: 7px;
  background: var(--blue-light);
  border-radius: 99px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(8px); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.trust-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
}
.trust-icon {
  font-size: 1.3rem;
}

/* ============================================================
   VALUE PROPS
   ============================================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.value-card {
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: var(--transition);
}
.value-card:hover::before { opacity: 1; }
.value-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,110,255,0.2), rgba(26,110,255,0.05));
  border: 1px solid rgba(26,110,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.value-card.gold-accent .value-icon {
  background: linear-gradient(135deg, rgba(245,197,66,0.2), rgba(245,197,66,0.05));
  border-color: rgba(245,197,66,0.2);
}
.value-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}
.value-card p { font-size: 0.95rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-bg { background: var(--bg-2); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}
.step {
  padding: 2rem 1.75rem;
  position: relative;
  text-align: center;
}
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(26,110,255,0.12);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.step:hover .step-num { color: rgba(26,110,255,0.25); }
.step-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: 0.6rem; }
.step p { font-size: 0.95rem; }

/* connector line */
.steps-connector {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
  z-index: -1;
  display: none;
}
@media (min-width: 800px) { .steps-connector { display: block; } }

/* ============================================================
   PRICING / PHASES
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: start;
}
.pricing-card {
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--blue);
  background: linear-gradient(160deg, rgba(26,110,255,0.1), rgba(26,110,255,0.03));
  box-shadow: var(--shadow-blue);
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}
.pricing-badge {
  display: inline-block;
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: 'Outfit', sans-serif;
}
.phase1 .pricing-badge { background: rgba(34,197,94,0.15); color: var(--green); border: 1px solid rgba(34,197,94,0.25); }
.phase2 .pricing-badge { background: rgba(26,110,255,0.15); color: var(--blue-light); border: 1px solid rgba(26,110,255,0.3); }
.phase3 .pricing-badge { background: rgba(245,197,66,0.15); color: var(--gold); border: 1px solid rgba(245,197,66,0.3); }

.pricing-phase {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0.4rem;
}
.pricing-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.price-from {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
}
.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
}
.price-amount span { font-size: 1.5rem; }
.price-period {
  font-size: 0.85rem;
  color: var(--text-dim);
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.pricing-feature::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.pricing-timeline {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.pricing-timeline::before { content: '⏱'; }

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.audience-bg { background: var(--bg-3); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.audience-card {
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.audience-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.audience-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.audience-card p { font-size: 0.88rem; }

/* ============================================================
   ABOUT / TRUST
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-map {
  font-size: 5rem;
  opacity: 0.8;
}
.about-ping {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 50px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  font-family: 'Outfit', sans-serif;
}
.ping-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; line-height: 1.8; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-bg { background: var(--bg-2); }
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(26,110,255,0.3); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  gap: 1rem;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--blue-light); }
.faq-chevron {
  font-size: 1.2rem;
  color: var(--text-dim);
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--blue);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(26,110,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  margin-bottom: 1rem;
  position: relative;
}
.cta-section p {
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.contact-card {
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.contact-card-icon {
  font-size: 2rem;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card h3 { font-size: 1rem; }
.contact-card p { font-size: 0.88rem; }
.contact-card a {
  font-size: 0.9rem;
  color: var(--blue-light);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-card a:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 3rem 0 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 1.5rem;
  text-align: center;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.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; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-right .btn { display: none; }
  .hero-stats { gap: 1.5rem; }
  .pricing-card.featured { transform: none; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .trust-grid { gap: 1rem; }
  .trust-item span:last-child { font-size: 0.8rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
