/* ============================================================
   SocialPal Marketing Site — Dual Palette Design System
   ============================================================ */

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

/* ── Palette A — "Warm Blush" ─────────────────────────────── */
:root, [data-palette="a"] {
  --c1: #EFC7C2; /* pale pink — light bg */
  --c2: #FFE5D4; /* peach cream — cards */
  --c3: #BFD3C1; /* sage green — accent soft */
  --c4: #68A691; /* teal green — primary CTA */
  --c5: #694F5D; /* plum — headings/dark */

  --bg: #FFFAF8;
  --bg-alt: #FFF5F0;
  --card: #ffffff;
  --card-border: rgba(105, 79, 93, 0.08);
  --text: #3D2C35;
  --text-secondary: #7A6370;
  --text-muted: #A8919D;
  --primary: #68A691;
  --primary-hover: #578E7C;
  --primary-glow: rgba(104, 166, 145, 0.3);
  --heading: #694F5D;
  --accent-soft: #EFC7C2;
  --accent-card: #FFE5D4;
  --gradient-hero: linear-gradient(135deg, #EFC7C2 0%, #FFE5D4 40%, #BFD3C1 100%);
  --gradient-cta: linear-gradient(135deg, #68A691, #4E8A76);
  --gradient-blob1: radial-gradient(circle, rgba(239,199,194,0.4) 0%, transparent 70%);
  --gradient-blob2: radial-gradient(circle, rgba(191,211,193,0.35) 0%, transparent 70%);
  --gradient-blob3: radial-gradient(circle, rgba(255,229,212,0.3) 0%, transparent 70%);
  --nav-bg: rgba(255,250,248,0.85);
  --footer-bg: #694F5D;
  --footer-text: #EFC7C2;
}

/* ── Palette B — "Fresh Citrus" ───────────────────────────── */
[data-palette="b"] {
  --c1: #CAE7B9; /* mint green */
  --c2: #F3DE8A; /* golden yellow */
  --c3: #EB9486; /* coral */
  --c4: #7E7F9A; /* slate purple */
  --c5: #97A7B3; /* cool gray */

  --bg: #F9FBF7;
  --bg-alt: #F4F8F0;
  --card: #ffffff;
  --card-border: rgba(126, 127, 154, 0.08);
  --text: #2D2E3F;
  --text-secondary: #5A5B72;
  --text-muted: #8C8DA3;
  --primary: #EB9486;
  --primary-hover: #D87E70;
  --primary-glow: rgba(235, 148, 134, 0.3);
  --heading: #7E7F9A;
  --accent-soft: #CAE7B9;
  --accent-card: #F3DE8A;
  --gradient-hero: linear-gradient(135deg, #CAE7B9 0%, #F3DE8A 40%, #EB9486 100%);
  --gradient-cta: linear-gradient(135deg, #EB9486, #D87E70);
  --gradient-blob1: radial-gradient(circle, rgba(202,231,185,0.4) 0%, transparent 70%);
  --gradient-blob2: radial-gradient(circle, rgba(235,148,134,0.3) 0%, transparent 70%);
  --gradient-blob3: radial-gradient(circle, rgba(243,222,138,0.35) 0%, transparent 70%);
  --nav-bg: rgba(249,251,247,0.85);
  --footer-bg: #7E7F9A;
  --footer-text: #CAE7B9;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Sora', 'Inter', sans-serif; color: var(--heading); line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }

p { color: var(--text-secondary); }
.lead { font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.7; max-width: 600px; }
.small { font-size: 0.85rem; color: var(--text-muted); }
.tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); }
.highlight { color: var(--primary); }

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-hover); }

/* ── Container ────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; }
.container-lg { max-width: 1400px; }

/* ── Sections ─────────────────────────────────────────────── */
section { padding: 100px 0; position: relative; }
section.alt { background: var(--bg-alt); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { margin: 16px auto 0; max-width: 560px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 12px;
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700;
  cursor: pointer; border: none; transition: all 0.3s ease;
  text-decoration: none; position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gradient-cta); color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
  color: #fff;
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent; color: var(--text);
  border: 2px solid var(--card-border);
  padding: 12px 30px;
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.9rem; border-radius: 10px; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; border-radius: 14px; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  padding: 16px 0;
}
.nav.scrolled {
  padding: 10px 0;
  border-bottom-color: var(--card-border);
  box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 800;
  color: var(--heading); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img { height: 32px; border-radius: 6px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.95rem; font-weight: 600; color: var(--text-secondary);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-actions { display: flex; gap: 12px; align-items: center; }

/* Mobile nav */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text);
  position: absolute; left: 8px; transition: all 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 12px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg); top: 19px; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg); top: 19px; }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 999; padding: 100px 32px 32px;
  flex-direction: column; gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.5rem; font-weight: 700; color: var(--heading);
  text-decoration: none; font-family: 'Sora', sans-serif;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 100px; position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-content h1 { margin-bottom: 24px; }
