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

:root {
    --bg-0: #0a0e1a;
    --bg-1: #111827;
    --surface: rgba(255, 255, 255, 0.06);
    --surface-hi: rgba(255, 255, 255, 0.1);
    --border: rgba(255, 255, 255, 0.12);
    --text: #e5e7eb;
    --text-dim: #9ca3af;
    --primary: #10b981;
    --primary-2: #06b6d4;
    --accent: #a78bfa;
    --danger: #f43f5e;
    --radius: 16px;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    --gradient: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #a78bfa 100%);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Prompt', system-ui, -apple-system, sans-serif;
    background: var(--bg-0);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Ambient background glow */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(1000px 600px at 10% -10%, rgba(16, 185, 129, 0.18), transparent 60%),
        radial-gradient(900px 500px at 100% 10%, rgba(6, 182, 212, 0.15), transparent 60%),
        radial-gradient(800px 500px at 50% 100%, rgba(167, 139, 250, 0.14), transparent 60%);
    z-index: -1;
    pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
    width: min(1180px, 100% - 2.5rem);
    margin-inline: auto;
}

/* ===== Glass utility ===== */
.glass {
    background: var(--surface);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
}
.btn-primary {
    background: var(--gradient);
    color: #051025;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(16, 185, 129, 0.45); }
.btn-ghost { background: var(--surface); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--surface-hi); }
.btn-outline { border: 1px solid var(--border); background: transparent; }
.btn-outline:hover { background: var(--surface); }

/* ===== Navbar ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 14, 26, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.25rem;
}
.logo-icon {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--gradient);
    border-radius: 10px;
    color: #051025;
    font-size: 1rem;
}
.logo-icon svg { display: block; }
.logo-text {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1;
}
.logo-main {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: 0.04em;
}
.logo-expand {
    display: inline-block;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease 0.08s;
    font-weight: 600;
    font-size: 0.78em;
    color: var(--text-dim);
}
.logo-expand-inner { display: inline-block; padding-left: 0.55em; }
.logo:hover .logo-expand,
.logo:focus-visible .logo-expand {
    max-width: 240px;
    opacity: 1;
}
.masterpiece-video {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.yt-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
    cursor: pointer;
    background:
        radial-gradient(circle at 50% 45%, rgba(255,0,0,0.08), transparent 60%),
        linear-gradient(135deg, #1a1a1a, #0a0a0a),
        repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0 14px, transparent 14px 28px);
    color: var(--text-dim);
    transition: transform 0.3s, filter 0.3s;
}
.yt-placeholder:hover { filter: brightness(1.15); }
.yt-play { filter: drop-shadow(0 8px 24px rgba(255,0,0,0.35)); transition: transform 0.2s; }
.yt-placeholder:hover .yt-play { transform: scale(1.08); }
.yt-caption { font-size: 0.9rem; letter-spacing: 0.5px; }

/* ===== Inline CTA strip ===== */
.cta-inline { padding: 2rem 0; }
.cta-inline-box {
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.cta-inline-text { display: flex; flex-direction: column; gap: 0.25rem; }
.cta-inline-text strong { font-size: 1.1rem; color: var(--text); }
.cta-inline-text span { color: var(--text-dim); font-size: 0.9rem; }
@media (max-width: 640px) {
    .cta-inline-box { padding: 1.25rem; }
    .cta-inline-box .btn { width: 100%; text-align: center; }
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    color: var(--text-dim);
    font-weight: 500;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.nav-cta {
    background: var(--gradient);
    color: #051025;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}
.menu-toggle span {
    width: 26px; height: 2px;
    background: var(--text);
    transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { position: relative; padding: 5rem 0 6rem; overflow: hidden; }
.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(244, 63, 94, 0.12);
    border: 1px solid rgba(244, 63, 94, 0.3);
    color: #fda4af;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
}
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1.2rem;
}
.hero-tagline {
    display: block;
    font-size: clamp(0.75rem, 1.1vw, 0.9rem);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 0.85rem;
}
.hero-subtitle {
    color: var(--text-dim);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 55ch;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.trust-badges {
    display: flex; gap: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-size: 1.4rem; font-weight: 700; }
.trust-item span { color: var(--text-dim); font-size: 0.85rem; }

/* ===== Before/After Carousel (multiple case sliders) ===== */
.ba-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6), 0 0 60px rgba(16, 185, 129, 0.12);
    background: #1a1a20;
}
.ba-track {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.ba-track::-webkit-scrollbar { display: none; }
.ba-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.85;
    transition: opacity 0.2s, background 0.2s;
}
.ba-nav:hover { opacity: 1; background: rgba(0, 0, 0, 0.75); }
.ba-nav-prev { left: 0.75rem; }
.ba-nav-next { right: 0.75rem; }
@media (max-width: 540px) {
    .ba-nav { width: 34px; height: 34px; font-size: 1.15rem; }
}
.ba-hero-dots {
    position: absolute;
    left: 0; right: 0; bottom: 4.75rem;
    display: flex; justify-content: center; gap: 0.45rem;
    z-index: 5;
    pointer-events: none;
}
.ba-hero-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: background 0.2s, width 0.2s, transform 0.2s;
}
.ba-hero-dot.active { background: #fff; width: 22px; border-radius: 4px; }

/* ===== Before/After Slider (individual case) ===== */
.ba-slider {
    flex: 0 0 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    height: 100%;
    position: relative;
    overflow: hidden;
    user-select: none;
    background: #1a1a20;
    --ba-pos: 50%;
}
.ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
/* Before ถูก clip จากฝั่งขวา ตามตำแหน่ง --ba-pos */
.ba-before {
    clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
    -webkit-clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
    z-index: 1;
}

/* Stat badges */
.ba-badge {
    position: absolute;
    bottom: 1rem;
    padding: 0.6rem 0.9rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    z-index: 3;
    text-align: center;
    min-width: 90px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.ba-badge strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.1;
}
.ba-badge span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 0.15rem;
}
.ba-badge-left {
    left: 1rem;
    border-color: rgba(244, 63, 94, 0.4);
}
.ba-badge-left strong { color: #fda4af; }
.ba-badge-right {
    right: 1rem;
    border-color: rgba(16, 185, 129, 0.4);
}
.ba-badge-right strong { color: #6ee7b7; }

.ba-divider {
    position: absolute;
    top: 0; bottom: 0;
    left: var(--ba-pos);
    width: 3px;
    background: #fff;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
    cursor: ew-resize;
    z-index: 2;
    pointer-events: none;
}
.ba-handle { pointer-events: auto; }
.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.55rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: ew-resize;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 6px rgba(255,255,255,0.1);
}
.ba-label {
    position: absolute;
    top: 1rem;
    padding: 0.4rem 0.9rem;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    border-radius: 8px;
    backdrop-filter: blur(8px);
    z-index: 2;
}
.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }

