/* ===== LBM — Design System v5 ===== */
/* Wispr structure + Wonderbly warmth. Line illustrations. Pill components everywhere. Carousel. */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Figtree:wght@400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #FFFDF7;
    --bg-alt: #FBF7EF;
    --text: #1a1a1a;
    --text-mid: #555;
    --text-light: #888;
    --accent: #1A7A6D;
    --accent-soft: #E3F0ED;
    --lilac: #C4A6E8;
    --lilac-soft: #EDE4F7;
    --lilac-dark: #9B7BC7;
    --warm: #F0D7C4;
    --warm-soft: #FFF5ED;
    --gold: #C4973B;
    --border: #E8E2D6;
    --dark: #1a1a1a;
    --dark-card: #252525;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Figtree', sans-serif;
    color: var(--text);
    background: var(--bg);
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--text);
}
h1 { font-size: clamp(48px, 8vw, 88px); }
h2 { font-size: clamp(40px, 6vw, 72px); }
h3 { font-size: clamp(24px, 3vw, 32px); }
p { line-height: 1.65; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 32px; }

/* ===== REVEAL ===== */
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 20px 0; transition: all 0.3s ease; }
.header.scrolled { background: rgba(255,253,247,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 14px 0; }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-link { font-family: 'Figtree', sans-serif; font-size: 14px; font-weight: 500; color: var(--text); text-decoration: none; transition: opacity 0.2s ease; }
.header-link:hover { opacity: 0.6; }
.logo { font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 18px; color: var(--text); text-decoration: none; }
.header-cta { font-family: 'Figtree', sans-serif; font-weight: 600; font-size: 14px; padding: 10px 20px; background: transparent; color: var(--text); border: 2.25px solid var(--text); border-radius: 8px; text-decoration: none; transition: all 0.2s ease; }
.header-cta:hover { background: var(--text); color: white; }

/* Mobile header right group */
.header-mobile-right { display: none; align-items: center; gap: 12px; }
.header-cta-mobile { display: none; }

/* Hamburger — hidden on desktop */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; z-index: 101; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO — "Grow love" + Book ===== */
.hero { padding: 160px 0 100px; min-height: 100vh; display: flex; align-items: center; }
.hero .container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }

.hero-left { display: flex; flex-direction: column; }
.hero-eyebrow { font-family: 'Figtree', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; display: block; }

.hero-statement { position: relative; margin-bottom: 28px; display: inline-block; }
.hero-big-text { font-size: clamp(72px, 12vw, 140px); line-height: 0.85; letter-spacing: -0.04em; }
.hero-accent-word { color: var(--lilac); position: relative; display: inline-block; }

.scribble-underline { position: absolute; bottom: -8px; left: -5%; width: 110%; height: 20px; }
.scribble-underline path { stroke-dasharray: 300; animation: drawLine 1.5s ease-out 0.5s both; }
.scribble-top-right { position: absolute; top: -20px; right: -40px; animation: scribbleFadeIn 0.8s ease-out 1s both; }
.scribble-bottom-left { position: absolute; bottom: -10px; left: -30px; animation: scribbleFadeIn 0.8s ease-out 1.2s both; }
@keyframes drawLine { from { stroke-dashoffset: 300; } to { stroke-dashoffset: 0; } }
@keyframes scribbleFadeIn { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }

.hero-sub { font-size: 19px; color: var(--text-mid); max-width: 480px; margin-bottom: 36px; line-height: 1.7; }
.hero-cta { display: inline-block; align-self: flex-start; font-family: 'Figtree', sans-serif; font-weight: 600; font-size: 14px; padding: 12px 24px; background: var(--lilac); color: var(--text); border: 2.25px solid var(--text); border-radius: 8px; text-decoration: none; transition: all 0.25s ease; }
.hero-cta:hover { transform: translateY(-2px); background: var(--lilac-dark); }
.hero-note { margin-top: 16px; font-size: 14px; color: var(--text-light); }

/* Book Visual */
.hero-right { display: flex; justify-content: center; position: relative; }

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 380px;
    max-width: 100%;
}
.hero-photo-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 4px 16px rgba(0,0,0,0.08);
    transform: rotate(2deg);
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none;
}
.hero-photo-frame.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}
.hero-photo-frame:hover {
    transform: rotate(0deg) translateY(-6px);
}
.hero-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/4;
    object-position: center 40%;
}
.hero-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}
.carousel-dot.active {
    background: var(--lilac);
    transform: scale(1.3);
}

/* Real Customer Section */
.real-customer { padding: 100px 0; overflow: hidden; }

/* Scrolling photo gallery */
.action-gallery {
    margin-top: 50px;
    overflow: hidden;
    width: 100%;
}
.action-gallery-track {
    display: flex;
    gap: 20px;
    animation: scrollGallery 40s linear infinite;
    width: max-content;
}
.action-gallery-item {
    flex-shrink: 0;
    width: 300px;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.action-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.action-gallery-item:hover img {
    transform: scale(1.05);
}
@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.real-customer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.real-customer-card {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}
.real-customer-card:hover {
    transform: translateY(-4px);
}
.real-customer-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}
.real-customer-caption {
    padding: 16px 20px;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1rem;
    color: #444;
    text-align: center;
}

