/* ============================================================
   Help Me Checkout — Landing Page Styles
   Dark Green/Teal Theme — Custom Design
   ============================================================ */

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

/* ============================================================
   1. CSS Custom Properties
   ============================================================ */
:root {
  --primary: #6b9080;
  --primary-dark: #5a7d6e;
  --primary-light: #a4c3b2;
  --primary-lighter: #cce3de;
  --primary-lightest: #eaf4f4;
  --primary-cream: #f6fff8;

  --bg-base: #0d1b16;
  --bg-surface: #111e19;
  --bg-card: #131f1a;
  --bg-elevated: #1a2b24;
  --bg-hover: #1e3029;

  --border: #1e3029;
  --border-light: #2a4038;
  --border-active: #6b9080;

  --text-primary: #f6fff8;
  --text-secondary: #a4c3b2;
  --text-tertiary: #6b9080;
  --text-muted: #4a6b5d;

  --accent-amber: #c4a265;
  --accent-red: #ef4444;
  --accent-emerald: #34d399;

  --discord: #5865F2;

  --shadow-brand: rgba(107, 144, 128, 0.12);
  --shadow-brand-md: rgba(107, 144, 128, 0.20);
  --shadow-brand-lg: rgba(107, 144, 128, 0.30);

  --nav-bg: rgba(17, 30, 25, 0.60);
  --nav-bg-scrolled: rgba(17, 30, 25, 0.92);
  --nav-height: 64px;

  --container-max: 1100px;
  --container-padding: 24px;

  --t-fast: 200ms;
  --t-normal: 300ms;
  --t-slow: 500ms;

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ============================================================
   2. Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

.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;
}

/* ============================================================
   3. Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-padding { padding: 100px 0; }

/* ============================================================
   4. Typography & Shared
   ============================================================ */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--primary-lighter));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
}

/* Grain texture overlay on sections */
.grain-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   5. Buttons
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  transition: all var(--t-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow-brand-lg);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.btn-primary:hover::after {
  animation: shine 0.6s ease forwards;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  transition: all var(--t-fast);
}

.btn-secondary:hover {
  color: var(--text-primary);
  border-color: var(--primary);
  background: rgba(107, 144, 128, 0.06);
  transform: translateY(-2px);
}

.btn-primary svg, .btn-secondary svg { width: 18px; height: 18px; }

/* ============================================================
   6. Navigation
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-height);
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background-color var(--t-normal), border-color var(--t-normal), box-shadow var(--t-normal);
}

.navbar.scrolled {
  background: var(--nav-bg-scrolled);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
}

.navbar-logo-icon {
  width: 34px; height: 34px;
  object-fit: contain;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  transition: color var(--t-fast), background-color var(--t-fast);
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(107, 144, 128, 0.08);
}

.navbar-actions { display: flex; align-items: center; gap: 8px; }

.btn-nav-cta {
  display: none;
  padding: 8px 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  transition: all var(--t-fast);
}

.btn-nav-cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px var(--shadow-brand-md);
}

.hamburger-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: color var(--t-fast), background-color var(--t-fast);
}
.hamburger-btn:hover { color: var(--text-primary); background: rgba(107,144,128,0.08); }
.hamburger-btn svg { width: 20px; height: 20px; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: var(--bg-base);
  padding: 32px 24px;
  transform: translateX(100%);
  transition: transform var(--t-normal) ease;
  display: flex; flex-direction: column; gap: 4px;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-link {
  display: block;
  padding: 16px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: color var(--t-fast), background-color var(--t-fast);
}
.mobile-menu-link:hover { color: var(--text-primary); background: rgba(107,144,128,0.06); }

.mobile-menu-cta {
  margin-top: 24px;
  display: block; text-align: center;
  padding: 16px 24px;
  font-size: 1rem; font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--primary); color: #fff;
}

/* ============================================================
   7. Hero Section
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 40px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Floating glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float-orb 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: var(--primary);
  top: -10%; right: -5%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 350px; height: 350px;
  background: var(--primary-light);
  bottom: 5%; left: -8%;
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 200px; height: 200px;
  background: var(--primary-lighter);
  top: 40%; left: 30%;
  animation-delay: -5s;
  opacity: 0.08;
}


.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text { max-width: 560px; }

.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Stats Row */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero Visual — floating dashboard card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 28px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5), 0 0 60px -10px var(--shadow-brand-md);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
  transition: transform var(--t-slow);
}

.hero-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.hero-card-title {
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-card-badge {
  padding: 4px 10px;
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: rgba(52, 211, 153, 0.12);
  color: var(--accent-emerald);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.hero-mini-stat {
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.hero-mini-stat-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.hero-mini-stat-value {
  font-size: 1.125rem;
  font-weight: 700;
}

.hero-mini-stat-change {
  font-size: 0.625rem;
  color: var(--accent-emerald);
  margin-top: 2px;
}

/* Mini chart in hero card */
.hero-chart {
  width: 100%;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hero-chart svg { width: 100%; height: 100%; }

/* Floating accent badges around hero card */
.float-badge {
  position: absolute;
  padding: 10px 16px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  animation: float-badge 6s ease-in-out infinite;
  z-index: 3;
}

.float-badge-1 { top: 5%; right: -10%; animation-delay: 0s; }
.float-badge-2 { bottom: 10%; left: -5%; animation-delay: -2s; }

.float-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-emerald);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ============================================================
   8. Features — Bento Grid
   ============================================================ */
.features-section {
  position: relative;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 48px;
}

.bento-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}

.bento-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 12px 40px -8px var(--shadow-brand-md);
  transform: translateY(-2px);
}

/* Subtle inner glow on hover */
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.bento-card:hover::before { opacity: 0.5; }

.bento-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(107, 144, 128, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-light);
}

