/* ============================================
   The Genius Song™ — Redesigned Stylesheet
   Aesthetic: Refined Dark Luxury / Emerald & Gold
   ============================================ */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    /* Core Palette — Deep Forest with Gold Accents */
    --primary:       #0d9488;   /* teal-600 */
    --primary-dark:  #0f766e;   /* teal-700 */
    --primary-light: #2dd4bf;   /* teal-400 */
    --gold:          #d4a853;
    --gold-light:    #f0c96b;
    --gold-dark:     #b8882a;

    --text-primary:   #f0faf9;
    --text-secondary: #99d6d0;
    --text-muted:     #5eada6;

    --bg-deepest:   #040f0e;
    --bg-dark:      #071615;
    --bg-card:      #0c1f1e;
    --bg-card-alt:  #102221;
    --bg-border:    rgba(13, 148, 136, 0.18);

    --gradient-gold: linear-gradient(135deg, #d4a853 0%, #f0c96b 50%, #d4a853 100%);
    --gradient-teal: linear-gradient(135deg, #0d9488 0%, #2dd4bf 100%);
    --gradient-hero: linear-gradient(160deg, #040f0e 0%, #071f1d 60%, #0a2624 100%);

    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body:    'DM Sans', sans-serif;
    --font-mono:    'Space Mono', monospace;

    /* Spacing */
    --spacing-xs:  0.5rem;
    --spacing-sm:  1rem;
    --spacing-md:  1.5rem;
    --spacing-lg:  2rem;
    --spacing-xl:  3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Borders */
    --radius-sm:  0.375rem;
    --radius-md:  0.75rem;
    --radius-lg:  1.25rem;
    --radius-xl:  2rem;

    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
    --shadow-md:  0 4px 16px rgba(0,0,0,0.5);
    --shadow-lg:  0 12px 32px rgba(0,0,0,0.6);
    --shadow-xl:  0 24px 64px rgba(0,0,0,0.7);
    --glow-teal:  0 0 32px rgba(13, 148, 136, 0.25);
    --glow-gold:  0 0 24px rgba(212, 168, 83, 0.3);

    /* Transitions */
    --t-fast:   0.15s ease;
    --t-base:   0.3s ease;
    --t-slow:   0.6s ease;

    /* Z-index */
    --z-sticky: 1020;
    --z-fixed:  1030;
    --z-modal:  1050;
    --z-popup:  1060;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-deepest);
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t-base); }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background: rgba(4, 15, 14, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--bg-border);
    z-index: var(--z-sticky);
    transition: all var(--t-base);
}

.navbar.scrolled {
    background: rgba(4, 15, 14, 0.97);
    box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
    transition: color var(--t-base);
}

.nav-link:hover { color: var(--primary-light); }

.nav-cta {
    padding: 0.55rem 1.4rem;
    background: var(--gradient-gold);
    color: #040f0e;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: all var(--t-base);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all var(--t-base);
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 68px; left: -100%;
        width: 100%;
        height: calc(100vh - 68px);
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: left var(--t-base);
        border-top: 1px solid var(--bg-border);
    }
    .nav-menu.active { left: 0; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .nav-cta { width: 100%; text-align: center; padding: 1rem; }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 70px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(13,148,136,0.18) 0%, transparent 70%);
    top: -100px; left: -100px;
    animation: orbFloat 12s ease-in-out infinite;
}

.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,168,83,0.12) 0%, transparent 70%);
    top: 20%; right: -50px;
    animation: orbFloat 16s ease-in-out infinite reverse;
}

.orb-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(45,212,191,0.1) 0%, transparent 70%);
    bottom: -80px; left: 30%;
    animation: orbFloat 10s ease-in-out infinite;
}

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

.hero-container {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1rem;
    border: 1px solid rgba(212,168,83,0.4);
    border-radius: 100px;
    font-size: 0.78rem;
    font-family: var(--font-mono);
    letter-spacing: 0.06em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    background: rgba(212,168,83,0.06);
}

.badge-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.2rem;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.title-line {
    display: block;
    animation: fadeInUp 0.7s ease backwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; color: var(--text-secondary); }
.title-line:nth-child(2) { animation-delay: 0.25s; }
.title-line:nth-child(3) { animation-delay: 0.4s; color: var(--text-secondary); }

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

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.75;
    max-width: 520px;
    animation: fadeInUp 0.7s ease 0.5s backwards;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.7s ease 0.65s backwards;
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-guarantee svg { color: var(--primary-light); }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInUp 0.7s ease 0.8s backwards;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--bg-border);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-image {
    animation: fadeInRight 0.8s ease 0.3s backwards;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--glow-teal);
    border: 1px solid var(--bg-border);
    animation: imageFloat 7s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-16px); }
}