/* Hero glassmorphism dashboard card */
.hero-card { padding: 1.5rem; }
.card-header {
    display: flex; align-items: center; gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.2rem;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }
.card-title { margin-left: auto; font-size: 0.85rem; color: var(--text-dim); }

.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.stat {
    padding: 1rem;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
}
.stat-label { display: block; color: var(--text-dim); font-size: 0.8rem; margin-bottom: 0.3rem; }
.stat-value { font-size: 1.3rem; font-weight: 700; }
.stat-value.down { color: var(--primary); }

.progress { display: grid; grid-template-columns: 120px 1fr 50px; align-items: center; gap: 0.75rem; margin-bottom: 0.8rem; }
.progress-label { font-size: 0.85rem; color: var(--text-dim); }
.progress-bar { height: 8px; background: var(--surface); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gradient); border-radius: 999px; }
.progress-value { font-size: 0.85rem; text-align: right; font-weight: 600; }

/* ===== Sections common ===== */
section { padding: 5rem 0; }
.section-title {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.section-subtitle {
    text-align: center;
    color: var(--text-dim);
    max-width: 60ch;
    margin: 0 auto 3rem;
}

/* ===== Pain points ===== */
.pain-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}
.pain-headline {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}
.italic { font-style: italic; }
.pain-grid,
.pain-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.pain-card {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.25s, border-color 0.25s;
}
.pain-card:hover { transform: translateY(-4px); border-color: rgba(16, 185, 129, 0.4); }
.pain-icon { font-size: 1.6rem; display: block; margin-bottom: 0.6rem; }
.pain-illus {
    width: 72px; height: 72px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 18px;
    margin-bottom: 0.9rem;
    background:
        radial-gradient(circle at 30% 25%, rgba(16, 185, 129, 0.35), transparent 60%),
        linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(6, 182, 212, 0.18));
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: var(--primary);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 8px 24px rgba(16, 185, 129, 0.08);
    transition: transform 0.25s, box-shadow 0.25s;
}
.pain-card:hover .pain-illus {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 28px rgba(16, 185, 129, 0.18);
}
.pain-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.pain-card p { color: var(--text-dim); font-size: 0.88rem; line-height: 1.5; }

/* Pain solution highlighted card (purple) */
.pain-solution {
    border-radius: 28px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    box-shadow: 0 30px 60px -20px rgba(16, 185, 129, 0.45);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.3);
    isolation: isolate;
    background:
        linear-gradient(165deg, rgba(6, 95, 82, 0.72) 0%, rgba(14, 122, 95, 0.6) 45%, rgba(8, 145, 178, 0.7) 100%),
        url('images/painpoint-solution.jpg') center/cover no-repeat,
        url('https://picsum.photos/seed/biohacking-wellness/900/1100') center/cover no-repeat;
}
.pain-solution::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(255,255,255,0.22), transparent 55%),
        linear-gradient(180deg, rgba(5, 10, 24, 0.15), rgba(5, 10, 24, 0.55));
    z-index: -1;
    pointer-events: none;
}
.solution-icon {
    width: 72px; height: 72px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}
