/* ============================================
   PODCAST AI AGENT — SALES PAGE STYLES
   Premium Dark Theme with Glassmorphism
   ============================================ */

/* ---------- Reset & Base ---------- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

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

:root {
    --bg-primary: #060613;
    --bg-secondary: #0c0c24;
    --bg-card: rgba(15, 15, 45, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --accent-cyan: #00e5ff;
    --accent-purple: #a855f7;
    --accent-magenta: #e040fb;
    --accent-green: #39ff14;
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0c0;
    --text-muted: #6b6b8d;
    --gradient-hero: linear-gradient(135deg, #00e5ff 0%, #a855f7 50%, #e040fb 100%);
    --gradient-cta: linear-gradient(135deg, #00e5ff 0%, #a855f7 100%);
    --gradient-warm: linear-gradient(135deg, #ff6b35 0%, #e040fb 100%);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --shadow-glow-cyan: 0 0 40px rgba(0, 229, 255, 0.3);
    --shadow-glow-purple: 0 0 40px rgba(168, 85, 247, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --section-padding: 80px 0;
    --container-max: 960px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-cyan); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent-magenta); }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: 'Sora', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 600; }

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

.eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 16px;
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 100px;
    background: rgba(0, 229, 255, 0.06);
}

.subheadline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 700px;
    margin: 20px auto 0;
}

.emphasize {
    color: var(--accent-cyan);
    font-weight: 600;
}

/* ---------- Sections ---------- */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-dark { background: var(--bg-primary); }

.section-darker {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.section-gradient {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.section-label {
    text-align: center;
    margin-bottom: 48px;
}

.section-label h2 {
    margin-top: 12px;
}

/* ---------- Hero Section ---------- */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, rgba(168, 85, 247, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 8px;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent-magenta);
    -webkit-text-fill-color: var(--accent-magenta);
}

/* ---------- Floating Orbs (Background) ---------- */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.4;
    z-index: 0;
}

.orb-1 {
    width: 400px; height: 400px;
    background: var(--accent-cyan);
    top: -100px; right: -150px;
    animation: orbFloat 12s ease-in-out infinite;
}

.orb-2 {
    width: 300px; height: 300px;
    background: var(--accent-purple);
    bottom: -100px; left: -100px;
    animation: orbFloat 16s ease-in-out infinite reverse;
}

.orb-3 {
    width: 250px; height: 250px;
    background: var(--accent-magenta);
    top: 50%; right: -80px;
    animation: orbFloat 14s ease-in-out infinite 3s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* ---------- Bullet List ---------- */
.check-list {
    list-style: none;
    text-align: left;
    max-width: 640px;
    margin: 32px auto;
}

.check-list li {
    padding: 10px 0 10px 36px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.x-list li::before {
    content: '✕';
    color: #ff4757;
}

/* ---------- Trust Strip ---------- */
.trust-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 24px 0;
    margin: 32px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-item .icon {
    font-size: 1.4rem;
}

.stars {
    color: #ffc107;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

/* ---------- CTA Button ---------- */
.cta-wrapper {
    text-align: center;
    padding: 40px 0;
}

.cta-btn {
    display: inline-block;
    padding: 18px 48px;
    background: var(--gradient-cta);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 30px rgba(0, 229, 255, 0.3);
    animation: ctaPulse 2.5s ease-in-out infinite;
    letter-spacing: 0.02em;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 50px rgba(0, 229, 255, 0.5);
    color: #fff;
}

.cta-btn-large {
    padding: 22px 60px;
    font-size: 1.3rem;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 30px rgba(0, 229, 255, 0.3); }
    50% { box-shadow: 0 4px 50px rgba(0, 229, 255, 0.55), 0 0 80px rgba(168, 85, 247, 0.2); }
}

.cta-sub {
    display: block;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cta-sub .price-tag {
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 1rem;
}

/* WarriorPlus button wrapper */
.wp-button-wrapper {
    text-align: center;
    margin: 16px 0;
}

.wp-button-wrapper img {
    display: inline-block;
    transition: transform 0.3s, filter 0.3s;
    border-radius: 8px;
}

.wp-button-wrapper img:hover {
    transform: scale(1.05);
    filter: brightness(1.15);
}

/* ---------- Product Mockup ---------- */
.product-hero {
    text-align: center;
    margin: 48px auto;
    max-width: 700px;
}

.product-hero img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(0, 229, 255, 0.1);
    margin: 0 auto;
}

/* ---------- Glass Card ---------- */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-cyan);
    border-color: rgba(0, 229, 255, 0.15);
}

/* ---------- Comparison Table ---------- */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-col {
    padding: 32px;
    border-radius: var(--radius-md);
}

.comparison-col.old-way {
    background: rgba(255, 71, 87, 0.06);
    border: 1px solid rgba(255, 71, 87, 0.15);
}

.comparison-col.new-way {
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid rgba(0, 229, 255, 0.15);
}

.comparison-col h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-col.old-way h3 { color: #ff4757; }
.comparison-col.new-way h3 { color: var(--accent-cyan); }

.comparison-col ul {
    list-style: none;
}

.comparison-col ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-subtle);
}

.comparison-col ul li:last-child { border-bottom: none; }

.comparison-col.old-way ul li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ff4757;
    font-weight: 700;
}