.book { width: 260px; position: relative; }
.book-cover {
    width: 100%; aspect-ratio: 3/4;
    background: linear-gradient(155deg, #2D5A4E 0%, #1A7A6D 50%, #156B5E 100%);
    border-radius: 3px 14px 14px 3px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 40px 28px; color: white; text-align: center; position: relative;
    box-shadow: 14px 14px 48px rgba(0,0,0,0.15), -2px 0 8px rgba(0,0,0,0.04), inset -3px 0 12px rgba(255,255,255,0.05);
    transform: perspective(800px) rotateY(-6deg);
    transition: transform 0.4s ease;
}
.book-cover:hover { transform: perspective(800px) rotateY(-3deg) translateY(-4px); }

.book-cover::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 16px; background: linear-gradient(90deg, rgba(0,0,0,0.2), rgba(0,0,0,0.05), transparent); border-radius: 3px 0 0 3px; }
.book-pages { position: absolute; right: -6px; top: 4px; bottom: 4px; width: 6px; background: linear-gradient(90deg, #f5f0e8, #e8e2d6); border-radius: 0 2px 2px 0; box-shadow: 1px 0 4px rgba(0,0,0,0.05); }

.book-pre { font-family: 'Figtree', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.5; margin-bottom: 20px; }
.book-name { font-family: 'EB Garamond', Georgia, serif; font-size: 32px; font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 20px; }
.book-line { width: 40px; height: 1px; background: rgba(255,255,255,0.3); margin-bottom: 20px; }
.book-after { font-family: 'Figtree', sans-serif; font-size: 9px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.35; }

.book-flourish { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); opacity: 0.3; }

.rotating-name { display: inline-block; transition: opacity 0.35s ease, transform 0.35s ease; }
.rotating-name.out { opacity: 0; transform: translateY(6px); }

.book-shadow { width: 70%; height: 20px; margin: 0 auto; background: radial-gradient(ellipse, rgba(0,0,0,0.08), transparent); border-radius: 50%; margin-top: -4px; }

/* ===== PROMO BANNER ===== */
.promo-banner { position: relative; padding: 0; background: var(--dark); color: white; text-align: center; overflow: hidden; }
.promo-banner h2 { color: white; margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto; }
.promo-banner p { font-size: 20px; color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* Watch in action button */
.btn-watch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 12px 28px;
    background: var(--cream, #FAF7F2);
    border: none;
    border-radius: 40px;
    color: var(--dark, #1a1a1a);
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.btn-watch svg circle { stroke: var(--dark, #1a1a1a); fill: none; }
.btn-watch svg polygon { fill: var(--dark, #1a1a1a); }
.btn-watch:hover { opacity: 0.85; }

/* Video modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
}
.video-modal.active { display: flex; }
.video-modal-inner {
    position: relative;
    max-width: 400px;
    width: 90%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}
.video-modal-inner video { width: 100%; display: block; }
.video-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Promo ribbon — Wispr-style two-part layout */
.promo-content {
    position: relative;
    z-index: 2;
    padding: 100px 0 120px;
}
.promo-ribbon-left {
    position: absolute;
    top: -15%;
    left: -25%;
    width: 130%;
    height: 130%;
    z-index: 1;
}
/* Transformation box — centered between text and ribbon */
.promo-transform-box {
    position: absolute;
    left: 50%;
    bottom: 22%;
    transform: translateX(-50%);
    z-index: 3;
    border: 1.5px solid rgba(196,166,232,0.5);
    border-radius: 40px;
    padding: 10px 32px;
    background: rgba(196,166,232,0.08);
    backdrop-filter: blur(4px);
}
.promo-transform-label {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 18px;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
}
.promo-ribbon-text-light {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    fill: rgba(255,255,255,0.25);
    letter-spacing: 0.02em;
}
/* ribbon-text-bold removed */

/* ===== HERO STATS ===== */
.hero-stats { padding: 80px 0 20px; }
.stats-container { text-align: center; max-width: 900px; margin: 0 auto; }
.stat-headline { font-family: 'EB Garamond', Georgia, serif; font-size: clamp(48px, 6vw, 80px); font-weight: 400; color: var(--dark); line-height: 1.1; margin-bottom: 32px; }
.accent-underline {
    position: relative;
    display: inline-block;
}
.accent-underline::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 2px;
    height: 10px;
    background: var(--lilac);
    opacity: 0.45;
    z-index: -1;
    border-radius: 6px 3px 5px 2px;
}

.stat-highlight {
    position: relative;
    display: inline-block;
}
.stat-highlight::after {
    content: '';
    position: absolute;
    left: -6px;
    right: -6px;
    bottom: 2px;
    height: 12px;
    background: var(--lilac);
    opacity: 0.5;
    z-index: -1;
    border-radius: 8px 4px 6px 3px;
    transform: skewX(-5deg) rotate(-1deg);
}
.stat-blurb { font-size: 18px; color: rgba(26,26,26,0.55); line-height: 1.7; max-width: 640px; margin: 0 auto; }
.stat-buttons { display: flex; gap: 12px; justify-content: center; margin-top: 32px; }
.btn-ghost-dark {
    padding: 12px 24px;
    border: 2.25px solid var(--dark);
    border-radius: 8px;
    color: var(--dark);
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-ghost-dark:hover { background: var(--dark); color: white; }
.btn-lilac {
    padding: 12px 24px;
    background: var(--lilac);
    border: 2.25px solid var(--text);
    border-radius: 8px;
    color: var(--text);
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-lilac:hover { background: var(--lilac-dark); }

/* ===== TYPING DEMO ===== */
.demo-section { padding: 60px 0; }

.demo-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: start; max-width: 1000px; margin: 0 auto; }

.demo-label { font-family: 'Figtree', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }

.demo-voice-hint { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 500; letter-spacing: 0.04em; text-transform: none; color: var(--lilac-dark); background: var(--lilac-soft); padding: 3px 10px; border-radius: 100px; }

.demo-box { padding: 32px; border-radius: 16px; min-height: 200px; font-size: 16px; line-height: 1.7; color: var(--text-mid); }
.demo-box-input { background: var(--bg-alt); border: 1px solid var(--border); }
.demo-box-output { background: var(--dark); color: rgba(255,255,255,0.8); opacity: 0.3; transition: opacity 0.5s ease; }
.demo-box-output.active { opacity: 1; }

.typing-cursor { display: inline; animation: blink 0.8s step-end infinite; color: var(--lilac); }
@keyframes blink { 50% { opacity: 0; } }
.demo-arrow { align-self: center; margin-top: 40px; }

/* ===== SECTIONS ===== */
.section-dark { background: var(--dark); color: white; padding: 140px 0; }
.section-dark h2 { color: white; }
.section-dark .section-kicker { color: var(--lilac); }
.section { padding: 140px 0; }
.section-alt { background: var(--bg-alt); }
.section-kicker { font-family: 'Figtree', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 20px; }
.section-body { font-size: 20px; color: var(--text-mid); line-height: 1.7; max-width: 560px; }

/* ===== COMPARISON ===== */
.comparison { text-align: center; }
.comparison-sub { font-size: 20px; color: rgba(255,255,255,0.6); max-width: 560px; margin: 20px auto 60px; line-height: 1.7; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; max-width: 960px; margin: 0 auto; }
.comparison-card { padding: 48px 36px; border-radius: 24px; text-align: center; }
.comparison-generic { background: var(--dark-card); border: 1px solid rgba(255,255,255,0.08); }
.comparison-lbm { background: linear-gradient(135deg, rgba(196,166,232,0.12), rgba(26,122,109,0.12)); border: 1px solid rgba(196,166,232,0.3); }
.comparison-card-label { font-family: 'Figtree', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.comparison-icon-wrap { margin-bottom: 16px; }
.comparison-stat { font-family: 'EB Garamond', Georgia, serif; font-size: 48px; letter-spacing: -0.03em; margin-bottom: 16px; line-height: 1; }
.comparison-generic .comparison-stat { color: rgba(255,255,255,0.4); }
.comparison-lbm .comparison-stat { color: var(--lilac); }
.comparison-card p { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ===== TRUST — Pill components ===== */
.trust-section { padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-heading { text-align: center; font-size: 15px; font-family: 'Figtree', sans-serif; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-light); margin-bottom: 28px; }

.trust-pills { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.trust-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 22px; background: white;
    border: 1px solid var(--border); border-radius: 100px;
    font-size: 15px; color: var(--text-mid);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: all 0.2s ease;
}
.trust-pill:hover { border-color: var(--lilac); box-shadow: 0 4px 12px rgba(196,166,232,0.1); }
.trust-pill strong { color: var(--text); }
.trust-pill svg { flex-shrink: 0; }

/* ===== PROFILE CARD ===== */
.profile-section { padding: 140px 0; }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.profile-text p { font-size: 18px; line-height: 1.75; margin-top: 20px; }
.profile-card-wrap { display: flex; justify-content: center; }
.profile-illustration { width: 100%; max-width: 420px; margin-bottom: -40px; }
.profile-card { background: var(--dark-card); border-radius: 40px; padding: 48px 40px 56px; width: 100%; max-width: 420px; }
.profile-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.profile-card-title { font-family: 'Figtree', sans-serif; font-size: 18px; font-weight: 700; color: rgba(255,255,235,0.9); transition: opacity 0.3s ease; }
.profile-chips { display: flex; flex-wrap: wrap; gap: 10px; transition: opacity 0.3s ease; }
.profile-chip {
    display: inline-block; padding: 8px 18px;
    background: rgb(3, 79, 70); border: 3px solid rgba(255,255,255,0.9);
    border-radius: 1000px; color: rgba(255,255,235,0.95);
    font-family: 'Figtree', sans-serif; font-size: 15px; font-weight: 600;
    opacity: 0; transform: translateX(60px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.profile-chip.visible { opacity: 1; transform: translateX(0); }

/* ===== HOW IT WORKS ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px; margin-top: 80px; }
.step { text-align: left; }
.step-num { font-family: 'EB Garamond', Georgia, serif; font-size: 48px; color: var(--lilac); opacity: 0.4; line-height: 1; margin-bottom: 20px; }
.step h3 { font-size: 26px; margin-bottom: 12px; line-height: 1.2; }
.step p { font-size: 16px; color: var(--text-mid); line-height: 1.7; }
.steps-note { text-align: center; margin-top: 64px; font-size: 15px; color: var(--text-light); }

.step-voice-badge {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
    padding: 5px 14px; background: var(--accent-soft); border-radius: 100px;
    font-size: 13px; color: var(--accent); font-weight: 500;
}

/* ===== OCCASION PILLS ===== */
.occasions { text-align: center; }
.occasion-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 40px auto 60px; max-width: 700px; }
.occasion-pill {
    display: inline-block; padding: 10px 22px;
    border: 2px solid rgba(255,255,235,0.8); border-radius: 1000px;
    color: rgba(255,255,235,0.9); text-decoration: none;
    font-family: 'Figtree', sans-serif; font-size: 15px; font-weight: 500;
    transition: all 0.25s ease; background: transparent;
}
.occasion-pill:hover { background: rgba(196,166,232,0.2); border-color: var(--lilac); color: white; }

.usecase-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.usecase-detail-card {
    background: var(--dark-card); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 36px 32px; text-align: left; transition: all 0.3s ease;
}
.usecase-detail-card:hover { border-color: rgba(196,166,232,0.3); transform: translateY(-2px); }
.usecase-detail-icon { margin-bottom: 16px; }
.usecase-detail-card h3 { color: white; font-size: 24px; margin-bottom: 10px; line-height: 1.2; }
.usecase-detail-card p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ===== FEATURES ===== */
/* Features header with illustration */
.features-header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 80px; }
.features-header-text { }
.features-header-illus { display: flex; justify-content: center; }
.features-header-illus img { max-width: 340px; width: 100%; height: auto; }

.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 120px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }
.feature-text h3 { font-size: 40px; line-height: 1.05; margin-bottom: 20px; letter-spacing: -0.02em; }
.feature-text p { font-size: 18px; color: var(--text-mid); line-height: 1.75; }
.feature-visual { background: var(--bg-alt); border-radius: 16px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; overflow: hidden; }

/* SVG Line Illustration — draw on scroll */
/* Feature image frames — real product photos */
.feature-image-frame { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 16px; position: relative; }
.feature-image-frame img { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; }
.audio-wave-overlay { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 4px; height: 40px; background: rgba(26,26,26,0.75); padding: 8px 16px; border-radius: 24px; }
.audio-wave-overlay .audio-bar { width: 3px; background: var(--lilac); border-radius: 2px; animation: audioWave 1s ease-in-out infinite alternate; }
.audio-wave-overlay .audio-bar:nth-child(1) { height: 12px; animation-delay: 0s; }
.audio-wave-overlay .audio-bar:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.audio-wave-overlay .audio-bar:nth-child(3) { height: 28px; animation-delay: 0.2s; }
.audio-wave-overlay .audio-bar:nth-child(4) { height: 24px; animation-delay: 0.3s; }
.audio-wave-overlay .audio-bar:nth-child(5) { height: 32px; animation-delay: 0.15s; }
.audio-wave-overlay .audio-bar:nth-child(6) { height: 18px; animation-delay: 0.25s; }
.audio-wave-overlay .audio-bar:nth-child(7) { height: 14px; animation-delay: 0.35s; }
@keyframes audioWave { 0% { transform: scaleY(0.4); } 100% { transform: scaleY(1); } }

.line-illustration { width: 70%; height: auto; }

.line-illustration .line-draw {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    transition: stroke-dashoffset 1.5s ease-out;
}
.line-illustration .line-draw[fill] { opacity: 0; transition: opacity 0.8s ease-out 1s; }

.line-illustration.drawn .line-draw { stroke-dashoffset: 0; }
.line-illustration.drawn .line-draw[fill] { opacity: 1; }

/* Dedication panel */
.illus-panel { width: 85%; background: white; border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.08); overflow: hidden; }
.illus-panel-header { padding: 14px 18px; display: flex; gap: 6px; border-bottom: 1px solid #f0ede8; }
.illus-panel-dot { width: 10px; height: 10px; border-radius: 50%; background: #e0dcd4; }
.illus-dedication { padding-bottom: 32px; }
.illus-ded-label { padding: 16px 24px 0; font-family: 'Figtree', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lilac-dark); transition: opacity 0.4s ease; }
.illus-ded-text { transition: opacity 0.4s ease; }
.illus-ded-text { padding: 12px 24px 0; }
.illus-ded-line { display: block; font-family: 'EB Garamond', Georgia, serif; font-size: 16px; font-style: italic; color: var(--text-mid); line-height: 1.7; }
.illus-ded-cursor { width: 2px; height: 18px; background: var(--lilac); margin: 8px 24px 0; animation: blink 0.8s step-end infinite; }

/* Audio wave */
.audio-wave { display: flex; align-items: center; gap: 4px; height: 60px; }
.audio-bar { width: 4px; border-radius: 2px; background: var(--lilac); animation: wave 1.2s ease-in-out infinite; }
.audio-bar:nth-child(1)  { height: 40%; animation-delay: 0s; }
.audio-bar:nth-child(2)  { height: 70%; animation-delay: 0.1s; }
.audio-bar:nth-child(3)  { height: 50%; animation-delay: 0.2s; }
.audio-bar:nth-child(4)  { height: 90%; animation-delay: 0.3s; }
.audio-bar:nth-child(5)  { height: 60%; animation-delay: 0.4s; }
.audio-bar:nth-child(6)  { height: 80%; animation-delay: 0.15s; }
.audio-bar:nth-child(7)  { height: 45%; animation-delay: 0.25s; }
.audio-bar:nth-child(8)  { height: 65%; animation-delay: 0.35s; }
.audio-bar:nth-child(9)  { height: 55%; animation-delay: 0.05s; }
.audio-bar:nth-child(10) { height: 75%; animation-delay: 0.2s; }
.audio-bar:nth-child(11) { height: 50%; animation-delay: 0.32s; }
.audio-bar:nth-child(12) { height: 85%; animation-delay: 0.12s; }
.audio-bar:nth-child(13) { height: 42%; animation-delay: 0.28s; }
.audio-bar:nth-child(14) { height: 68%; animation-delay: 0.08s; }
@keyframes wave { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.5); } }

/* ===== VOICE WAVE PANEL ===== */
.voice-wave-panel {
    background: var(--dark);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    max-width: 380px;
    margin: 0 auto;
}
/* Photo-to-cartoon reveal */
.reveal-carousel {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    background: var(--cream);
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.reveal-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.reveal-slide.active {
    opacity: 1;
    pointer-events: auto;
}
.reveal-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.reveal-real, .reveal-cartoon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: var(--cream);
}
.reveal-cartoon {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-slide.revealing .reveal-cartoon {
    clip-path: inset(0 0 0 0);
}
.reveal-brush {
    position: absolute;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--lilac);
    opacity: 0;
    box-shadow: 0 0 20px var(--lilac), 0 0 40px rgba(196,166,232,0.3);
    transition: left 1.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    z-index: 2;
}
.reveal-slide.revealing .reveal-brush {
    opacity: 1;
    left: 100% !important;
}
.reveal-caption {
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 15px;
    color: #444;
    background: rgba(255,253,247,0.85);
    padding: 8px 16px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.reveal-caption strong {
    color: var(--text);
}
.caption-after { display: none; }
.reveal-slide.revealing .caption-after { display: inline; }
.reveal-scene img {
    position: relative;
}
.reveal-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 3;
}
.reveal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background 0.3s ease;
}
.reveal-dot.active {
    background: var(--lilac);
}

/* Voice carousel */
.voice-carousel-wrap {
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
}
.voice-carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}
.voice-carousel-slide {
    min-width: 100%;
    text-align: center;
    padding: 0 10px;
}
.voice-slide-snippet {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 14px;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
    line-height: 1.4;
}
.voice-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}
.voice-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.3s ease;
}
.voice-dot.active {
    background: var(--lilac);
}

.voice-wave-label {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lilac);
    margin-bottom: 0;
    transition: opacity 0.3s ease;
}
.voice-wave-bars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 64px;
    margin-bottom: 12px;
}
.voice-wave-bars span {
    width: 3px;
    border-radius: 2px;
    background: var(--lilac);
    height: 20%;
    opacity: 0.4;
    transition: height 0.15s ease, opacity 0.15s ease;
}
.voice-wave-bars.playing span {
    animation: voiceBar 0.8s ease-in-out infinite alternate;
    opacity: 0.9;
}
.voice-wave-bars span:nth-child(1)  { height: 25%; animation-delay: 0.00s; }
.voice-wave-bars span:nth-child(2)  { height: 40%; animation-delay: 0.05s; }
.voice-wave-bars span:nth-child(3)  { height: 55%; animation-delay: 0.10s; }
.voice-wave-bars span:nth-child(4)  { height: 30%; animation-delay: 0.15s; }
.voice-wave-bars span:nth-child(5)  { height: 70%; animation-delay: 0.20s; }
.voice-wave-bars span:nth-child(6)  { height: 45%; animation-delay: 0.08s; }
.voice-wave-bars span:nth-child(7)  { height: 85%; animation-delay: 0.25s; }
.voice-wave-bars span:nth-child(8)  { height: 50%; animation-delay: 0.12s; }
.voice-wave-bars span:nth-child(9)  { height: 65%; animation-delay: 0.18s; }
.voice-wave-bars span:nth-child(10) { height: 35%; animation-delay: 0.22s; }
.voice-wave-bars span:nth-child(11) { height: 80%; animation-delay: 0.07s; }
.voice-wave-bars span:nth-child(12) { height: 40%; animation-delay: 0.28s; }
.voice-wave-bars span:nth-child(13) { height: 60%; animation-delay: 0.14s; }
.voice-wave-bars span:nth-child(14) { height: 30%; animation-delay: 0.30s; }
.voice-wave-bars span:nth-child(15) { height: 75%; animation-delay: 0.03s; }
.voice-wave-bars span:nth-child(16) { height: 45%; animation-delay: 0.20s; }
.voice-wave-bars span:nth-child(17) { height: 90%; animation-delay: 0.10s; }
.voice-wave-bars span:nth-child(18) { height: 35%; animation-delay: 0.26s; }
.voice-wave-bars span:nth-child(19) { height: 55%; animation-delay: 0.16s; }
.voice-wave-bars span:nth-child(20) { height: 40%; animation-delay: 0.08s; }
.voice-wave-bars span:nth-child(21) { height: 70%; animation-delay: 0.22s; }
.voice-wave-bars span:nth-child(22) { height: 30%; animation-delay: 0.12s; }
.voice-wave-bars span:nth-child(23) { height: 60%; animation-delay: 0.04s; }
.voice-wave-bars span:nth-child(24) { height: 50%; animation-delay: 0.18s; }
.voice-wave-bars span:nth-child(25) { height: 80%; animation-delay: 0.09s; }
.voice-wave-bars span:nth-child(26) { height: 35%; animation-delay: 0.24s; }
.voice-wave-bars span:nth-child(27) { height: 55%; animation-delay: 0.06s; }
.voice-wave-bars span:nth-child(28) { height: 45%; animation-delay: 0.20s; }
.voice-wave-bars span:nth-child(29) { height: 65%; animation-delay: 0.14s; }
.voice-wave-bars span:nth-child(30) { height: 25%; animation-delay: 0.28s; }
@keyframes voiceBar {
    0% { transform: scaleY(0.4); }
    100% { transform: scaleY(1.2); }
}
.voice-wave-time {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}
.btn-listen-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    background: var(--lilac);
    color: var(--text);
    border: 2.25px solid white;
    border-radius: 8px;
    padding: 10px 24px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.btn-listen-now:hover { background: var(--lilac-dark); transform: translateY(-1px); }

/* ===== CAROUSEL ===== */
.preview-section { padding: 140px 0; background: var(--bg-alt); }

.carousel { max-width: 700px; margin: 60px auto 0; overflow: hidden; position: relative; }

/* Decorative elements around carousel */
.carousel-deco { position: absolute; pointer-events: none; z-index: 2; opacity: 0.7; }
.carousel-deco-bees-top { top: -30px; right: -20px; width: 120px; }
.carousel-deco-leaf-left { bottom: 40px; left: -60px; width: 80px; transform: rotate(15deg); }
.carousel-deco-leaf-right { top: 20px; right: -50px; width: 70px; transform: rotate(-20deg) scaleX(-1); }
.carousel-deco-bees-bottom { bottom: -20px; left: 10px; width: 100px; transform: scaleX(-1); }
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.carousel-slide { min-width: 100%; padding: 0 16px; }

.carousel-card {
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.08);
    aspect-ratio: 16/10; max-height: 440px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg);
}