.pain-solution h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.pain-solution p { font-size: 0.95rem; line-height: 1.65; opacity: 0.95; margin-bottom: 1.5rem; }
.pain-solution strong { color: #fff; font-weight: 700; }
.solution-pill {
    display: inline-block;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
}

/* ===== Features ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    padding: 2rem;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(16, 185, 129, 0.45); }
.feature-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    background: var(--gradient);
    border-radius: 14px;
    margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-dim); }

/* Pillar cards with image header */
.pillar-card {
    padding: 0;
    overflow: hidden;
    display: flex; flex-direction: column;
    position: relative;
    background: linear-gradient(180deg, rgba(18, 24, 45, 0.55), rgba(10, 14, 26, 0.7));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08);
}
.pillar-card:hover { box-shadow: 0 25px 60px -15px rgba(16, 185, 129, 0.25); }
.pillar-image {
    height: 170px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.pillar-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 10, 24, 0) 40%, rgba(14, 18, 34, 0.55) 100%);
}
.pillar-body {
    padding: 1.5rem 1.75rem 1.75rem;
    position: relative;
    display: flex; flex-direction: column; gap: 0.75rem;
}
.pillar-body .feature-icon {
    margin-top: -48px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    z-index: 1;
}
.pillar-body p strong { color: var(--primary); font-weight: 700; }
.fomo-tag {
    display: inline-block;
    align-self: flex-start;
    margin-top: 0.25rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fda4af;
    background: rgba(244, 63, 94, 0.12);
    border: 1px solid rgba(244, 63, 94, 0.3);
    border-radius: 999px;
}

/* ===== Testimonials ===== */
.testimonial-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}
.testimonial-grid::-webkit-scrollbar { display: none; }
.testimonial-grid > .result-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
.results-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.results-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.5rem;
    line-height: 1;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.results-arrow:hover { background: rgba(16,185,129,0.15); border-color: rgba(16,185,129,0.5); color: var(--primary); }
.results-arrow:active { transform: scale(0.94); }
.results-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
.results-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, width 0.2s;
}
.results-dot.active {
    background: var(--primary);
    width: 22px; border-radius: 4px;
}
.testimonial-card {
    padding: 1.75rem;
    position: relative;
}
.testimonial-card p {
    font-size: 1rem;
    margin: 1rem 0 1.2rem;
    font-style: italic;
}
.avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    color: #051025;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.2rem;
}
.testimonial-card cite {
    display: flex; flex-direction: column;
    font-style: normal;
}
.testimonial-card cite strong { font-weight: 700; }
.testimonial-card cite span { color: var(--primary); font-size: 0.85rem; }

/* ===== Real Before/After result cards ===== */
.result-card {
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, border-color 0.25s;
}
.result-card:hover { transform: translateY(-4px); border-color: rgba(16, 185, 129, 0.4); }
.result-image {
    aspect-ratio: 4 / 3;
    background:
        linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(6, 182, 212, 0.18)),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 10px, transparent 10px 20px);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
}
.placeholder-label { font-size: 0.9rem; letter-spacing: 0.5px; }
.result-image.has-photo {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.age-sm {
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: var(--text-dim);
    border: 1px solid var(--border);
    font-weight: 600;
}
.result-card figcaption { padding: 1.25rem 1.5rem 1.5rem; }
.result-card h4 { font-size: 1.05rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.3rem; }
.tag-sm {
    font-size: 0.7rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary);
    font-weight: 600;
}
.result-card figcaption > p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 0.9rem; }
.result-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem 1rem;
    padding-top: 0.85rem;
    border-top: 1px dashed var(--border);
}
.result-stats > div { min-width: 0; }
.result-stats > div:nth-child(3):last-child { grid-column: 1 / -1; }
.result-stats span {
    display: block;
    color: var(--text-dim);
    font-size: 0.7rem;
    letter-spacing: 0.2px;
    margin-bottom: 0.15rem;
}
.result-stats strong {
    display: block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
}

/* "More cases" tile (T7) */
.result-card-more .result-image {
    aspect-ratio: auto;
    flex: 1;
    position: relative;
    border-bottom: none;
    min-height: 100%;
}
.result-more-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.55), rgba(6, 182, 212, 0.55)), rgba(5, 16, 37, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    color: #fff;
    text-align: center;
    transition: background 0.25s;
}
.result-card-more:hover .result-more-overlay {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.7), rgba(6, 182, 212, 0.7)), rgba(5, 16, 37, 0.55);
}
.result-more-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; font-weight: 300; line-height: 1;
}
.result-more-text {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.3px;
}