.bento-icon svg { width: 22px; height: 22px; }

.bento-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.bento-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Feature card visual decorations */
.bento-visual {
  margin-top: 24px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.bento-stat-row {
  display: flex; gap: 16px;
  margin-top: 16px;
}

.bento-stat {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-base);
  border: 1px solid var(--border);
}

.bento-stat-label { font-size: 0.625rem; color: var(--text-muted); }
.bento-stat-value { font-size: 1rem; font-weight: 700; margin-top: 2px; }

/* ============================================================
   9. How It Works — Vertical Timeline
   ============================================================ */
.timeline-section {
  position: relative;
  background: var(--bg-base);
}

.timeline {
  position: relative;
  margin-top: 56px;
  padding-left: 0;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--border), transparent);
}

.timeline-step {
  position: relative;
  padding-left: 60px;
  padding-bottom: 48px;
}

.timeline-step:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: 10px; top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}

.timeline-dot-inner {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.timeline-step-number {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.timeline-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.timeline-step p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
}

/* ============================================================
   10. Pricing — 3 Glassmorphism Cards
   ============================================================ */
.pricing-section {
  position: relative;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

.pricing-card {
  padding: 36px;
  border-radius: var(--radius-xl);
  background: rgba(19, 31, 26, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: all var(--t-fast);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  box-shadow: 0 20px 60px -12px var(--shadow-brand-md);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: rgba(19, 31, 26, 0.95);
  box-shadow: 0 0 50px -10px var(--shadow-brand-lg);
}

/* Glowing top edge on featured */
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 2px;
}

.featured-tag {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
}

.pricing-tier-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-tier-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 24px;
}

.pricing-features {
  display: flex; flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-feature {
  display: flex; align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-feature svg {
  width: 16px; height: 16px;
  flex-shrink: 0; margin-top: 2px;
  color: var(--primary);
}

.pricing-cta {
  display: block; width: 100%; text-align: center;
  padding: 14px;
  font-size: 0.875rem; font-weight: 600;
  border-radius: var(--radius-full);
  background: rgba(107, 144, 128, 0.08);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: all var(--t-fast);
}

.pricing-cta:hover {
  background: rgba(107, 144, 128, 0.15);
  color: var(--text-primary);
  border-color: var(--border-light);
}

.pricing-card.featured .pricing-cta {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}

.pricing-card.featured .pricing-cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 24px var(--shadow-brand-lg);
}

/* ============================================================
   11. FAQ Section — Full Width
   ============================================================ */
.faq-section {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
}

.faq-list {
  display: flex; flex-direction: column;
  gap: 8px;
  margin-top: 40px;
  max-width: 720px;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--t-fast);
}

.faq-item:has(.faq-button[aria-expanded="true"]) {
  border-color: var(--border-light);
}

.faq-button {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-size: 1rem; font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-card);
  cursor: pointer; text-align: left;
  transition: background-color var(--t-fast);
}
.faq-button:hover { background: var(--bg-elevated); }

.faq-icon {
  width: 20px; height: 20px;
  color: var(--text-muted);
  transition: transform var(--t-normal);
  flex-shrink: 0; margin-left: 16px;
}

.faq-button[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height var(--t-normal) ease;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  background: var(--bg-card);
}

/* ============================================================
   12. CTA — Full-Width Banner
   ============================================================ */
.cta-section {
  position: relative;
  background: var(--bg-base);
  overflow: hidden;
}

.cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(107,144,128,0.12), rgba(107,144,128,0.04));
  border: 1px solid var(--border);
  overflow: hidden;
}

/* Decorative glow behind CTA */
.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,144,128,0.12), transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  position: relative;
  z-index: 1;
}

/* ============================================================
   13. Footer
   ============================================================ */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
  text-align: center;
}

.footer-brand {
  display: flex; align-items: center;
  gap: 10px; font-weight: 700; font-size: 0.875rem;
}

.footer-links { display: flex; gap: 28px; }

.footer-link {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.footer-link:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-copyright {
  font-size: 0.6875rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ============================================================
   14. Animations
   ============================================================ */
@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.10s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.20s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.30s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .animate-on-scroll { opacity: 1; transform: none; }
}

/* ============================================================
   15. Responsive
   ============================================================ */

/* sm: 640px */
@media (min-width: 640px) {
  .section-title { font-size: 2.5rem; }
  .hero h1 { font-size: 3rem; }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* md: 768px */
@media (min-width: 768px) {
  .navbar-links { display: flex; }
  .hamburger-btn { display: none; }
  .btn-nav-cta { display: inline-flex; }
  .mobile-menu { display: none; }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero { text-align: left; }
  .hero h1 { font-size: 2.75rem; }

  .timeline::before { left: 50%; }

  .timeline-step { padding-left: 0; width: 50%; }
  .timeline-step:nth-child(odd) {
    padding-right: 48px;
    text-align: right;
    margin-left: 0;
  }
  .timeline-step:nth-child(even) {
    padding-left: 48px;
    margin-left: 50%;
  }
  .timeline-step:nth-child(odd) .timeline-dot {
    left: auto;
    right: -12px;
  }
  .timeline-step:nth-child(even) .timeline-dot {
    left: -12px;
  }
  .timeline-step:nth-child(odd) p {
    margin-left: auto;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* lg: 1024px */
@media (min-width: 1024px) {
  .section-title { font-size: 2.75rem; }
  .hero h1 { font-size: 3.25rem; }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid { grid-template-columns: repeat(3, 1fr); }

  .faq-list { max-width: 760px; }
}

/* xl: 1280px */
@media (min-width: 1280px) {
  :root { --container-max: 1140px; }
  .hero h1 { font-size: 3.5rem; }
}
