/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #8B5CF6;
    --primary-cyan: #06B6D4;
    --dark-bg: #0F172A;
    --dark-card: #1E293B;
    --text-primary: #F1F5F9;
    --text-secondary: #CBD5E1;
    --accent-gold: #FBBF24;
    --success-green: #10B981;
    --danger-red: #EF4444;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   ICON STYLING
   ======================================== */
svg.lucide {
    stroke-width: 2;
}

.section-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-cyan);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 80px 20px 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1E1B4B 100%);
}

.exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-gold), #F59E0B);
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.exclusive-badge svg {
    width: 16px;
    height: 16px;
}

.spin-icon {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.headline {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.headline .highlight {
    background: linear-gradient(135deg, var(--danger-red), #DC2626);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheadline {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.subheadline strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.hero-image {
    margin: 60px 0 40px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-value {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.value-item {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--primary-purple);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.value-item svg {
    width: 32px;
    height: 32px;
    color: var(--primary-cyan);
    flex-shrink: 0;
}

.value-item p {
    font-size: 14px;
    line-height: 1.4;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button svg {
    width: 24px;
    height: 24px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    color: white;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* ========================================
   ORDER STATUS CHECKLIST
   ======================================== */
.order-status-checklist {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
    text-align: left;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-item:last-child {
    border-bottom: none;
}

.status-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.status-item.completed {
    color: var(--success-green);
    opacity: 0.7;
}

.status-item.pending {
    color: var(--danger-red);
    font-weight: 700;
}

.status-badge {
    margin-left: auto;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.status-item.completed .status-badge {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-green);
}

.status-item.pending .status-badge {
    background: var(--danger-red);
    color: white;
}

.status-badge.blink {
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.status-item.missed {
    color: var(--text-secondary);
    opacity: 0.8;
}

.status-badge.missed {
    background: #7f1d1d;
    /* Dark Red */
    color: #fca5a5;
    /* Light Red Text */
    border: 1px solid #ef4444;
    text-decoration: line-through;
    opacity: 0.8;
}

.presentation-text .text-highlight {
    color: var(--accent-gold);
    font-weight: 700;
}

/* ========================================
   STICKY MOBILE CTA
   ======================================== */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(15, 15, 20, 0.95);
    border: 1px solid var(--primary-cyan);
    border-radius: 16px;
    padding: 12px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sticky-cta.hidden {
    transform: translateY(150%);
    opacity: 0;
    pointer-events: none;
}

.sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sticky-info {
    display: flex;
    flex-direction: column;
}

.sticky-price {
    font-weight: 800;
    color: white;
    font-size: 16px;
}

.sticky-price small {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

.sticky-label {
    font-size: 10px;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticky-button {
    background: var(--success-green);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    white-space: nowrap;
}

.sticky-button svg {
    width: 16px;
    height: 16px;
}

.sticky-button.pulsing-btn {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    }

    50% {
        box-shadow: 0 10px 40px rgba(139, 92, 246, 0.6);
    }
}

.cta-button.mega {
    font-size: 22px;
    padding: 24px 64px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.urgency-text {
    margin-top: 24px;
    font-size: 14px;
    color: var(--danger-red);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.urgency-text svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   WHY DIFFERENT SECTION
   ======================================== */
.why-different {
    padding: 80px 20px;
    background: var(--dark-card);
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-header svg {
    width: 64px;
    height: 64px;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.why-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 12px;
}

.subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto 60px;
    align-items: center;
}

.comparison-card {
    background: var(--dark-bg);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: transform 0.3s ease;
}

.comparison-card.incomplete {
    border-color: rgba(239, 68, 68, 0.3);
}

.comparison-card.complete {
    border-color: var(--success-green);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
}

.comparison-card:hover {
    transform: translateY(-4px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.comparison-card.incomplete .card-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(220, 38, 38, 0.3));
}

.card-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.comparison-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.comparison-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.comparison-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 12px 0;
    font-size: 15px;
}

.comparison-card li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-card.incomplete li svg {
    color: var(--text-secondary);
}

.comparison-card.complete li svg {
    color: var(--success-green);
}

.result {
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
}

.result.bad {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-red);
}

.result.good {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
}

.comparison-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-arrow svg {
    width: 48px;
    height: 48px;
    color: var(--primary-cyan);
}

.secret-truth {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid var(--danger-red);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.secret-truth svg {
    width: 56px;
    height: 56px;
    color: var(--danger-red);
    margin-bottom: 16px;
}

.truth-text {
    font-size: 20px;
    line-height: 1.6;
}

.truth-text strong {
    color: var(--accent-gold);
}

.highlight-danger {
    color: var(--danger-red);
    font-weight: 700;
}

/* ========================================
   PRODUCT PRESENTATION (CONTEXT BRIDGE)
   ======================================== */
.product-presentation {
    margin: 32px 0 24px;
    display: flex;
    justify-content: center;
}

.presentation-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger-red);
    border-radius: 12px;
    padding: 16px 24px;
    max-width: 600px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.presentation-alert {
    color: var(--danger-red);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.presentation-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
}

.presentation-text strong {
    color: var(--text-primary);
}

.image-caption {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    opacity: 0.8;
}

.already-bought-btn,
.already-bought-btn:visited,
.already-bought-btn:active {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff !important;
    /* Force white text */
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 10px 16px;
    /* Slightly larger area */
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.already-bought-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.already-bought-btn svg {
    color: var(--success-green);
    width: 18px;
    /* Slightly larger icon */
    height: 18px;
}

.already-bought-btn:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: translateY(-1px);
}

.already-bought-btn svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   PAIN SECTION
   ======================================== */
.pain {
    padding: 80px 20px;
    background: var(--dark-card);
}

.pain h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 48px;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.pain-item {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--danger-red);
    padding: 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pain-icon {
    width: 40px;
    height: 40px;
    color: var(--danger-red);
}

.truth-bomb {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    border: 2px solid var(--primary-purple);
    position: relative;
}

.truth-icon {
    display: inline-flex;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.truth-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.truth-bomb h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.truth-bomb .emphasis {
    font-size: 28px;
    font-weight: 900;
    color: var(--danger-red);
    margin: 20px 0;
}

.truth-bomb .highlight-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.truth-bomb .highlight-text svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.solution {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.logo-badge {
    text-align: center;
    margin-bottom: 40px;
}

.logo-icon {
    display: inline-flex;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.logo-icon svg {
    width: 48px;
    height: 48px;
    color: white;
}

.logo-badge h2 {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 20px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.solution-intro {
    text-align: center;
    font-size: 20px;
    max-width: 700px;
    margin: 20px auto;
}

.benefits-why {
    background: rgba(16, 185, 129, 0.1);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--success-green);
    max-width: 700px;
    margin: 40px auto;
}

.benefits-why svg.section-icon {
    display: block;
    margin: 0 auto 16px;
}

.benefits-why ul {
    list-style: none;
    font-size: 18px;
}

.benefits-why li {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits-why li svg {
    width: 20px;
    height: 20px;
    color: var(--success-green);
    flex-shrink: 0;
}

.benefits-title {
    text-align: center;
    font-size: 32px;
    margin: 60px 0 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.benefit-card {
    background: var(--dark-card);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-purple);
}

.benefit-card.bonus {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid var(--accent-gold);
}

.benefit-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.benefit-icon-wrapper svg {
    width: 32px;
    height: 32px;
    color: white;
}

.benefit-card.bonus .benefit-icon-wrapper {
    background: linear-gradient(135deg, var(--accent-gold), #F59E0B);
}

.benefit-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.lifetime-access {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 12px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lifetime-access svg {
    width: 48px;
    height: 48px;
    color: var(--primary-cyan);
}

.highlight-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
}

/* ========================================
   FEATURES SHOWCASE
   ======================================== */
.features-showcase {
    padding: 80px 20px;
    background: var(--dark-card);
}

.features-showcase h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.features-showcase h2 svg {
    width: 48px;
    height: 48px;
    color: var(--primary-cyan);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-screenshot {
    text-align: center;
}

.feature-screenshot img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

.feature-screenshot h4 {
    font-size: 22px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.feature-screenshot h4 svg {
    width: 24px;
    height: 24px;
    color: var(--primary-cyan);
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.how-it-works h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.phase {
    background: var(--dark-card);
    padding: 32px;
    border-radius: 12px;
    position: relative;
}

.phase-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.phase-number svg {
    width: 36px;
    height: 36px;
    color: white;
}

.phase h3 {
    margin: 30px 0 16px;
    font-size: 24px;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
}

.before,
.after {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.before svg,
.after svg {
    width: 48px;
    height: 48px;
}

.before svg {
    color: var(--danger-red);
}

.after svg {
    color: var(--success-green);
}

.arrow {
    font-size: 32px;
    color: var(--primary-cyan);
}

.arrow svg {
    width: 40px;
    height: 40px;
}

/* ========================================
   TESTIMONIALS (CSS COMPONENTS)
   ======================================== */
.testimonials {
    padding: 80px 20px;
    background: var(--dark-card);
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonials h2 svg {
    width: 48px;
    height: 48px;
    color: var(--accent-gold);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    color: #1F2937;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.star-filled {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
    fill: var(--accent-gold);
}

.avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.avatar svg {
    width: 32px;
    height: 32px;
    color: white;
}

.testimonial-card:nth-child(1) .avatar {
    background: linear-gradient(135deg, #3B82F6, #06B6D4);
}

.testimonial-card:nth-child(2) .avatar {
    background: linear-gradient(135deg, #10B981, #059669);
}

.testimonial-card:nth-child(3) .avatar {
    background: linear-gradient(135deg, #F97316, #EA580C);
}

.quote {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    font-style: italic;
}

.author {
    font-size: 14px;
    color: #6B7280;
}

/* ========================================
   PROMISES
   ======================================== */
.promises {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.promises h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.promises-timeline {
    max-width: 900px;
    margin: 0 auto 60px;
}

.promise-item {
    background: var(--dark-card);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
    border-left: 4px solid var(--accent-gold);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.promise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), #F59E0B);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.promise-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.promise-item .day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent-gold);
}

.promise-item ol {
    margin-left: 24px;
    margin-top: 12px;
}

.win-win {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.win-win svg {
    width: 64px;
    height: 64px;
    color: var(--accent-gold);
}

.win-win .big-text {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 24px;
}

.win-win .closing-line {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.win-win .closing-line svg {
    width: 32px;
    height: 32px;
}

/* ========================================
   PRICING (CSS BADGE)
   ======================================== */
.pricing {
    padding: 80px 20px;
    background: var(--dark-card);
}

.pricing h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.pricing h2 svg {
    width: 56px;
    height: 56px;
    color: var(--accent-gold);
}

.pricing-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-bg);
    padding: 48px;
    border-radius: 24px;
    border: 2px solid var(--primary-purple);
    position: relative;
}

.guarantee-badge-css {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
}

.badge-outer {
    width: 140px;
    height: 140px;
    background: conic-gradient(from 0deg, var(--accent-gold), #F59E0B, var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.badge-inner {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1E40AF, #1E3A8A);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.badge-inner svg {
    width: 32px;
    height: 32px;
    color: var(--accent-gold);
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.badge-days {
    font-size: 16px;
    font-weight: 900;
    color: white;
}

.badge-subtitle {
    font-size: 7px;
    color: var(--text-secondary);
}

.pricing-card h3 {
    text-align: center;
    font-size: 28px;
    margin: 60px 0 32px;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.price-option {
    background: var(--dark-card);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.price-option svg {
    width: 32px;
    height: 32px;
    color: var(--primary-cyan);
}

.price-option.cash {
    border: 2px solid var(--success-green);
}

.price-option.cash svg {
    color: var(--success-green);
}

.price-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.price-value {
    font-size: 18px;
}

.big-price {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-gold);
}

.price-divider {
    text-align: center;
    font-weight: 700;
    color: var(--text-secondary);
}

.price-subtext {
    text-align: center;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.whats-included {
    background: rgba(16, 185, 129, 0.1);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.whats-included h4 {
    font-size: 22px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whats-included h4 svg {
    width: 28px;
    height: 28px;
    color: var(--success-green);
}

.whats-included ul {
    list-style: none;
}

.whats-included li {
    margin: 12px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whats-included li svg {
    width: 20px;
    height: 20px;
    color: var(--success-green);
    flex-shrink: 0;
}

/* ========================================
   URGENCY
   ======================================== */
.urgency {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.urgency h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.urgency h2 svg {
    width: 56px;
    height: 56px;
    color: var(--danger-red);
}

.urgency-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.choice {
    padding: 32px;
    border-radius: 12px;
    position: relative;
}

.choice-icon {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark-bg);
    padding: 8px;
}

.choice.bad {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid var(--danger-red);
}

.choice.bad .choice-icon {
    color: var(--danger-red);
}

.choice.good {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success-green);
}

.choice.good .choice-icon {
    color: var(--success-green);
}

.choice h3 {
    font-size: 20px;
    margin: 24px 0 16px;
}

.choice ul {
    list-style: none;
}

.choice li {
    margin: 8px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.choice li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.final-choice {
    text-align: center;
    font-size: 24px;
    margin-bottom: 32px;
}

/* ========================================
   PS SECTION
   ======================================== */
.ps {
    padding: 80px 20px;
    background: var(--dark-card);
}

.ps-text {
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
}

.ps-options {
    max-width: 700px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ps-option {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--dark-bg);
    padding: 24px;
    border-radius: 12px;
}

.ps-option .number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
}

.ps-option svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.ps-option:nth-child(1) svg {
    color: var(--accent-gold);
}

.ps-option:nth-child(3) svg {
    color: var(--danger-red);
}

.or {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
}

.ps-question {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.ps-guarantee {
    text-align: center;
    font-size: 16px;
    color: var(--success-green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ps-guarantee svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    padding: 40px 20px;
    background: var(--dark-bg);
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

footer a {
    color: var(--primary-cyan);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


/* Incisive Text CTA */
.incisive-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    font-size: 18px;
    color: var(--primary-cyan);
    text-decoration: none;
    margin-top: 24px;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.incisive-cta:hover {
    gap: 12px;
    border-bottom-color: currentColor;
}

.incisive-cta.danger {
    color: var(--danger-red);
}

@media (max-width: 768px) {

    /* GLOBAL MOBILE FIXES */
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    /* BUTTONS - Prevent overflow */
    .cta-button {
        width: 100%;
        max-width: 100%;
        padding: 16px 20px;
        font-size: 15px;
        text-align: center;
        justify-content: center;
        word-break: break-word;
    }

    .cta-button.mega {
        font-size: 16px;
        padding: 18px 24px;
    }

    /* PRICING CARD */
    .pricing-card {
        padding: 48px 16px 24px;
        margin: 0 -16px;
        border-radius: 0;
        width: calc(100% + 32px);
    }

    /* GRIDS - Force single column */
    .features-grid,
    .benefits-grid,
    .phases,
    .testimonials-grid,
    .comparison-grid,
    .hero-value {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* VALUE ITEMS */
    .value-item {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    /* COMPARISON */
    .comparison-arrow {
        transform: rotate(90deg);
    }

    .comparison-card {
        padding: 24px 16px;
    }

    /* BEFORE/AFTER */
    .before-after {
        flex-direction: column;
    }

    .arrow {
        transform: rotate(90deg);
    }

    /* PROMISE ITEMS */
    .promise-item {
        flex-direction: column;
    }

    /* HEADLINES */
    .headline {
        font-size: 28px;
        line-height: 1.2;
    }

    .subheadline {
        font-size: 15px;
    }

    /* SECTIONS HEADINGS */
    .features-showcase h2,
    .testimonials h2,
    .urgency h2,
    .pricing h2,
    .pain h2,
    .solution h2,
    .how-it-works h2 {
        font-size: 24px;
        flex-direction: column;
    }

    /* STATUS ITEMS (Order Checklist) */
    .status-item {
        font-size: 13px;
    }

    .status-item span:first-of-type {
        flex: 1;
        min-width: 0;
        word-break: break-word;
    }

    /* PRESENTATION BOX */
    .presentation-box {
        padding: 12px 16px;
    }

    .presentation-alert {
        font-size: 12px;
        flex-wrap: wrap;
    }

    .presentation-text {
        font-size: 14px;
    }

    /* EXCLUSIVE BADGE */
    .exclusive-badge {
        font-size: 10px;
        padding: 6px 12px;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }

    /* WHAT'S INCLUDED LIST */
    .whats-included li {
        font-size: 14px;
    }

    /* PRICE OPTIONS */
    .price-options {
        flex-direction: column;
        gap: 12px;
    }

    .price-option {
        width: 100%;
        padding: 16px;
    }

    /* TRUTH BOMB */
    .truth-bomb {
        padding: 20px 16px;
    }

    .truth-bomb .emphasis {
        font-size: 20px;
    }

    /* PHASES */
    .phase {
        padding: 20px 16px;
    }

    /* TESTIMONIALS */
    .testimonial-card {
        padding: 20px 16px;
    }

    /* URGENCY SECTION */
    .secret-truth {
        padding: 20px 16px;
    }

    /* PS SECTION */
    .options-grid {
        grid-template-columns: 1fr;
    }

    /* INCISIVE CTA */
    .incisive-cta {
        font-size: 14px;
    }
}