/* ===== Section eyebrow label ===== */
.eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

/* ===== Masterpiece ===== */
.masterpiece-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.masterpiece-grid h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 1rem; }
.masterpiece-grid > div > p { color: var(--text-dim); margin-bottom: 1.25rem; }
.masterpiece-image {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background:
        linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(244, 63, 94, 0.15)),
        repeating-linear-gradient(-45deg, rgba(255,255,255,0.04) 0 14px, transparent 14px 28px);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dim);
}
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li {
    padding-left: 1.8rem; position: relative;
    color: var(--text);
}
.check-list li::before {
    content: '✓';
    position: absolute; left: 0; top: 0;
    width: 22px; height: 22px;
    background: var(--gradient);
    color: #051025;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 800;
}

/* ===== Tracking ===== */
.tracking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.tracking-grid h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 1rem; }
.tracking-grid > div > p { color: var(--text-dim); margin-bottom: 1.5rem; }
.tracking-items { display: flex; flex-direction: column; gap: 1rem; }
.tracking-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.t-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient); border-radius: 10px;
    font-size: 1.3rem;
}
.tracking-item strong { display: block; margin-bottom: 0.15rem; }
.tracking-item p { color: var(--text-dim); font-size: 0.9rem; }

/* ===== Tracking section wrap (dark card) ===== */
.tracking-wrap {
    background:
        radial-gradient(600px 300px at 85% 20%, rgba(6, 182, 212, 0.12), transparent 60%),
        radial-gradient(500px 300px at 15% 80%, rgba(16, 185, 129, 0.1), transparent 60%),
        #0f1412;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 3.5rem 3rem;
    box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7);
}
.tracking-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2rem;
}
.track-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.track-list li {
    display: flex; align-items: flex-start; gap: 0.9rem;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.55;
}
.track-list .check {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--gradient);
    color: #051025;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 800;
    margin-top: 0.1rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* Phone mockup */
