/* ── Reset & Variables ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --pink: #e84393; --pink-dark: #d63384; --pink-light: #fdf2f8;
  --purple: #6c5ce7; --purple-light: #f3f0ff;
  --coral: #ff6b6b; --teal: #00b894; --amber: #fdcb6e;
  --dark: #0f0f23; --dark-mid: #16163a;
  --text: #334155; --text-light: #64748b;
  --bg: #ffffff; --bg-alt: #f8f9fc; --border: #e2e8f0;
  --max-w: 1140px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--dark); line-height: 1.2; }
a { color: var(--pink); text-decoration: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Animations ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 30px rgba(232,67,147,0.15); } 50% { box-shadow: 0 0 60px rgba(232,67,147,0.3); } }

/* ── Nav ─────────────────────────────────────────── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.05); transition: all 0.3s; }
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
nav .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 800; color: var(--dark); display: flex; align-items: center; text-decoration: none; }
.nav-logo span { background: linear-gradient(135deg, var(--pink), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-logo img { height: 40px; width: 40px; margin-right: 10px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-light); font-size: 0.875rem; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--dark); }
.nav-links a.active { color: var(--dark); font-weight: 600; }

/* ── Buttons ─────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.875rem; text-decoration: none; transition: all 0.3s; border: none; cursor: pointer; font-family: 'Inter', system-ui, sans-serif; }
.btn-primary { background: var(--dark); color: white; box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.25); }
.btn-gradient { background: linear-gradient(135deg, var(--pink), var(--purple)); color: white !important; box-shadow: 0 4px 15px rgba(232,67,147,0.3); }
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,67,147,0.4); }
.btn-outline { border: 2px solid var(--border); color: var(--dark); background: white; }
.btn-outline:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: white; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
.btn-white { background: white; color: var(--dark); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }

/* ── Hero (Homepage) ─────────────────────────────── */
.hero { padding: 160px 0 80px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; left: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(232,67,147,0.08) 0%, transparent 70%); z-index: 0; }
.hero::after { content: ''; position: absolute; top: -100px; right: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(108,92,231,0.06) 0%, transparent 70%); z-index: 0; }
.hero .container { position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 50px; background: var(--pink-light); color: var(--pink); font-size: 0.8rem; font-weight: 600; margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); margin-bottom: 24px; font-weight: 800; letter-spacing: -0.02em; }
.hero h1 .gradient { background: linear-gradient(135deg, var(--pink), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.2rem; color: var(--text-light); max-width: 580px; margin: 0 auto 40px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero (Subpages) ────────────────────────── */
.page-hero { padding: 140px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -200px; left: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(232,67,147,0.06) 0%, transparent 70%); z-index: 0; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 20px; font-weight: 800; letter-spacing: -0.02em; }
.page-hero p { font-size: 1.15rem; color: var(--text-light); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── Screenshot showcase ─────────────────────────── */
.screenshot-showcase { margin-top: 64px; perspective: 1200px; }
.screenshot-frame {
  max-width: 1000px; margin: 0 auto; border-radius: 16px; overflow: hidden;
  box-shadow: 0 50px 100px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
  transform: rotateX(3deg); transform-origin: center top;
  animation: pulse-glow 4s ease-in-out infinite;
}
.screenshot-frame img { width: 100%; display: block; }
.screenshot-titlebar { height: 36px; background: linear-gradient(180deg, #f6f6f6 0%, #e8e8e8 100%); display: flex; align-items: center; padding: 0 14px; gap: 7px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }

/* ── Stats ────────────────────────────────────────── */
.stats { padding: 72px 0; background: var(--dark); position: relative; overflow: hidden; }
.stats::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(232,67,147,0.05) 0%, rgba(108,92,231,0.05) 100%); }
.stats .container { position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item .num { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 800; background: linear-gradient(135deg, #ff9a9e, #fad0c4, #ffecd2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-item .label { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-top: 6px; font-weight: 500; }

/* ── Section styles ───────────────────────────────── */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; font-weight: 800; letter-spacing: -0.02em; }
.section-header p { color: var(--text-light); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── Feature cards ───────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { padding: 32px; border-radius: 16px; border: 1px solid var(--border); background: white; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); text-decoration: none; display: block; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); border-color: transparent; }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.icon-pink { background: linear-gradient(135deg, #ffeef8, #ffe0f0); }
.icon-purple { background: linear-gradient(135deg, #f0edff, #e4dfff); }
.icon-teal { background: linear-gradient(135deg, #e0fff5, #ccffe8); }
.feature-card h3 { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.feature-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }
.feature-card .card-arrow { opacity: 0; transform: translateX(-8px); transition: all 0.3s; color: var(--pink); font-size: 0.85rem; font-weight: 600; margin-top: 16px; display: flex; align-items: center; gap: 4px; }
.feature-card:hover .card-arrow { opacity: 1; transform: translateX(0); }

/* ── Screenshot ribbon ───────────────────────────── */
.ribbon { padding: 100px 0; overflow: hidden; position: relative; }
.ribbon-dark { background: linear-gradient(135deg, #0f0f23 0%, #1a1a40 50%, #0f0f23 100%); color: white; }
.ribbon-dark h2 { color: white; }
.ribbon-dark p { color: rgba(255,255,255,0.65); }
.ribbon-dark .check-list li { color: rgba(255,255,255,0.8); }
.ribbon-dark .check-list li::before { color: var(--teal); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-text h2 { font-size: 2.2rem; margin-bottom: 20px; font-weight: 800; letter-spacing: -0.02em; }
.split-text p { color: var(--text-light); margin-bottom: 20px; font-size: 1.05rem; }
.check-list { list-style: none; margin-top: 12px; }
.check-list li { padding: 8px 0; font-size: 0.95rem; display: flex; align-items: flex-start; gap: 10px; }
.check-list li::before { content: "\2713"; color: var(--teal); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }

.screenshot-card {
  border-radius: 16px; overflow: hidden; cursor: zoom-in;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
}
.screenshot-card:hover { transform: scale(1.03); box-shadow: 0 40px 80px rgba(0,0,0,0.35); }
.screenshot-card img { width: 100%; display: block; }

/* ── Testimonial strip ───────────────────────────── */
.testimonial-strip { padding: 80px 0; background: var(--bg-alt); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 900px; margin: 0 auto; }
.testimonial-card { background: white; border-radius: 16px; padding: 36px; border: 1px solid var(--border); position: relative; }
.testimonial-card::before { content: "\201C"; font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--pink); opacity: 0.15; position: absolute; top: 12px; left: 24px; line-height: 1; }
.testimonial-card blockquote { font-size: 1.05rem; line-height: 1.7; color: var(--dark); font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--pink-light), var(--purple-light)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: var(--pink); }
.testimonial-author .name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.testimonial-author .role { font-size: 0.8rem; color: var(--text-light); }

/* ── Steps (How It Works) ────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 960px; margin: 0 auto; counter-reset: step; }
.step-card { text-align: center; padding: 40px 28px; border-radius: 16px; background: white; border: 1px solid var(--border); position: relative; transition: all 0.4s; }
.step-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); border-color: transparent; }
.step-number { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--purple)); color: white; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step-card h3 { font-family: 'Inter', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.step-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }
.step-connector { display: none; } /* visible via pseudo-element on desktop */

/* ── Before / After ──────────────────────────────── */
.before-after { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; max-width: 900px; margin: 0 auto; align-items: stretch; }
.ba-card { padding: 40px 36px; border-radius: 16px; }
.ba-before { background: #fef2f2; border: 1px solid #fecaca; }
.ba-after { background: #f0fdf4; border: 1px solid #bbf7d0; }
.ba-card h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.ba-before h3 { color: var(--coral); }
.ba-after h3 { color: var(--teal); }
.ba-card ul { list-style: none; }
.ba-card ul li { padding: 10px 0; font-size: 0.95rem; display: flex; align-items: flex-start; gap: 10px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.ba-card ul li:last-child { border-bottom: none; }
.ba-before ul li::before { content: "\2717"; color: var(--coral); font-weight: 700; flex-shrink: 0; }
.ba-after ul li::before { content: "\2713"; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.ba-arrow { display: flex; align-items: center; justify-content: center; padding: 0 24px; font-size: 2rem; color: var(--text-light); }

/* ── FAQ ──────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 24px 0; font-size: 1.05rem; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Inter', sans-serif; transition: color 0.2s; }
.faq-question:hover { color: var(--pink); }
.faq-question .icon { font-size: 1.4rem; transition: transform 0.3s; color: var(--text-light); }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 24px; }
.faq-answer p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

/* ── Pricing ──────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 820px; margin: 0 auto; }
.pricing-card { border-radius: 16px; padding: 40px 36px; position: relative; transition: all 0.3s; }
.pricing-card-standard { background: white; border: 1px solid var(--border); }
.pricing-card-standard:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.06); transform: translateY(-4px); }
.pricing-card-founder { background: var(--dark); color: white; border: 2px solid var(--pink); box-shadow: 0 20px 60px rgba(232,67,147,0.2); }
.pricing-card-founder:hover { transform: translateY(-4px); box-shadow: 0 30px 80px rgba(232,67,147,0.25); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--pink), var(--purple)); color: white; padding: 5px 20px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap; }
.pricing-card .price { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; line-height: 1; }
.pricing-card .price-sub { font-size: 0.85rem; opacity: 0.6; margin-top: 4px; }
.pricing-card .price-detail { font-size: 0.8rem; opacity: 0.5; margin-top: 2px; }
.pricing-card .divider { height: 1px; background: currentColor; opacity: 0.1; margin: 24px 0; }
.pricing-features { list-style: none; }
.pricing-features li { padding: 6px 0; font-size: 0.875rem; display: flex; align-items: flex-start; gap: 10px; }
.pricing-features li::before { content: "\2713"; font-weight: 700; flex-shrink: 0; }
.pricing-card-founder .pricing-features li::before { color: var(--teal); }
.pricing-card-standard .pricing-features li::before { color: var(--pink); }
.pricing-card-founder .pricing-features li { color: rgba(255,255,255,0.8); }
.pricing-card .price .strikethrough { font-size: 1.4rem; text-decoration: line-through; opacity: 0.4; font-weight: 400; vertical-align: middle; margin-right: 8px; }
.spots-left { display: inline-flex; align-items: center; gap: 6px; background: rgba(232,67,147,0.1); color: var(--pink); padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; margin-top: 16px; }
.spots-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); animation: pulse-glow 2s infinite; }

.roi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.roi-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 28px 20px; text-align: center; }
.roi-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); font-weight: 600; margin-bottom: 8px; }
.roi-number { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; }
.roi-number.positive { color: var(--teal); }
.roi-number.negative { color: var(--coral); }
.roi-desc { font-size: 0.8rem; color: var(--text-light); margin-top: 6px; }
.roi-value { font-size: 0.75rem; font-weight: 600; margin-top: 12px; }
.roi-value.positive { color: var(--teal); }
.roi-value.negative { color: var(--coral); }

/* ── Templates ────────────────────────────────────── */
.templates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.template-card { padding: 24px; text-align: center; border-radius: 14px; background: white; border: 1px solid var(--border); transition: all 0.3s; cursor: default; }
.template-card:hover { border-color: var(--pink); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(232,67,147,0.1); }
.template-card .emoji { font-size: 1.8rem; margin-bottom: 8px; }
.template-card h3 { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.template-card p { font-size: 0.78rem; color: var(--text-light); }

/* ── CTA ──────────────────────────────────────────── */
.cta { text-align: center; padding: 100px 24px; background: linear-gradient(135deg, #fdf2f8 0%, #f3f0ff 50%, #e0fff5 100%); position: relative; }
.cta h2 { font-size: 2.5rem; margin-bottom: 20px; font-weight: 800; }
.cta p { color: var(--text-light); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; font-size: 1.1rem; }

/* ── Lightbox ─────────────────────────────────────── */
.lightbox { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1000; background: rgba(0,0,0,0.85); backdrop-filter: blur(10px); align-items: center; justify-content: center; cursor: zoom-out; padding: 40px; }
.lightbox.active { display: flex; animation: fadeIn 0.3s ease; }
.lightbox img { max-width: 95vw; max-height: 90vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: 20px; right: 28px; color: white; font-size: 2rem; cursor: pointer; opacity: 0.7; transition: opacity 0.2s; font-weight: 300; }
.lightbox-close:hover { opacity: 1; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Scroll-driven zoom for screenshots — desktop only */
@media (min-width: 769px) {
  .scroll-zoom {
    will-change: transform;
    transform: scale(var(--zoom, 0.7));
    transition: transform 0.05s linear;
  }
}
@media (max-width: 768px) {
  .scroll-zoom {
    transform: none !important;
  }
}

/* ── Feature detail sections ─────────────────────── */
.feature-detail { padding: 80px 0; }
.feature-detail:nth-child(even) { background: var(--bg-alt); }
.feature-detail .split-text h2 { font-size: 2rem; }

/* ── Reassurance strip ───────────────────────────── */
.reassurance { padding: 60px 0; background: var(--bg-alt); }
.reassurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; text-align: center; }
.reassurance-item { padding: 24px; }
.reassurance-item .icon { font-size: 2rem; margin-bottom: 12px; }
.reassurance-item h3 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.reassurance-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ── Footer ───────────────────────────────────────── */
footer { padding: 48px 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.footer-brand span { background: linear-gradient(135deg, var(--pink), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-tagline { font-size: 0.85rem; color: var(--text-light); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 12px; }
.footer-col a { display: block; font-size: 0.875rem; color: var(--text); text-decoration: none; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom { text-align: center; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-light); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .roi-grid { grid-template-columns: repeat(2, 1fr); }
  .before-after { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); padding: 12px 0; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .features { grid-template-columns: 1fr; }
  .templates-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .reassurance-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .page-hero h1 { font-size: 2rem; }
  .screenshot-frame { transform: none; }
  .footer-links { grid-template-columns: 1fr; }
}