/* Real image slides */
.carousel-real-image { background: transparent; }
.carousel-real-image img { width: 100%; height: 100%; object-fit: contain; border-radius: 16px; }

/* Slide 1: Mini book cover */
.carousel-cover { background: linear-gradient(155deg, #2D5A4E 0%, #1A7A6D 50%, #156B5E 100%); }
.mini-book-cover { color: white; text-align: center; padding: 40px; }
.mini-book-pre { font-family: 'Figtree', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.5; display: block; margin-bottom: 20px; }
.mini-book-name { font-family: 'EB Garamond', Georgia, serif; font-size: 28px; line-height: 1.2; display: block; margin-bottom: 20px; }
.mini-book-line { width: 40px; height: 1px; background: rgba(255,255,255,0.3); margin: 0 auto 20px; }
.mini-book-after { font-family: 'Figtree', sans-serif; font-size: 9px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.35; }

/* Slide 2: Dedication */
.carousel-page { background: var(--bg); }
.carousel-page-inner { padding: 48px 40px; text-align: center; }
.carousel-ded-label { font-family: 'EB Garamond', Georgia, serif; font-size: 22px; margin-bottom: 20px; color: var(--text); }
.carousel-ded-text { font-family: 'EB Garamond', Georgia, serif; font-size: 17px; font-style: italic; line-height: 1.7; color: var(--text-mid); margin-bottom: 24px; }
.carousel-ded-from { font-family: 'Figtree', sans-serif; font-size: 14px; color: var(--lilac-dark); font-weight: 600; }

/* Slide 3: Story spread */
.carousel-spread { background: white; display: grid; grid-template-columns: 1fr 1fr; }
.carousel-spread-left { background: linear-gradient(135deg, var(--lilac-soft), var(--warm-soft)); display: flex; align-items: center; justify-content: center; }
.carousel-illus-placeholder { opacity: 0.7; }
.carousel-spread-right { padding: 32px 24px; display: flex; flex-direction: column; justify-content: center; }
.carousel-chapter { font-family: 'Figtree', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lilac-dark); margin-bottom: 6px; }
.carousel-story-title { font-family: 'EB Garamond', Georgia, serif; font-size: 16px; color: var(--text); margin-bottom: 16px; }
.carousel-story-lines { display: flex; flex-direction: column; gap: 6px; }
.carousel-line { height: 5px; background: var(--bg-alt); border-radius: 3px; }

/* Slide 4: Audio QR */
.carousel-audio-page { background: var(--dark); }
.carousel-audio-inner { text-align: center; padding: 40px; color: white; }
.carousel-qr { margin-bottom: 20px; }
.carousel-audio-label { font-family: 'EB Garamond', Georgia, serif; font-size: 20px; margin-bottom: 8px; }
.carousel-audio-sub { font-size: 14px; color: rgba(255,255,255,0.5); }

.carousel-caption { text-align: center; margin-top: 16px; font-size: 14px; color: var(--text-light); font-style: italic; }

/* Carousel controls */
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.carousel-btn {
    width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border);
    background: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: var(--text-mid); transition: all 0.2s ease;
}
.carousel-btn:hover { border-color: var(--lilac); color: var(--lilac-dark); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all 0.2s ease; }
.carousel-dot.active { background: var(--lilac); width: 24px; border-radius: 4px; }