.phone-wrap {
    position: relative;
    display: flex; justify-content: center;
}
.phone {
    width: 300px;
    height: 700px;
    background: linear-gradient(180deg, #2a2a32 0%, #18181d 100%);
    border-radius: 44px;
    padding: 10px;
    box-shadow:
        0 0 0 2px #1f1f25,
        0 40px 80px -20px rgba(0,0,0,0.6),
        0 0 60px rgba(16, 185, 129, 0.2);
    position: relative;
}
.phone-notch {
    position: absolute;
    top: 18px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 24px;
    background: #0a0a0f;
    border-radius: 999px;
    z-index: 2;
}
.phone-screen {
    background: linear-gradient(180deg, #0a0c14 0%, #0f1220 100%);
    border-radius: 36px;
    height: 100%;
    padding: 32px 14px 10px;
    display: flex; flex-direction: column;
    gap: 9px;
    overflow: hidden;
    position: relative;
}
.app-header {
    display: flex; justify-content: space-between; align-items: center;
    color: var(--text-dim);
    font-size: 0.7rem; letter-spacing: 1.2px; font-weight: 600;
    padding: 0 0.3rem;
}
.pill-90d {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.65rem;
}
.app-card {
    background: #15151c;
    border-radius: 16px;
    padding: 0.9rem 1rem;
}
.card-label {
    font-size: 0.62rem; letter-spacing: 1.2px;
    color: var(--text-dim); font-weight: 700;
    display: block; margin-bottom: 0.5rem;
}
.weight-row { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.7rem; }
.weight-row strong { font-size: 1.75rem; font-weight: 800; color: #fff; }
.weight-row small { font-size: 0.75rem; color: var(--text-dim); }
.mini-bar { height: 5px; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; }
.mini-fill { height: 100%; background: var(--gradient); border-radius: 999px; }

.app-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.app-card.small { padding: 0.75rem 0.9rem; }
.app-card.small strong { font-size: 1.15rem; font-weight: 800; color: #fff; }

.app-card.burn { flex-grow: 1; display: flex; flex-direction: column; }
.burn-graph { width: 100%; height: 60px; margin-top: 0.5rem; }

/* ===== Tracking — list items with title+desc ===== */
.track-list li { align-items: flex-start; }
.track-list li > div { flex: 1; font-size: 0.92rem; color: var(--text-dim); line-height: 1.5; }
.track-list li > div strong { display: block; color: var(--text); font-weight: 700; margin-bottom: 0.1rem; font-size: 0.98rem; }
.tracking-lead { color: var(--text-dim); margin-bottom: 1.25rem; line-height: 1.65; }
.app-stores { display: flex; gap: 0.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.store-pill {
    padding: 0.55rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
}

/* ===== Modern weight-loss app mockup ===== */
.app-statusbar {
    position: absolute;
    top: 10px; left: 0; right: 0;
    display: flex; justify-content: space-between;
    padding: 0 22px;
    color: rgba(255,255,255,0.75);
    font-size: 0.65rem;
    font-weight: 600;
    z-index: 3;
}
.sb-icons { letter-spacing: 2px; }

.app-greeting {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 0.4rem;
}
.greet-hi { display: block; font-weight: 700; font-size: 0.95rem; color: #fff; }
.greet-date { display: block; font-size: 0.68rem; color: var(--text-dim); margin-top: 0.1rem; }
.avatar-dot {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #f43f5e);
    border: 2px solid rgba(255,255,255,0.12);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.6);
}

/* Calorie ring card */
.app-ring-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: center;
    padding: 0.9rem 1rem;
    background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(6,182,212,0.08));
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 20px;
    position: relative;
}
.cal-ring { width: 78px; height: 78px; }
.ring-center {
    position: absolute;
    left: 1rem; top: 50%;
    transform: translateY(-50%);
    width: 78px; height: 78px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    pointer-events: none;
}
.ring-center strong { font-size: 1rem; font-weight: 800; color: #fff; line-height: 1; }
.ring-center span { font-size: 0.55rem; color: var(--text-dim); margin-top: 0.15rem; }
.ring-side { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.7rem; }
.ring-side > div { display: flex; align-items: center; gap: 0.35rem; }
.ring-side span { font-size: 0.75rem; }
.ring-side small { color: var(--text-dim); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.5px; }
.ring-side strong { color: #fff; font-weight: 700; font-size: 0.85rem; margin-left: auto; }

/* Macros */
.app-macros {
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    display: flex; flex-direction: column; gap: 0.55rem;
}
.macro { display: flex; flex-direction: column; gap: 0.25rem; }
.macro-top {
    display: flex; justify-content: space-between;
    font-size: 0.68rem; color: var(--text-dim);
}
.macro-top strong { color: #fff; font-weight: 700; }
.macro-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; }
.macro-fill { height: 100%; border-radius: 999px; }
.macro-fill.p { background: linear-gradient(90deg, #10b981, #06b6d4); }
.macro-fill.c { background: linear-gradient(90deg, #f59e0b, #fb923c); }
.macro-fill.f { background: linear-gradient(90deg, #a78bfa, #f43f5e); }

/* Stats tiles */
.app-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.stat-tile {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0.15rem;
    padding: 0.65rem 0.7rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
}
.tile-icon { font-size: 0.95rem; }
.stat-tile strong { color: #fff; font-size: 0.9rem; font-weight: 800; }
.stat-tile strong small { color: var(--text-dim); font-size: 0.65rem; font-weight: 500; margin-left: 0.1rem; }
.stat-tile > span:last-child { font-size: 0.6rem; color: var(--text-dim); letter-spacing: 0.3px; }

/* Weight card */
.app-weight-card {
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
}
.wc-top { display: flex; justify-content: space-between; align-items: flex-start; }
.app-weight-card .weight-row { margin-bottom: 0; }
.app-weight-card .weight-row strong { font-size: 1.35rem; }
.app-weight-card .weight-row em {
    font-style: normal;
    font-size: 0.65rem;
    font-weight: 700;
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.15);
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    margin-left: 0.4rem;
}
.app-weight-card .burn-graph { height: 36px; margin-top: 0.3rem; }

/* Missions / rewards */
.app-missions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0.85rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(244, 63, 94, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 14px;
}
.mis-left { display: flex; align-items: center; gap: 0.55rem; }
.mis-icon {
    width: 30px; height: 30px;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
}
.mis-left strong { display: block; color: #fff; font-size: 0.75rem; font-weight: 700; }
.mis-left span { display: block; color: var(--text-dim); font-size: 0.62rem; margin-top: 0.1rem; }
.mis-right {
    display: flex; align-items: center; gap: 0.3rem;
    padding: 0.3rem 0.55rem;
    background: rgba(0,0,0,0.35);
    border-radius: 999px;
}
.mis-right span { font-size: 0.75rem; }
.mis-right strong { color: #fbbf24; font-size: 0.78rem; font-weight: 800; }

/* Coach chat */
.app-coach {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.6rem;
    align-items: center;
    padding: 0.55rem 0.75rem;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.12), rgba(16, 185, 129, 0.08));
    border: 1px solid rgba(167, 139, 250, 0.25);
    border-radius: 14px;
}
.coach-avatar {
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
}
.coach-body strong { display: block; color: #fff; font-size: 0.72rem; font-weight: 700; }
.coach-body p { color: var(--text-dim); font-size: 0.68rem; line-height: 1.35; margin-top: 0.1rem; }
.coach-dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); }

/* Bottom tabbar */
.app-tabbar {
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    padding: 0.5rem 0.3rem 0.3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.tab {
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
    color: var(--text-dim);
    padding: 0.3rem;
    border-radius: 10px;
    opacity: 0.55;
}
.tab.active { opacity: 1; color: var(--primary); }
.tab-fab {
    background: var(--gradient);
    color: #0a0a0f !important;
    width: 44px; height: 44px;
    border-radius: 14px;
    font-size: 1.3rem;
    font-weight: 800;
    margin: -10px auto 0;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.45);
    opacity: 1 !important;
}

/* floating badge text shade for longer text */
.floating-badge { white-space: nowrap; }

/* Floating badges */
.floating-badge {
    position: absolute;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}
.floating-badge.done {
    background: var(--gradient);
    color: #051025;
    left: -10px;
    top: 55%;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.45);
}
.floating-badge.fat {
    background: #fff;
    color: #111;
    right: -20px;
    top: 28%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    animation-delay: 1.5s;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== CTA perks ===== */
.cta-perks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
}
.perk {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    position: relative;
}
.perk-featured { border-color: rgba(244, 63, 94, 0.45); }
.perk-num {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    min-width: 28px;
}
.perk p { font-size: 0.92rem; line-height: 1.45; }
.perk-badge {
    position: absolute;
    top: 0;
    right: 0.9rem;
    transform: translateY(-50%);
    padding: 0.3rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #f43f5e);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(244, 63, 94, 0.35);
    white-space: nowrap;
    z-index: 2;
}
.perk-badge.perk-badge--alt {
    color: #34d399;
    background: rgba(16, 185, 129, 0.16);
    border: 1px solid rgba(16, 185, 129, 0.45);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.18);
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }

/* ===== Pricing ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}
.price-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
    transform: scale(1.02);
}
.tag {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gradient);
    color: #051025;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}
.price-name { font-size: 1.2rem; margin-bottom: 1rem; }
.price { margin-bottom: 1.5rem; }
.price .amount { font-size: 2.5rem; font-weight: 800; display: block; }
.price .period { color: var(--text-dim); font-size: 0.9rem; }
.price-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}
.price-features li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border);
    color: var(--text-dim);
    font-size: 0.95rem;
}
.price-features li:last-child { border-bottom: none; }

/* ===== FAQ ===== */
.faq-container { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.1rem 1.4rem;
    transition: background 0.2s;
}
.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-dim); margin-top: 0.75rem; }

/* ===== Final CTA ===== */
.cta-box {
    padding: 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
}
.cta-box h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.cta-box > p { color: var(--text-dim); max-width: 55ch; margin: 0 auto 2rem; }
.cta-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 0.75rem;
    max-width: 700px;
    margin: 0 auto 1rem;
}
.cta-form input {
    padding: 0.9rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
}
.cta-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--surface-hi);
}
.fineprint { color: var(--text-dim); font-size: 0.85rem; }

/* ===== Footer ===== */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
.footer-desc { color: var(--text-dim); margin-top: 1rem; max-width: 32ch; }
.footer h4 { font-size: 1rem; margin-bottom: 1rem; }
.footer a { display: block; color: var(--text-dim); padding: 0.3rem 0; transition: color 0.2s; }
.footer a:hover { color: var(--text); }
.footer-bottom {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .price-card.featured { transform: none; }
    .masterpiece-grid,
    .tracking-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .masterpiece-image { aspect-ratio: 16 / 10; }
    .pain-layout { grid-template-columns: 1fr; }
    .tracking-wrap { padding: 2rem 1.25rem; }
}

@media (max-width: 720px) {
    .menu-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 72px; left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(16px);
        padding: 1rem 1.5rem 2rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        transition: transform 0.35s ease;
    }
    .nav-menu.active { transform: translateY(0); }
    .nav-menu .nav-link, .nav-menu .nav-cta {
        width: 100%;
        padding: 1rem 0;
        text-align: center;
        border-bottom: 1px solid var(--border);
    }
    .nav-menu .nav-cta { border-radius: 12px; margin-top: 0.75rem; }
    section { padding: 3.5rem 0; }
    .pain-grid-2 { grid-template-columns: 1fr 1fr; }
    .phone { transform: scale(0.9); }
    .trust-badges { gap: 1.5rem; flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 2rem 1.5rem; }

    /* Results carousel → 1 card visible with peek on mobile */
    .testimonial-grid {
        gap: 1rem;
        margin: 0 -1.25rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .testimonial-grid > .result-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    .results-arrow { width: 40px; height: 40px; font-size: 1.3rem; }
    .results-dot {
        width: 8px; height: 8px; border-radius: 50%;
        background: rgba(255,255,255,0.25);
        transition: background 0.2s, transform 0.2s, width 0.2s;
    }
    .results-dot.active {
        background: var(--primary);
        width: 22px; border-radius: 4px;
    }
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
.modal[hidden] { display: none; }
.modal.open { opacity: 1; pointer-events: auto; }
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 24, 0.78);
    backdrop-filter: blur(6px);
    cursor: pointer;
}
.modal-panel {
    position: relative;
    width: 100%;
    max-width: 640px;
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
    background: linear-gradient(180deg, rgba(20, 26, 45, 0.98), rgba(12, 16, 32, 0.98));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 2rem 1.5rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(16, 185, 129, 0.08);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.25s ease;
}
.modal.open .modal-panel { transform: translateY(0) scale(1); }
.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.9rem;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: rgba(244, 63, 94, 0.2); color: #fda4af; }
.modal-panel h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    padding-right: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.modal-body h4 {
    font-size: 0.95rem;
    margin-top: 1.1rem;
    margin-bottom: 0.35rem;
    color: var(--primary);
}
.modal-body p {
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.7;
}
.modal-body strong { color: var(--text); }
.modal-body a { color: var(--primary); text-decoration: underline; }
.modal-note {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border);
    font-size: 0.85rem !important;
}
@media (max-width: 540px) {
    .modal-panel { padding: 1.5rem 1.25rem 1rem; border-radius: 16px; }
    .modal-panel h3 { font-size: 1.15rem; }
}

/* ===== Event meta (date + countdown) ===== */
.event-meta {
    display: flex; flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin: 1rem 0 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
}
.event-when {
    display: flex; align-items: center; gap: 0.75rem;
    flex: 1; min-width: 220px;
}
.event-icon { font-size: 1.6rem; }
.event-when strong { display: block; font-size: 1rem; color: var(--text); }
.event-when span { display: block; color: var(--text-dim); font-size: 0.85rem; }
.countdown {
    display: flex; gap: 0.5rem;
}
.cd-unit {
    min-width: 52px;
    padding: 0.45rem 0.55rem;
    text-align: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(6,182,212,0.15));
    border: 1px solid rgba(16,185,129,0.3);
}
.cd-unit strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.cd-unit span { display: block; font-size: 0.68rem; color: var(--text-dim); margin-top: 0.2rem; }