.hero-content .lead { margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-trust { margin-top: 20px; font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }

.hero-visual { position: relative; z-index: 2; }
.hero-mockup {
  width: 100%; border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
  background: var(--card); position: relative;
}
.hero-mockup img { width: 100%; display: block; }

/* Browser chrome mockup */
.browser-frame {
  background: var(--card); border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
}
.browser-bar {
  height: 40px; background: var(--bg-alt); display: flex;
  align-items: center; gap: 8px; padding: 0 16px;
  border-bottom: 1px solid var(--card-border);
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-dot:nth-child(1) { background: #FF5F57; }
.browser-dot:nth-child(2) { background: #FFBD2E; }
.browser-dot:nth-child(3) { background: #28CA41; }
.browser-url {
  flex: 1; margin-left: 12px; height: 24px; border-radius: 6px;
  background: var(--bg); display: flex; align-items: center;
  padding: 0 12px; font-size: 0.75rem; color: var(--text-muted);
}
.browser-body { position: relative; overflow: hidden; }
.browser-body img { width: 100%; display: block; }

/* Floating blobs */
.blob {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); z-index: 0;
}
.blob-1 { width: 500px; height: 500px; background: var(--gradient-blob1); top: -100px; left: -150px; }
.blob-2 { width: 400px; height: 400px; background: var(--gradient-blob2); bottom: -50px; right: -100px; }
.blob-3 { width: 350px; height: 350px; background: var(--gradient-blob3); top: 30%; right: 10%; }

/* Cursor glow on hero */
.hero-glow {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; z-index: 1;
  transform: translate(-50%, -50%); opacity: 0;
  transition: opacity 0.3s ease;
}

/* ── Platform Logos ───────────────────────────────────────── */
.logos-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap; padding: 60px 0;
}
.logos-bar p { width: 100%; text-align: center; font-size: 0.9rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; }
.logo-item {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.1rem; color: var(--text-muted);
  transition: all 0.3s ease;
}
.logo-item:hover { color: var(--text); transform: translateY(-2px); }
.logo-item svg { width: 28px; height: 28px; }

/* ── How It Works ─────────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; position: relative;
}
.steps-line {
  position: absolute; top: 48px; left: 16%; right: 16%;
  height: 3px; background: var(--accent-soft);
  z-index: 0;
}
.steps-line-fill {
  height: 100%; width: 0; background: var(--primary);
  border-radius: 2px; transition: width 1.5s ease;
}
.step-card {
  text-align: center; position: relative; z-index: 1;
  padding: 32px 20px;
}
.step-number {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.step-card h3 { margin-bottom: 8px; color: var(--heading); }
.step-card p { font-size: 0.95rem; }

/* ── Feature Cards ────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 32px; position: relative;
  transition: all 0.4s ease; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary-glow), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: var(--primary);
}
.feature-card:hover::before { opacity: 1; }
.feature-card > * { position: relative; z-index: 1; }

.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--accent-soft); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--primary);
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 0.95rem; line-height: 1.6; }
.feature-card .feature-tags { margin-top: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.feature-tag {
  padding: 4px 12px; border-radius: 20px; font-size: 0.75rem;
  font-weight: 600; background: var(--bg-alt); color: var(--text-muted);
}

/* ── Screenshot Section (alternating) ─────────────────────── */
.showcase {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.showcase.reverse { direction: rtl; }
.showcase.reverse > * { direction: ltr; }
.showcase-content h2 { margin-bottom: 16px; }
.showcase-content p { margin-bottom: 20px; }
.showcase-list { list-style: none; margin-top: 24px; }
.showcase-list li {
  padding: 8px 0; display: flex; align-items: center; gap: 12px;
  font-weight: 600; color: var(--text);
}
.showcase-list li svg { color: var(--primary); flex-shrink: 0; }
.showcase-image {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.showcase-image img { width: 100%; display: block; }

/* ── Stats Counter ────────────────────────────────────────── */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center; padding: 60px 0;
}
.stat-item { padding: 24px; }
.stat-number {
  font-family: 'Sora', sans-serif; font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800; color: var(--primary); line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); }

/* ── Checklist ────────────────────────────────────────────── */
.checklist {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px 48px; max-width: 700px; margin: 0 auto;
}
.checklist li {
  list-style: none; display: flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: 1rem; padding: 8px 0;
}
.check-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--gradient-cta); border-radius: 24px;
  padding: 80px 60px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1), transparent 60%);
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary {
  background: #fff; color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-banner .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 48px;
}
.pricing-toggle span { font-weight: 600; font-size: 0.95rem; color: var(--text-muted); }
.pricing-toggle span.active { color: var(--text); }
.toggle-switch {
  width: 56px; height: 30px; border-radius: 15px;
  background: var(--accent-soft); position: relative;
  cursor: pointer; transition: background 0.3s;
}
.toggle-switch.active { background: var(--primary); }
.toggle-knob {
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; position: absolute; top: 3px; left: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15); transition: transform 0.3s;
}
.toggle-switch.active .toggle-knob { transform: translateX(26px); }
.save-badge {
  padding: 4px 10px; border-radius: 20px; font-size: 0.75rem;
  font-weight: 700; background: var(--accent-card); color: var(--heading);
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}
.price-card {
  background: var(--card); border: 2px solid var(--card-border);
  border-radius: 20px; padding: 40px 32px; position: relative;
  transition: all 0.4s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.price-card.popular {
  border-color: var(--primary);
  box-shadow: 0 20px 60px var(--primary-glow);
  transform: scale(1.04);
}
.price-card.popular:hover { transform: scale(1.04) translateY(-4px); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-cta); color: #fff; padding: 6px 20px;
  border-radius: 20px; font-size: 0.8rem; font-weight: 700;
  white-space: nowrap;
}
.price-card h3 { margin-bottom: 8px; }
.price-card .price-desc { font-size: 0.9rem; margin-bottom: 20px; }
.price-amount {
  font-family: 'Sora', sans-serif; font-size: 3rem;
  font-weight: 800; color: var(--heading); line-height: 1;
  margin-bottom: 4px;
}
.price-amount span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.price-period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; }
.price-features { list-style: none; margin-bottom: 32px; }
.price-features li {
  padding: 8px 0; display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: var(--text-secondary);
}
.price-features li svg { color: var(--primary); flex-shrink: 0; }
.price-features li.disabled { color: var(--text-muted); }
.price-features li.disabled svg { color: var(--text-muted); opacity: 0.3; }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 60px; }
.compare-table th, .compare-table td {
  padding: 14px 20px; text-align: center; border-bottom: 1px solid var(--card-border);
  font-size: 0.95rem;
}
.compare-table th { font-weight: 700; color: var(--heading); background: var(--bg-alt); }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; font-weight: 600; }
.compare-table td svg { margin: 0 auto; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--card-border);
  padding: 20px 0; cursor: pointer;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1.05rem; font-weight: 700; color: var(--heading);
}
.faq-question svg { transition: transform 0.3s; flex-shrink: 0; color: var(--text-muted); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-secondary); line-height: 1.7; font-size: 0.95rem;
}
.faq-item.open .faq-answer { max-height: 300px; padding-top: 12px; }