.preview-cta { text-align: center; margin-top: 48px; }
.preview-cta a { font-family: 'Figtree', sans-serif; font-weight: 600; font-size: 15px; color: var(--lilac-dark); text-decoration: none; border-bottom: 1px solid var(--lilac); padding-bottom: 2px; transition: opacity 0.2s; }
.preview-cta a:hover { opacity: 0.7; }
.preview-cta p { margin-top: 8px; font-size: 14px; color: var(--text-light); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 140px 0; overflow: hidden; }
.testimonials.section-dark { background: var(--dark); }
.testimonials-track { display: flex; gap: 24px; animation: marquee 40s linear infinite; width: max-content; }
.testimonials-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.t-card { min-width: 360px; max-width: 400px; padding: 32px; background: var(--dark-card); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; flex-shrink: 0; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--lilac), var(--accent)); display: flex; align-items: center; justify-content: center; font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 14px; color: white; margin-bottom: 16px; }
.t-stars { margin-bottom: 16px; }
.t-card blockquote { font-family: 'EB Garamond', Georgia, serif; font-size: 19px; font-style: italic; line-height: 1.6; color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.t-author { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 500; }

/* ===== PRICING ===== */
.pricing { padding: 140px 0; }
.pricing-card { max-width: 520px; margin: 60px auto 0; }
.pricing-stack { margin-bottom: 40px; }
.pricing-item { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 16px; }
.pricing-item-label { color: var(--text-mid); }
.pricing-item-price { font-weight: 600; color: var(--text-light); flex-shrink: 0; margin-left: 16px; }
.pricing-item.bonus .pricing-item-label { color: var(--lilac-dark); font-weight: 500; }
.pricing-total { display: flex; justify-content: space-between; padding: 18px 0 0; font-weight: 700; font-size: 17px; }
.pricing-total .struck { text-decoration: line-through; color: var(--text-light); }
.pricing-amount { text-align: center; padding: 40px 0; }
.pricing-amount span { font-family: 'EB Garamond', Georgia, serif; font-size: 80px; letter-spacing: -0.03em; color: var(--text); line-height: 1; }
.pricing-context { font-size: 16px; color: var(--text-light); margin-top: 8px; }
.pricing-cta { text-align: center; }
.pricing-cta a { display: inline-block; font-family: 'Figtree', sans-serif; font-weight: 600; font-size: 14px; padding: 12px 24px; background: var(--lilac); color: var(--text); border: 2.25px solid var(--text); border-radius: 8px; text-decoration: none; transition: all 0.25s ease; }
.pricing-cta a:hover { transform: translateY(-2px); background: var(--lilac-dark); }
.pricing-note { text-align: center; margin-top: 12px; font-size: 14px; color: var(--text-light); }
.delivery { margin-top: 32px; text-align: center; font-size: 15px; color: var(--text-light); line-height: 2; }

.guarantee { max-width: 520px; margin: 48px auto 0; text-align: center; padding: 40px; border: 1px solid var(--lilac); border-radius: 16px; background: var(--lilac-soft); }
.guarantee h3 { font-size: 28px; margin-bottom: 14px; line-height: 1.2; }
.guarantee p { font-size: 16px; line-height: 1.7; color: var(--text-mid); }

/* ===== REORDER ===== */
.reorder { padding: 140px 0; text-align: center; }
.reorder h2 { margin-bottom: 28px; }
.reorder p { font-size: 20px; color: var(--text-mid); max-width: 580px; margin: 0 auto 16px; line-height: 1.8; }
.reorder-tagline { font-family: 'EB Garamond', Georgia, serif; font-size: 24px; font-style: italic; color: var(--lilac-dark); margin-top: 28px; }

/* ===== FINAL CTA ===== */
.final-cta { padding: 140px 0; background: var(--dark); color: white; text-align: center; }
.final-cta h2 { color: white; margin-bottom: 24px; max-width: 700px; margin-left: auto; margin-right: auto; }
.final-cta .subtitle { font-size: 20px; color: rgba(255,255,255,0.6); margin-bottom: 44px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.final-cta a.cta { display: inline-block; font-family: 'Figtree', sans-serif; font-weight: 600; font-size: 14px; padding: 12px 24px; background: var(--lilac); color: var(--dark); border: 2.25px solid white; border-radius: 8px; text-decoration: none; transition: all 0.25s ease; }
.final-cta a.cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,166,232,0.4); background: var(--lilac-dark); }
.final-cta .cta-sub { display: block; font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.5); margin-top: 4px; }
.cta-sub-text { font-family: 'Figtree', sans-serif; font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 16px; }
.final-cta .contact { margin-top: 40px; font-size: 14px; color: rgba(255,255,255,0.4); }