/* ===== Scarcity seats bar ===== */
.seats-bar { margin-top: 1.25rem; }
.seats-label {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 0.4rem; font-size: 0.88rem; color: var(--text-dim);
}
.seats-label strong { color: var(--text); }
.seats-pct strong { color: #fda4af; }
.seats-track {
    height: 10px;
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.seats-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #06b6d4, #f43f5e);
    border-radius: 999px;
    box-shadow: 0 0 20px rgba(244, 63, 94, 0.4);
    transition: width 0.6s ease;
}

/* ===== Speaker section ===== */
.speaker { padding: 5rem 0; }
.speaker-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 3rem;
    align-items: center;
}
.speaker-photo { position: relative; }
.speaker-photo img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6), 0 0 60px rgba(16, 185, 129, 0.12);
    display: block;
}
.speaker-badge {
    position: absolute;
    right: -0.75rem; bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.8rem 1rem;
    background: rgba(12, 16, 32, 0.95);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.speaker-badge > span { font-size: 1.5rem; }
.speaker-badge strong { display: block; color: var(--primary); font-weight: 800; }
.speaker-badge > div > span { display: block; color: var(--text-dim); font-size: 0.75rem; }
.speaker-info h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 0.5rem; }
.speaker-title { color: var(--primary); font-weight: 600; margin-bottom: 1rem; }
.speaker-bio { color: var(--text-dim); line-height: 1.7; margin-bottom: 1.5rem; }
.speaker-stats {
    display: flex; gap: 2rem; flex-wrap: wrap;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.speaker-stats strong {
    display: block; font-size: 1.4rem; font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.speaker-stats span { color: var(--text-dim); font-size: 0.82rem; }
.as-seen-label {
    display: block; font-size: 0.75rem; letter-spacing: 2px;
    color: var(--text-dim); text-transform: uppercase; margin-bottom: 0.6rem;
}
.logo-strip {
    display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center;
    opacity: 0.6; filter: grayscale(1);
}
.media-logo {
    font-family: Georgia, serif;
    font-size: 0.95rem; letter-spacing: 0.5px;
    color: var(--text-dim);
}
.media-logo strong { color: var(--text); }

/* ===== Agenda ===== */
.agenda { padding: 5rem 0; }
.agenda-list {
    max-width: 780px; margin: 2.5rem auto 0;
    display: flex; flex-direction: column; gap: 1rem;
}
.agenda-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 14px;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
}
.agenda-item:hover { border-color: rgba(16, 185, 129, 0.4); transform: translateX(4px); }
.agenda-time {
    font-size: 1.4rem; font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1.1;
}
.agenda-time span { display: block; font-size: 0.75rem; color: var(--text-dim); font-weight: 500; -webkit-text-fill-color: var(--text-dim); }
.agenda-body h4 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.agenda-body p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.55; }
.agenda-highlight {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(244, 63, 94, 0.1));
    border-color: rgba(244, 63, 94, 0.35);
}