/* ── About ────────────────────────────────────────────────── */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  text-align: center; padding: 40px 24px;
  border-radius: 16px; background: var(--card);
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.value-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--accent-soft); display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.5rem;
}
.value-card h3 { margin-bottom: 10px; }

/* ── Contact ──────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }
.contact-detail {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 0; font-weight: 600;
}
.contact-detail svg { color: var(--primary); }

.contact-form {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.9rem; font-weight: 600;
  color: var(--text); margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 2px solid var(--card-border); background: var(--bg);
  font-family: inherit; font-size: 1rem; color: var(--text);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--footer-bg); color: var(--footer-text);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 60px;
}
.footer-brand { font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; }
.footer-desc { font-size: 0.9rem; opacity: 0.7; line-height: 1.6; }
.footer h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; opacity: 0.5; color: var(--footer-text); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--footer-text); opacity: 0.75; font-size: 0.9rem; text-decoration: none; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; color: var(--footer-text); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; text-align: center;
  font-size: 0.85rem; opacity: 0.5;
}

/* ── Animations (GSAP targets) ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-scale { opacity: 0; transform: scale(0.9); }

/* Floating animation (always on) */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}
@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}
.blob { animation: blob-drift 15s ease-in-out infinite; }
.blob-2 { animation-delay: -5s; animation-duration: 18s; }
.blob-3 { animation-delay: -10s; animation-duration: 12s; }
.float { animation: float 6s ease-in-out infinite; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content .lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 600px; margin: 40px auto 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase { grid-template-columns: 1fr; }
  .showcase.reverse { direction: ltr; }
  .showcase-image { max-width: 600px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .price-card.popular { transform: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-line { display: none; }
  .checklist { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.gap-2 { gap: 16px; }
.gap-4 { gap: 32px; }

/* Page header for inner pages */
.page-hero {
  padding: 160px 0 80px; text-align: center;
  background: var(--bg-alt); position: relative; overflow: hidden;
}
.page-hero .blob { opacity: 0.5; }