.floating-badge {
    position: absolute;
    background: rgba(12, 31, 30, 0.9);
    border: 1px solid var(--bg-border);
    backdrop-filter: blur(12px);
    padding: 0.6rem 0.9rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    animation: fadeInScale 0.5s ease backwards;
}

.floating-badge span { font-size: 1.2rem; }
.badge-1 { top: 8%; right: -8%; animation-delay: 1.2s; }
.badge-2 { bottom: 28%; left: -8%; animation-delay: 1.4s; }
.badge-3 { bottom: 8%; right: 8%; animation-delay: 1.6s; }

@media (max-width: 768px) {
    .hero { padding: 100px 0 50px; min-height: auto; }
    .hero-container { grid-template-columns: 1fr; gap: 2rem; }
    .hero-title { font-size: 2.8rem; }
    .hero-description { font-size: 1rem; }
    .hero-stats { gap: 1rem; }
    .stat-number { font-size: 1.4rem; }
    .badge-1, .badge-2 { position: static; margin: 0.4rem 0; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: all var(--t-base);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #040f0e;
    box-shadow: 0 4px 24px rgba(212,168,83,0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(212,168,83,0.45);
}

.btn-large {
    padding: 1.15rem 2.5rem;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .btn { width: 100%; }
    .btn:active { transform: scale(0.98); }
}

/* ============================================
   Timer Banner
   ============================================ */
.timer-banner {
    background: linear-gradient(90deg, #0a1f1e 0%, #0f2e2c 50%, #0a1f1e 100%);
    border-top: 1px solid var(--bg-border);
    border-bottom: 1px solid var(--bg-border);
    color: var(--text-primary);
    padding: 1.25rem 0;
    position: sticky;
    top: 68px;
    z-index: var(--z-sticky);
}

.timer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.timer-text {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.timer-icon { font-size: 1.2rem; animation: pulse 2s infinite; }

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(13,148,136,0.12);
    border: 1px solid var(--bg-border);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    min-width: 56px;
}

.timer-value {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--gold);
}

.timer-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

.timer-separator {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}

.timer-cta {
    padding: 0.65rem 1.5rem;
    background: var(--gradient-gold);
    color: #040f0e;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    transition: all var(--t-base);
    white-space: nowrap;
}

.timer-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

@media (max-width: 768px) {
    .timer-content { flex-direction: column; gap: 0.75rem; }
    .timer-text { font-size: 0.875rem; }
    .timer-cta { width: 100%; text-align: center; }
}

/* ============================================
   Section Shared Styles
   ============================================ */
.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(45,212,191,0.3);
    border-radius: 100px;
    background: rgba(45,212,191,0.06);
}

.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing-section {
    padding: 5rem 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--bg-border);
}

.pricing-image {
    text-align: center;
    margin-top: 2.5rem;
}

.pricing-image img {
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl), var(--glow-teal);
    border: 1px solid var(--bg-border);
    transition: transform var(--t-base);
}

.pricing-image img:hover { transform: scale(1.02); }

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: 6rem 0;
    background: var(--bg-deepest);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image { position: relative; }

.image-decoration {
    position: absolute;
    top: -16px; right: -16px;
    width: 100%; height: 100%;
    background: var(--gradient-teal);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.12;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), var(--glow-teal);
    border: 1px solid var(--bg-border);
}

.about-text p {
    margin-bottom: 1.4rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-text strong { color: var(--primary-light); }
.about-text em { color: var(--gold); font-style: italic; }
.about-text .btn { margin-top: 0.75rem; }

@media (max-width: 768px) {
    .about-content { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--bg-border);
    border-bottom: 1px solid var(--bg-border);
}

.how-content { max-width: 820px; margin: 0 auto; }

.how-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 1.05rem;
}

.how-content p strong { color: var(--primary-light); }
.how-content p em { color: var(--gold); font-style: italic; }

/* ============================================
   Reviews Section
   ============================================ */
.reviews-section {
    padding: 6rem 0;
    background: var(--bg-deepest);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}