/* ===== Masterpiece YouTube iframe ===== */
.masterpiece-video iframe {
    width: 100%; height: 100%;
    border: 0;
    display: block;
}

/* ===== Voices (text testimonials) ===== */
.voices { padding: 5rem 0; }
.voices-grid {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}
.voices-grid::-webkit-scrollbar { display: none; }
.voices-grid > .voice-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
@media (max-width: 720px) {
    .voices-grid {
        gap: 1rem;
        margin: 2rem -1.25rem 0;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .voices-grid > .voice-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
}
.voice-card {
    padding: 1.75rem;
    border-radius: var(--radius);
    display: flex; flex-direction: column; gap: 1rem;
}
.voice-stars { color: #fbbf24; letter-spacing: 2px; font-size: 1.1rem; }
.voice-card blockquote {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--primary);
}
.voice-person {
    display: flex; align-items: center; gap: 0.8rem;
    margin-top: auto;
    padding-top: 0.8rem;
    border-top: 1px dashed var(--border);
}
.voice-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
}
.voice-person strong { display: block; color: var(--text); font-size: 0.92rem; }
.voice-person span { color: var(--text-dim); font-size: 0.8rem; }

/* ===== Lead Magnet ===== */
.lead-magnet { padding: 5rem 0; }
.lead-magnet-box {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(167, 139, 250, 0.08));
}
.lm-visual { position: relative; }
.lm-visual img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
    transform: rotate(-3deg);
    transition: transform 0.3s;
}
.lm-visual:hover img { transform: rotate(0deg) scale(1.02); }
.lm-stamp {
    position: absolute;
    top: -0.75rem; right: -0.75rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem; font-weight: 800; letter-spacing: 1.5px;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #f43f5e);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(244, 63, 94, 0.4);
    transform: rotate(10deg);
}
.lm-content h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 0.5rem 0 1rem; }
.lm-content > p { color: var(--text-dim); margin-bottom: 1.5rem; line-height: 1.65; }
.lm-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 0.6rem;
}
.lm-form input {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}
.lm-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.lm-form input::placeholder { color: var(--text-dim); }
.lm-note { color: var(--text-dim); font-size: 0.8rem; margin-top: 0.75rem; }
.lm-actions { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; }
.btn-line {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #06c755;
    color: #fff;
    border: none;
    padding: 0.95rem 1.4rem;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(6, 199, 85, 0.35);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-line:hover {
    background: #05a847;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(6, 199, 85, 0.45);
}
.line-icon { display: inline-flex; }
.lm-oa {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.92rem;
    padding: 0.4rem 0.8rem;
    background: rgba(6, 199, 85, 0.12);
    border: 1px dashed rgba(6, 199, 85, 0.45);
    color: #6ee7a7;
    border-radius: 10px;
}

/* ===== Sticky mobile CTA ===== */
.mobile-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 500;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(10, 14, 26, 0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.4);
}
.mobile-cta-text { display: flex; flex-direction: column; min-width: 0; }
.mobile-cta-text strong { font-size: 0.95rem; color: var(--text); }
.mobile-cta-text span { font-size: 0.75rem; color: var(--text-dim); font-variant-numeric: tabular-nums; }
.mobile-cta .btn { padding: 0.75rem 1.25rem; white-space: nowrap; }

/* ===== Responsive for new sections ===== */
@media (max-width: 900px) {
    .speaker-grid,
    .lead-magnet-box { grid-template-columns: 1fr; gap: 2rem; }
    .speaker-photo { max-width: 380px; margin: 0 auto; }
    .lm-visual { max-width: 280px; margin: 0 auto; }
    .lead-magnet-box { padding: 2rem 1.5rem; }
}
@media (max-width: 720px) {
    body { padding-bottom: 76px; }
    .mobile-cta { display: flex; }
    .event-meta { flex-direction: column; align-items: stretch; }
    .countdown { justify-content: space-between; }
    .cd-unit { flex: 1; min-width: 0; }
    .agenda-item { grid-template-columns: 90px 1fr; gap: 0.9rem; padding: 1rem; }
    .agenda-time { font-size: 1.15rem; }
    .speaker-stats { gap: 1.25rem; }
    .speaker-stats strong { font-size: 1.2rem; }
    .lm-form { grid-template-columns: 1fr; }
    .logo-strip { gap: 1rem; }
    .media-logo { font-size: 0.85rem; }
}