.comparison-col.new-way ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

/* ---------- Steps ---------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.step-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.2);
}

.step-number {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.step-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ---------- Discover Items ---------- */
.discover-list {
    max-width: 760px;
    margin: 0 auto;
}

.discover-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.discover-item:last-child { border-bottom: none; }

.discover-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-cta);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-top: 2px;
}

.discover-item p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.discover-item p strong {
    color: var(--text-primary);
}

/* ---------- Value Stack ---------- */
.value-stack {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 28px;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 1rem;
}

.value-row:last-of-type { border-bottom: none; }

.value-row .item-name { color: var(--text-secondary); }
.value-row .item-value {
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: line-through;
}

.value-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    background: rgba(255, 71, 87, 0.08);
    border-top: 2px solid rgba(255, 71, 87, 0.2);
    font-weight: 700;
    font-size: 1.15rem;
}

.value-total .item-value {
    color: #ff4757;
    text-decoration: line-through;
    font-size: 1.3rem;
}

.your-price {
    text-align: center;
    padding: 32px 28px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(168, 85, 247, 0.08));
    border-top: 2px solid var(--accent-cyan);
}

.your-price .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.your-price .price {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

.your-price .one-time {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ---------- Bonuses ---------- */
.bonus-card {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.04), rgba(168, 85, 247, 0.04));
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 32px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.1);
}

.bonus-card::before {
    content: 'BONUS';
    position: absolute;
    top: 16px;
    right: -28px;
    background: var(--gradient-warm);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 36px;
    transform: rotate(45deg);
    letter-spacing: 0.1em;
}

.bonus-number {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent-magenta);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.bonus-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.bonus-card p {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.bonus-value {
    font-family: 'Space Mono', monospace;
    color: var(--accent-cyan);
    font-size: 0.85rem;
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    padding: 24px 40px 24px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.faq-question:hover { color: var(--accent-cyan); }

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-cyan);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---------- No-Need Strip ---------- */
.no-need-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 32px 0;
}

.no-need-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 71, 87, 0.06);
    border: 1px solid rgba(255, 71, 87, 0.12);
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.no-need-item .x-icon {
    color: #ff4757;
    font-weight: 700;
}

/* ---------- Sticky CTA Bar ---------- */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(6, 6, 19, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    padding: 12px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-cta .price-info {
    font-family: 'Sora', sans-serif;
}

.sticky-cta .price-info .og-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-right: 8px;
}

.sticky-cta .price-info .current-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

.sticky-cta .cta-btn {
    padding: 12px 32px;
    font-size: 0.95rem;
    animation: none;
}

/* ---------- Footer ---------- */
.site-footer {
    padding: 48px 0;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent-cyan); }

.footer-copy {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* WP Disclaimer */
.wplus_spdisclaimer {
    max-width: 700px;
    margin: 32px auto;
    padding: 20px;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
    border-top: 1px solid var(--border-subtle);
}

/* ---------- Page Header (Secondary Pages) ---------- */
.page-header {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}

.page-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.page-header .logo {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.page-header nav {
    display: flex;
    gap: 20px;
}

.page-header nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.page-header nav a:hover { color: var(--accent-cyan); }

/* ---------- Content Page (Secondary) ---------- */
.content-page {
    padding: 60px 0;
    min-height: 60vh;
}

.content-page h1 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin-bottom: 32px;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-page h2 {
    font-size: 1.2rem;
    margin: 32px 0 12px;
    color: var(--accent-cyan);
}

.content-page p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.content-page ul {
    list-style: none;
    margin-bottom: 16px;
}

.content-page ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.content-page ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
}

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 32px 0;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    padding: 14px 40px;
    background: var(--gradient-cta);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 229, 255, 0.3);
}

/* ---------- Pain Section ---------- */
.pain-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.pain-block p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.pain-block .highlight {
    color: #ff4757;
    font-weight: 600;
}

.pain-block .callout {
    background: rgba(255, 71, 87, 0.06);
    border-left: 3px solid #ff4757;
    padding: 20px 24px;
    text-align: left;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 28px 0;
    font-style: italic;
    color: var(--text-secondary);
}

/* ---------- Intro/Reveal Section ---------- */
.reveal-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.reveal-block p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

/* ---------- Who Is This For ---------- */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 32px auto;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.audience-item .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ---------- Urgency Banner ---------- */
.urgency-banner {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(224, 64, 251, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    max-width: 600px;
    margin: 32px auto;
}

.urgency-banner h3 {
    color: #ff6b35;
    margin-bottom: 8px;
}

.urgency-banner p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    :root {
        --section-padding: 56px 0;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .sticky-cta .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .sticky-cta .cta-btn {
        width: 100%;
    }

    .trust-strip {
        gap: 16px;
    }

    h1 { font-size: 1.8rem; }

    .your-price .price { font-size: 2.4rem; }

    .cta-btn { padding: 16px 36px; font-size: 1rem; }
    .cta-btn-large { padding: 18px 44px; font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .glass-card { padding: 24px; }
    .comparison-col { padding: 24px; }
    .bonus-card { padding: 24px; }
    .no-need-grid { flex-direction: column; align-items: center; }
}

/* ---------- Scroll Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Progress bar at top */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-hero);
    z-index: 9999;
    transition: width 0.1s linear;
    width: 0%;
}
