@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Outfit:wght@300;400;700;900&display=swap');

/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
    --bg: #060608;
    --bg-card: rgba(255,255,255,0.03);
    --border: rgba(255,255,255,0.07);
    --accent: #6366f1;
    --accent-dim: rgba(99,102,241,0.15);
    --accent-glow: rgba(99,102,241,0.4);
    --purple: #a855f7;
    --red: #f87171;
    --green: #34d399;
    --text: #f1f1f4;
    --dim: #9ca3af;
    --radius: 1.5rem;
    --pill: 100px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ═══════════════════════════════════════
   RESET
═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Outfit', sans-serif; font-weight: 900; letter-spacing: -0.04em; line-height: 1; }
strong { color: #fff; }
a { text-decoration: none; }
em { font-style: normal; color: var(--accent); }

/* ═══════════════════════════════════════
   AMBIENT BLOBS
═══════════════════════════════════════ */
.blob {
    position: fixed; z-index: 0; pointer-events: none;
    top: -200px; left: -200px;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 65%);
    filter: blur(100px);
    animation: blobDrift 30s ease-in-out infinite alternate;
}
.blob::after {
    content: '';
    position: fixed;
    bottom: -300px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(168,85,247,0.08) 0%, transparent 70%);
    filter: blur(120px);
    animation: blobDrift 20s ease-in-out infinite alternate-reverse;
}
@keyframes blobDrift {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(100px, 80px) scale(1.15); }
}
.grid-overlay {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
}

/* ═══════════════════════════════════════
   SECTION REVEAL
═══════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(50px); }
    to   { opacity: 1; transform: translateY(0); }
}
section { animation: fadeUp 0.9s var(--ease) both; position: relative; z-index: 1; }
.pain-section    { animation-delay: 0.1s; }
.how-it-works    { animation-delay: 0.15s; }
.features        { animation-delay: 0.2s; }
.testimonials    { animation-delay: 0.25s; }
.pricing         { animation-delay: 0.3s; }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 500;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 5%;
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    background: rgba(6,6,8,0.7);
    border-bottom: 1px solid var(--border);
}
.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem; font-weight: 900; font-style: italic;
    letter-spacing: -0.02em;
}
.logo .accent {
    background: linear-gradient(135deg, var(--accent), var(--purple));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
    color: var(--dim); font-size: 0.78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
    padding: 0.65rem 1.6rem !important;
    font-size: 0.78rem !important;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1rem 2.4rem; border-radius: var(--pill);
    font-weight: 800; font-size: 0.88rem; letter-spacing: 0.06em;
    text-transform: uppercase; transition: all 0.4s var(--ease);
    cursor: pointer; border: none; position: relative; overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #818cf8 100%);
    color: #fff;
    box-shadow: 0 8px 30px rgba(99,102,241,0.35), 0 0 0 0 rgba(99,102,241,0.4);
}
.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(99,102,241,0.5), 0 0 60px rgba(99,102,241,0.2);
}
.btn-primary.btn-lg {
    padding: 1.3rem 3rem;
    font-size: 1rem;
}
.btn-ghost {
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text); background: rgba(255,255,255,0.04);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   BADGES
═══════════════════════════════════════ */
.badge-inline {
    display: inline-flex; align-items: center;
    padding: 0.35rem 1rem; border-radius: var(--pill);
    font-size: 0.65rem; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase;
}
.accent-badge {
    background: linear-gradient(135deg, var(--accent), var(--purple));
    color: #fff; box-shadow: 0 4px 14px rgba(99,102,241,0.3);
}