.review-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--bg-border);
    transition: all var(--t-base);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px; right: 1.5rem;
    font-family: var(--font-display);
    font-size: 8rem;
    color: rgba(13,148,136,0.08);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(13,148,136,0.4);
    box-shadow: var(--glow-teal), var(--shadow-lg);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 54px; height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(45,212,191,0.4);
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.reviewer-location {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.review-rating {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.review-text {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.93rem;
    font-style: italic;
}

.review-verified {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--primary-light);
    font-family: var(--font-mono);
}

@media (max-width: 768px) {
    .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================
   What's Inside Section
   ============================================ */
.whats-inside {
    padding: 6rem 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--bg-border);
}

.inside-content > p {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
    line-height: 1.8;
    text-align: center;
}

.inside-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 1.75rem;
    background: var(--bg-card);
    padding: 1.75rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--bg-border);
    transition: all var(--t-base);
}

.feature-item:hover {
    border-color: rgba(212,168,83,0.3);
    transform: translateX(6px);
    box-shadow: var(--glow-gold);
}

.feature-number {
    flex-shrink: 0;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 36px;
    padding-top: 0.15rem;
    letter-spacing: 0.05em;
}

.feature-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.feature-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.93rem;
}

@media (max-width: 768px) {
    .feature-item { flex-direction: column; gap: 1rem; }
}

/* ============================================
   How to Use Section
   ============================================ */
.how-to-use {
    padding: 6rem 0;
    background: var(--bg-deepest);
}

.steps-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.steps-intro p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.step-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--bg-border);
    text-align: center;
    transition: all var(--t-base);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(13,148,136,0.4);
    box-shadow: var(--glow-teal);
}

.step-icon {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(212,168,83,0.1);
    border: 1px solid rgba(212,168,83,0.25);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.06em;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.92rem;
}

/* ============================================
   Guarantee Section
   ============================================ */
.guarantee-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #061412 0%, #0c2220 50%, #071716 100%);
    border-top: 1px solid var(--bg-border);
    border-bottom: 1px solid var(--bg-border);
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212,168,83,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
}

.guarantee-badge img {
    max-width: 240px;
    filter: drop-shadow(0 0 24px rgba(212,168,83,0.3));
    animation: slowSpin 20s linear infinite;
}

@keyframes slowSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.guarantee-text h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.guarantee-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .guarantee-content { grid-template-columns: 1fr; text-align: center; }
    .guarantee-badge img { max-width: 170px; margin: 0 auto; }
    .guarantee-text h2 { font-size: 1.7rem; }
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--bg-border);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--bg-border);
    transition: all var(--t-base);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(13,148,136,0.4);
    box-shadow: var(--glow-teal);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.91rem;
}

/* ============================================
   Bonuses Section
   ============================================ */
.bonuses-section {
    padding: 6rem 0;
    background: var(--bg-deepest);
}

.bonuses-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2.5rem;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--bg-border);
    transition: all var(--t-base);
}

.bonus-card:hover {
    border-color: rgba(212,168,83,0.3);
    box-shadow: var(--glow-gold);
    transform: translateY(-3px);
}

.bonus-image img {
    border-radius: var(--radius-md);
    width: 100%;
    border: 1px solid var(--bg-border);
}

.bonus-tag {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.bonus-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.bonus-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.93rem;
}

@media (max-width: 768px) {
    .bonus-card { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================
   Where to Buy Section
   ============================================ */
.where-to-buy {
    padding: 6rem 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--bg-border);
}

.buy-content > p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    font-size: 1.05rem;
}

.buy-reasons h3 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.75rem;
}

.reason-item {
    background: var(--bg-card);
    padding: 1.75rem 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    border: 1px solid var(--bg-border);
    border-left: 3px solid var(--primary);
    transition: all var(--t-base);
}

.reason-item:hover {
    border-left-color: var(--gold);
    transform: translateX(6px);
    box-shadow: var(--glow-teal);
}

.reason-item h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.reason-item p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.93rem;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-deepest);
}

.faq-container {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    margin-bottom: 0.85rem;
    border: 1px solid var(--bg-border);
    overflow: hidden;
    transition: all var(--t-base);
}

.faq-item.active {
    border-color: rgba(13,148,136,0.4);
    box-shadow: var(--glow-teal);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.35rem 1.5rem;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: color var(--t-base);
}

.faq-question:hover { color: var(--primary-light); }
.faq-icon { flex-shrink: 0; color: var(--primary-light); transition: transform var(--t-base); }
.faq-item.active .faq-icon { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-base);
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.93rem;
    border-top: 1px solid var(--bg-border);
    padding-top: 1rem;
}