.footer { padding: 40px 0; text-align: center; border-top: 1px solid var(--border); }
.footer p { font-size: 13px; color: var(--text-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    /* Mobile hamburger menu */
    .hamburger { display: flex; }
    .header-mobile-right { display: flex; }
    .header-cta-mobile { display: inline-block; font-size: 12px !important; padding: 8px 14px !important; }
    .header-cta-nav { display: none; }
    .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,253,247,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 100;
    }
    .header-nav.open { display: flex; }
    .header-nav .header-link { font-size: 20px; }
    .header-nav .header-cta { font-size: 18px; padding: 14px 32px; }

    .section, .section-dark { padding: 100px 0; }
    .promo-banner { padding: 80px 0; }
    .hero { padding: 140px 0 80px; min-height: auto; }
    .hero .container { grid-template-columns: 1fr; text-align: center; gap: 48px; }
    .hero-left { align-items: center; }
    .hero-cta { align-self: center; }
    .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-right { order: -1; margin-bottom: 30px; }
    .hero-photo-frame { width: 260px; margin: 0 auto; }
    .real-customer-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .book { width: 200px; }
    .hero-photo-frame { width: 220px; }
    .hero-big-text { font-size: clamp(60px, 12vw, 100px); }

    .steps { grid-template-columns: 1fr; gap: 48px; margin-top: 60px; }
    .demo-grid { grid-template-columns: 1fr; gap: 16px; }
    .demo-arrow { transform: rotate(90deg); margin-top: 0; display: flex; justify-content: center; }
    .comparison-grid { grid-template-columns: 1fr; gap: 24px; }
    .profile-grid { grid-template-columns: 1fr; gap: 48px; }
    .usecase-detail-grid { grid-template-columns: 1fr; }
    .features-header { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .features-header-illus img { max-width: 240px; }
    .feature-row { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
    .feature-row.reverse .feature-text { order: 1; }
    .feature-row.reverse .feature-visual { order: 2; }
    .carousel-spread { grid-template-columns: 1fr; }
    .carousel-spread-left { min-height: 160px; }
    .t-card { min-width: 300px; }
    .scribble-underline { bottom: -14px; }
    .scribble-top-right, .scribble-bottom-left { display: none; }
    .trust-pills { gap: 12px; }
}

@media (max-width: 600px) {
    body { font-size: 17px; }
    .container, .container-narrow { padding: 0 20px; }
    .section, .section-dark { padding: 80px 0; }
    .hero-big-text { font-size: 56px; }
    .final-cta h2 { font-size: 36px; }
    .trust-pills { flex-direction: column; align-items: center; }
    .occasion-pills { gap: 8px; }
    .occasion-pill { padding: 8px 16px; font-size: 14px; }
    .action-gallery-item { width: 240px; height: 280px; }
}

/* ===== CREATE FLOW PAGES ===== */
.create-page { min-height: 100vh; display: flex; flex-direction: column; background: var(--bg); }
.create-header { padding: 20px 0; border-bottom: 1px solid var(--border); }
.create-header .container { display: flex; justify-content: space-between; align-items: center; }
.progress-bar { width: 200px; height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--lilac); transition: width 0.3s ease; }
.create-content { flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.create-card { max-width: 560px; width: 100%; padding: 48px; }
.create-card h1 { font-size: 36px; margin-bottom: 32px; text-align: center; line-height: 1.1; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 15px; }
.form-group input, .form-group select { width: 100%; padding: 14px 18px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 17px; font-family: inherit; background: white; transition: border-color 0.2s ease; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--lilac); }
.gift-from-options { display: flex; gap: 10px; flex-wrap: wrap; }
.gift-option { padding: 12px 24px; border: 1.5px solid var(--border); border-radius: 8px; cursor: pointer; font-size: 15px; transition: all 0.2s ease; }
.gift-option:hover, .gift-option.active { border-color: var(--lilac); background: var(--lilac-soft); }
.photo-upload { border: 1.5px dashed var(--border); border-radius: 12px; padding: 48px; text-align: center; cursor: pointer; transition: all 0.2s ease; }
.photo-upload:hover { border-color: var(--lilac); background: var(--lilac-soft); }
.photo-upload-icon { font-size: 32px; margin-bottom: 12px; opacity: 0.5; }
.create-actions { margin-top: 32px; display: flex; justify-content: center; }
.btn-primary { font-family: 'Figtree', sans-serif; font-weight: 600; font-size: 14px; padding: 12px 24px; background: var(--lilac); color: var(--text); border: 2.25px solid var(--text); border-radius: 8px; cursor: pointer; transition: all 0.25s ease; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: var(--lilac-dark); transform: translateY(-1px); }
.voice-section { text-align: center; }
.question-text { font-family: 'EB Garamond', Georgia, serif; font-size: 28px; line-height: 1.35; margin-bottom: 40px; }
.voice-button { width: 100px; height: 100px; border-radius: 50%; background: var(--lilac); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: all 0.2s ease; box-shadow: 0 8px 24px rgba(196,166,232,0.3); }
.voice-button:hover { transform: scale(1.05); }
.voice-button.recording { background: #C44B3F; animation: pulse 1.5s infinite; box-shadow: 0 8px 24px rgba(196,75,63,0.25); }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.voice-icon { font-size: 36px; color: white; }
.voice-hint { color: var(--text-light); font-size: 15px; margin-bottom: 32px; }
.text-fallback { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border); }
.text-fallback textarea { width: 100%; padding: 14px 18px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 17px; font-family: inherit; resize: vertical; min-height: 100px; background: white; }
.text-fallback textarea:focus { outline: none; border-color: var(--lilac); }
.question-counter { color: var(--text-light); font-size: 13px; margin-bottom: 16px; }
.confirmation { text-align: center; }
.confirmation-icon { font-size: 64px; margin-bottom: 20px; }
.confirmation h1 { margin-bottom: 16px; }
.confirmation p { color: var(--text-mid); margin-bottom: 16px; }
.email-display { background: var(--lilac-soft); padding: 14px 24px; border-radius: 8px; display: inline-block; margin: 20px 0; font-weight: 600; color: var(--lilac-dark); }
.confirmation-notes { text-align: left; max-width: 380px; margin: 28px auto 0; padding: 24px; background: var(--bg-alt); border-radius: 10px; }
.confirmation-notes h3 { font-size: 15px; margin-bottom: 14px; }
.confirmation-notes ul { list-style: none; }
.confirmation-notes li { padding: 6px 0; color: var(--text-mid); font-size: 15px; }
/* v5-carousel-line-illus */
/* v1771120712 */

/* Section CTA buttons — responsive stacking */
.section-cta { text-align: center; margin-top: 48px; }
.section-cta a { margin: 6px; }
@media (max-width: 600px) {
    .section-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
    .section-cta a { width: 80%; max-width: 300px; text-align: center; margin: 0; display: block; }
}
/* On dark sections, ghost button needs white border */
.section-dark .section-cta .btn-ghost-dark,
.comparison .section-cta .btn-ghost-dark,
.occasions .section-cta .btn-ghost-dark,
.testimonials .section-cta .btn-ghost-dark,
.promo-banner .section-cta .btn-ghost-dark {
    border-color: white; color: white;
}
.section-dark .section-cta .btn-ghost-dark:hover,
.comparison .section-cta .btn-ghost-dark:hover,
.occasions .section-cta .btn-ghost-dark:hover,
.testimonials .section-cta .btn-ghost-dark:hover,
.promo-banner .section-cta .btn-ghost-dark:hover {
    background: rgba(255,255,255,0.1);
}
/* Lilac button on dark bg needs white border */
.section-dark .section-cta .btn-lilac,
.comparison .section-cta .btn-lilac,
.occasions .section-cta .btn-lilac,
.testimonials .section-cta .btn-lilac,
.promo-banner .section-cta .btn-lilac {
    border-color: white;
}

/* #1 Logo bigger on mobile too */
@media (max-width: 600px) {
    .header .logo img { height: 52px !important; }
}

/* #3 Promo banner mobile — keep ribbon behind text, not overlapping */
@media (max-width: 968px) {
    .promo-banner { position: relative; overflow: hidden; }
    .promo-ribbon-left { position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: 0.15; pointer-events: none; z-index: 0; }
    .promo-banner .container.promo-content { position: relative; z-index: 1; }
}

/* #7 Voice wave panel — no clipping on mobile */
@media (max-width: 600px) {
    .voice-wave-panel {
        padding: 20px 16px 16px;
        overflow: visible;
    }
    .voice-carousel-wrap {
        margin-bottom: 12px;
    }
    .voice-wave-bars {
        margin: 8px 0;
    }
}