/* ═══════════════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════════════ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 5%; }
.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    text-align: center; margin-bottom: 0.75rem;
}
.section-sub {
    text-align: center; color: var(--dim); font-size: 1rem;
    margin-bottom: 4rem;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
section.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 120px 8% 80px;
}
section.hero::before {
    content: '';
    position: absolute; top: 50%; left: 25%;
    transform: translate(-50%,-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.07) 0%, transparent 60%);
    pointer-events: none;
}
.hero-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--accent-dim);
    border: 1px solid rgba(99,102,241,0.3);
    border-radius: var(--pill);
    font-size: 0.7rem; font-weight: 800;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: #a5b4fc;
    margin-bottom: 1.5rem;
}
.hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
}
.gradient-text {
    background: linear-gradient(135deg, #fff 40%, var(--accent) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    font-size: 1.05rem; color: var(--dim); margin-bottom: 2rem; line-height: 1.8;
}
.hero-hook {
    font-size: 0.95rem; font-style: italic; color: rgba(255,255,255,0.35);
    margin-bottom: 1.5rem; line-height: 1.6;
}
.hero-persona {
    font-size: 0.75rem; color: var(--dim); letter-spacing: 0.05em;
    margin-top: -1.5rem; margin-bottom: 2rem;
}
.loss {
    color: #ff6b6b; font-size: 0.78rem; font-weight: 700;
    margin-top: -0.5rem; margin-bottom: 1.2rem;
}
.stars-row {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 2rem;
}
.stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 2px; }
.stars.small { font-size: 0.85rem; }
.stars-label { font-size: 0.78rem; color: var(--dim); font-weight: 600; }
.cta-group {
    display: flex; gap: 1rem; flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.micro-trust {
    font-size: 0.72rem; color: var(--dim);
}

/* ─── Product Mockup Widget ─── */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.product-mockup {
    background: rgba(10,10,16,0.9);
    border: 1px solid rgba(99,102,241,0.25);
    border-radius: 1.2rem;
    padding: 1.5rem;
    width: 100%; max-width: 420px;
    box-shadow:
        0 40px 80px rgba(0,0,0,0.5),
        0 0 80px rgba(99,102,241,0.08),
        inset 0 1px 0 rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
}
.mockup-topbar {
    display: flex; align-items: center; gap: 7px;
    margin-bottom: 1.2rem;
}
.dot {
    width: 10px; height: 10px; border-radius: 50%;
}
.dot.red    { background: #f87171; }
.dot.yellow { background: #fbbf24; }
.dot.green  { background: #34d399; }
.mockup-title {
    font-size: 0.7rem; font-weight: 700;
    color: var(--dim); margin-left: 8px;
    letter-spacing: 0.08em; text-transform: uppercase;
}
.mockup-search {
    display: flex; align-items: center; gap: 10px;
    background: rgba(99,102,241,0.08);
    border: 1px solid rgba(99,102,241,0.35);
    border-radius: 0.7rem;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
}
.search-icon { color: var(--accent); font-size: 0.8rem; }
.search-text { font-size: 0.88rem; font-weight: 600; color: #a5b4fc; flex: 1; }
.search-cursor {
    color: var(--accent);
    animation: blink 1.2s steps(1) infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.mockup-results { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1rem; }
.result-card {
    display: flex; align-items: center; gap: 10px;
    padding: 0.7rem 0.9rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 0.6rem;
    transition: all 0.3s;
    cursor: pointer;
}
.result-card.active, .result-card:hover {
    background: rgba(99,102,241,0.08);
    border-color: rgba(99,102,241,0.3);
}
.waveform {
    display: flex; align-items: center; gap: 2px;
    height: 24px; flex-shrink: 0;
}
.waveform span {
    display: block; width: 3px; border-radius: 2px;
    background: rgba(99,102,241,0.5);
    animation: wave 1.5s ease-in-out infinite alternate;
}
.result-card.active .waveform span { background: var(--accent); }
.waveform span:nth-child(1)  { height: 6px;  animation-delay: 0.0s; }
.waveform span:nth-child(2)  { height: 14px; animation-delay: 0.1s; }
.waveform span:nth-child(3)  { height: 20px; animation-delay: 0.2s; }
.waveform span:nth-child(4)  { height: 10px; animation-delay: 0.3s; }
.waveform span:nth-child(5)  { height: 18px; animation-delay: 0.4s; }
.waveform span:nth-child(6)  { height: 8px;  animation-delay: 0.5s; }
.waveform span:nth-child(7)  { height: 22px; animation-delay: 0.6s; }
.waveform span:nth-child(8)  { height: 12px; animation-delay: 0.7s; }
.waveform span:nth-child(9)  { height: 16px; animation-delay: 0.8s; }
.waveform span:nth-child(10) { height: 6px;  animation-delay: 0.9s; }
.waveform span:nth-child(11) { height: 14px; animation-delay: 1.0s; }
.waveform span:nth-child(12) { height: 8px;  animation-delay: 1.1s; }
@keyframes wave {
    from { transform: scaleY(0.5); opacity: 0.5; }
    to   { transform: scaleY(1.2); opacity: 1; }
}
.result-name { font-size: 0.75rem; font-weight: 700; flex: 1; color: var(--text); }
.result-match { font-size: 0.65rem; font-weight: 800; color: var(--green); }
.mockup-footer { border-top: 1px solid var(--border); padding-top: 0.8rem; }

/* ═══════════════════════════════════════
   PAIN — BEFORE / AFTER
═══════════════════════════════════════ */
.pain-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(248,113,113,0.03) 50%, transparent 100%);
}
.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem; align-items: center;
}
.ba-arrow {
    font-size: 2.5rem; color: var(--dim); text-align: center;
    animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
    0%,100% { transform: translateX(0); opacity: 0.5; }
    50%     { transform: translateX(6px); opacity: 1; }
}
.ba-card {
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.ba-card.before {
    background: rgba(248,113,113,0.04);
    border-color: rgba(248,113,113,0.15);
}
.ba-card.after {
    background: rgba(52,211,153,0.04);
    border-color: rgba(52,211,153,0.2);
}
.ba-label {
    font-size: 0.7rem; font-weight: 900;
    letter-spacing: 0.15em; text-transform: uppercase;
    margin-bottom: 1.5rem; padding: 0.3rem 0.8rem;
    display: inline-block; border-radius: var(--pill);
}
.before-label { background: rgba(248,113,113,0.15); color: var(--red); }
.after-label  { background: rgba(52,211,153,0.15); color: var(--green); }
.ba-card ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.ba-card li {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 0.92rem; line-height: 1.5;
}
.icon-x     { color: var(--red);   font-size: 0.8rem; font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.icon-check { color: var(--green); font-size: 0.8rem; font-weight: 900; flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.how-it-works {
    padding: 8rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(99,102,241,0.03) 50%, transparent 100%);
}
.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1rem; align-items: start;
}
.step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
}
.step:hover {
    border-color: rgba(99,102,241,0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(99,102,241,0.05);
}
.step-number {
    font-size: 0.65rem; font-weight: 900; letter-spacing: 0.2em;
    color: var(--accent); margin-bottom: 0.8rem;
    font-family: 'Outfit', sans-serif;
}
.step-icon { font-size: 2rem; margin-bottom: 1rem; }
.step h3 { font-size: 1.1rem; margin-bottom: 0.6rem; letter-spacing: -0.02em; }
.step p { font-size: 0.85rem; color: var(--dim); line-height: 1.6; }
.step-arrow {
    font-size: 2rem; color: var(--accent);
    opacity: 0.4; margin-top: 3rem;
    animation: arrowPulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════
   FEATURES
═══════════════════════════════════════ */
.features { padding: 8rem 0; }

/* Hero Feature (big) */
.feature-hero {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: center;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    transition: all 0.4s var(--ease);
    position: relative; overflow: hidden;
}
.feature-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(99,102,241,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.feature-hero:hover {
    border-color: rgba(99,102,241,0.25);
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.feature-hero-text .badge-inline { margin-bottom: 1.2rem; }
.feature-hero-text h3 { font-size: 2rem; margin-bottom: 1rem; }
.feature-hero-text p { color: var(--dim); line-height: 1.7; margin-bottom: 0.8rem; }
.feature-detail { font-size: 0.85rem !important; color: rgba(99,102,241,0.7) !important; }
.feature-hero-visual { display: flex; justify-content: center; }
.code-block {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 1rem; padding: 2.5rem;
    text-align: center; font-family: 'Inter', monospace;
    display: flex; flex-direction: column; gap: 0.8rem;
    min-width: 250px;
}
.code-label { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--dim); text-transform: uppercase; }
.code-query { font-size: 1rem; font-weight: 700; color: #a5b4fc; padding: 0.6rem 1rem; background: rgba(99,102,241,0.1); border-radius: 0.5rem; }
.code-arrow { font-size: 1.5rem; color: var(--accent); }
.code-result { font-size: 0.85rem; font-weight: 800; color: var(--green); }

/* 2 Smaller Feature Cards */
.features-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.feature-card {
    padding: 2rem 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
}
.feature-card:hover {
    border-color: rgba(99,102,241,0.25);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.feature-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.feature-card p { color: var(--dim); font-size: 0.9rem; line-height: 1.6; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials {
    padding: 8rem 0;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.testimonial-card {
    display: flex; gap: 2.5rem; align-items: flex-start;
    max-width: 700px; margin: 0 auto;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative; overflow: hidden;
}
.testimonial-card::before {
    content: '"';
    position: absolute; top: 1rem; right: 2rem;
    font-size: 8rem; font-family: 'Outfit', sans-serif;
    color: rgba(99,102,241,0.06); line-height: 1; pointer-events: none;
}
.avatar-placeholder {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(99,102,241,0.3);
}
.quote {
    font-size: 1.05rem; font-style: italic; font-weight: 300;
    line-height: 1.8; margin-bottom: 1rem; color: var(--text);
}
.author { font-size: 0.75rem; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing { padding: 8rem 0; }
.pricing .container { text-align: center; }

.pricing-card {
    max-width: 460px; margin: 0 auto;
    position: relative; overflow: hidden;
    padding: 3.5rem 3rem;
    background: linear-gradient(170deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(99,102,241,0.35);
    border-radius: var(--radius);
    box-shadow:
        0 0 100px rgba(99,102,241,0.08),
        0 40px 80px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.05);
    transform: scale(1.02);
}
.pricing-glow {
    position: absolute; top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 300px;
    background: radial-gradient(ellipse, rgba(99,102,241,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.pricing-product { font-size: 2rem; margin: 1rem 0 0.5rem; }
.price-block { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 0.8rem 0 0; }
.price-strike {
    font-size: 1.8rem; font-weight: 900;
    color: var(--dim); text-decoration: line-through;
    font-family: 'Outfit', sans-serif;
}
.price-main {
    font-size: 4rem; font-weight: 900;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.urgency {
    color: var(--accent); font-weight: 800;
    font-size: 0.68rem; letter-spacing: 0.12em;
    margin: 0.5rem 0 2rem;
}
.feature-list {
    list-style: none; text-align: left;
    margin: 0 auto 2rem; color: var(--dim); font-size: 0.9rem;
}
.feature-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: var(--text);
    gap: 10px;
}
.pricing-push {
    font-size: 1.1rem; font-weight: 800;
    margin-bottom: 1.5rem; color: var(--text);
}
.paypal-label {
    color: var(--accent); font-weight: 800;
    font-size: 0.75rem; letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}
.trust-badges {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 0.6rem; margin: 1.5rem 0 1rem;
}
.trust-badge {
    padding: 0.35rem 0.9rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--pill);
    font-size: 0.65rem; font-weight: 700;
    color: var(--dim);
}
.guarantee {
    font-size: 0.8rem; color: var(--dim); line-height: 1.8;
    border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 0.5rem;
}
.guarantee strong { color: var(--text); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--dim); font-size: 0.7rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    padding-bottom: 100px;
}

/* ═══════════════════════════════════════
   STICKY CTA (desktop + mobile)
═══════════════════════════════════════ */
.sticky-cta {
    position: fixed; bottom: 0; left: 0; width: 100%;
    z-index: 400;
    display: flex; align-items: center; justify-content: center; gap: 1.5rem;
    padding: 1rem 5%;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(to top, rgba(6,6,8,0.98) 70%, transparent);
    backdrop-filter: blur(10px);
    opacity: 0; transform: translateY(20px);
    transition: all 0.4s var(--ease);
    pointer-events: none;
}
.sticky-cta.visible {
    opacity: 1; transform: translateY(0);
    pointer-events: auto;
}
.sticky-label {
    font-size: 0.85rem; font-weight: 700; color: var(--dim);
    display: none; /* hidden on mobile, shown on desktop */
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes pulse {
    0%,100% { opacity: 0.6; }
    50%     { opacity: 1; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════ */
@media (max-width: 1024px) {
    section.hero { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { order: -1; }
    .product-mockup { max-width: 480px; }
    .cta-group { justify-content: center; }
    .steps { grid-template-columns: 1fr; }
    .step-arrow { transform: rotate(90deg); margin: 0 auto; }
    .before-after { grid-template-columns: 1fr; }
    .ba-arrow { transform: rotate(90deg); text-align: center; }
    .feature-hero { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }

    section.hero { padding: 100px 5% 80px; }
    .hero-content h1 { font-size: clamp(2.2rem, 11vw, 3.5rem); }

    .sticky-cta { padding: 1.2rem 5%; }
    .sticky-cta .btn { width: 100%; justify-content: center; }

    .testimonial-card { flex-direction: column; padding: 2rem; }
    .pricing-card { transform: scale(1); padding: 2.5rem 1.8rem; }
    .price-main { font-size: 3rem; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — DESKTOP (show sticky label)
═══════════════════════════════════════ */
@media (min-width: 769px) {
    .sticky-label { display: block; }
    .sticky-cta .btn { width: auto; }
}