/* ============================================
   Final CTA Section
   ============================================ */
.final-cta {
    padding: 6rem 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--bg-border);
    text-align: center;
}

.cta-content { max-width: 700px; margin: 0 auto; }
.cta-content .section-label { display: block; margin-bottom: 1rem; }

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.cta-content > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-image {
    margin: 2rem 0;
}

.cta-image img {
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl), var(--glow-teal);
    border: 1px solid var(--bg-border);
}

.cta-guarantee {
    margin-top: 1rem;
    font-size: 0.84rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-deepest);
    border-top: 1px solid var(--bg-border);
    padding: 3rem 0;
}

.footer-content { text-align: center; }

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
    line-height: 1.65;
}

.footer-content p strong { color: var(--text-secondary); }
.footer-content a { color: var(--primary-light); transition: color var(--t-base); }
.footer-content a:hover { color: var(--gold); }

.copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bg-border);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    font-size: 0.84rem;
}

.footer-links span { color: var(--bg-border); }

@media (max-width: 768px) {
    .footer-links { flex-wrap: wrap; gap: 0.5rem; }
}

/* ============================================
   Scroll to Top
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 50px; height: 50px;
    background: var(--gradient-gold);
    color: #040f0e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-base);
    z-index: var(--z-fixed);
    box-shadow: var(--glow-gold), var(--shadow-lg);
}

.scroll-to-top.visible { opacity: 1; visibility: visible; }
.scroll-to-top:hover { transform: translateY(-5px); }

/* ============================================
   Purchase Notification
   ============================================ */
.purchase-notification {
    position: fixed;
    bottom: 28px; left: 28px;
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl), var(--glow-teal);
    z-index: var(--z-popup);
    opacity: 0;
    transform: translateY(80px);
    transition: all var(--t-base);
    max-width: 320px;
    backdrop-filter: blur(12px);
}

.purchase-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-icon { font-size: 1.75rem; flex-shrink: 0; }

.notification-text {
    flex: 1;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.notification-name { color: var(--primary-light); font-weight: 700; }

.notification-close {
    flex-shrink: 0;
    color: var(--text-muted);
    font-size: 1.25rem;
    padding: 0 0.25rem;
    transition: color var(--t-fast);
}

.notification-close:hover { color: var(--text-primary); }

@media (max-width: 768px) {
    .purchase-notification { bottom: 16px; left: 16px; right: 16px; max-width: none; }
}

/* ============================================
   Exit Intent Popup
   ============================================ */
.exit-popup {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
}

.exit-popup.show { display: flex; }

.exit-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 15, 14, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.exit-popup-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(212,168,83,0.3);
    border-radius: var(--radius-xl);
    max-width: 560px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--glow-gold), var(--shadow-xl);
    animation: slideInUp 0.4s ease;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.exit-popup-close {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: all var(--t-base);
    z-index: 1;
}

.exit-popup-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.exit-popup-body {
    padding: 2.75rem 2rem;
    text-align: center;
}

.exit-popup-body h2 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.exit-popup-subtitle {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
}

.exit-popup-offer {
    background: linear-gradient(135deg, #0c2220, #102e2c);
    border: 1px solid rgba(212,168,83,0.3);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.offer-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    background: rgba(212,168,83,0.15);
    border: 1px solid rgba(212,168,83,0.3);
    color: var(--gold);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 0.85rem;
}

.exit-popup-offer h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.exit-popup-offer p { color: var(--text-muted); font-size: 0.9rem; }

.exit-popup-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
}

.exit-benefit {
    background: var(--bg-card-alt);
    border: 1px solid var(--bg-border);
    padding: 0.7rem 1rem;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.exit-popup-cta {
    display: block;
    width: 100%;
    padding: 1.1rem 2rem;
    background: var(--gradient-gold);
    color: #040f0e;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
    transition: all var(--t-base);
}

.exit-popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

.exit-popup-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

#exitTimer { font-weight: 700; color: #f87171; }

@media (max-width: 768px) {
    .exit-popup-body { padding: 2rem 1.25rem; }
    .exit-popup-body h2 { font-size: 1.5rem; }
    .exit-popup-offer h3 { font-size: 1.25rem; }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s ease;
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   Utility
   ============================================ */
.center   { text-align: center; }
.hidden   { display: none !important; }
.visible  { display: block !important; }
