/* ==========================================================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================================================== */
   :root {
    /* Colors */
    --wa-green: #25D366;
    --wa-dark-green: #075E54;
    --primary: #10B981; /* Premium Emerald */
    --primary-hover: #059669;
    --bg-dark: #0A0F14; /* Deep sophisticated dark */
    --bg-card: #141C24;
    --bg-card-hover: #1A242E;
    --text-main: #E2E8F0;
    --text-muted: #94A3B8;
    --danger: #EF4444;
    --warning: #F59E0B;
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    
    /* Radii */
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-green-glow: 0 0 25px rgba(16, 185, 129, 0.25);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* 1rem = 16px. Enforces mobile legibility */
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

strong {
    color: var(--white);
    font-weight: 600;
}

/* Typography Utilities */
.text-green { color: var(--primary); }
.text-red { color: var(--danger); }
.text-center { text-align: center; }

/* ==========================================================================
   LAYOUT STRUCTURE
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem; /* safe padding for mobile */
}

/* Sections */
section {
    padding: var(--space-2xl) 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem; /* 32px */
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xl);
    line-height: 1.2;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--wa-green), var(--primary-hover));
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-full);
    min-height: 60px; /* generous tap target */
    box-shadow: var(--shadow-green-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 380px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.4);
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.5rem;
    max-width: 100%;
}

/* Gradients */
.text-gradient {
    background: linear-gradient(to right, var(--wa-green), #6EE7B7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.section-hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(10, 15, 20, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.headline {
    font-family: var(--font-heading);
    font-size: 2.5rem; /* 40px */
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.block-text {
    display: block;
}

.subheadline {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mockup-container {
    position: relative;
    margin: 3rem auto;
    max-width: 800px;
}

.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--primary);
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
}

.mockup-image {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
}

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

.security-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.section-testimonials {
    background-color: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.testimonial-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
}

/* Hide scrollbar */
.no-scroll-bar::-webkit-scrollbar { display: none; }
.no-scroll-bar { -ms-overflow-style: none; scrollbar-width: none; }

.testimonial-card {
    min-width: 320px;
    width: 85%;
    flex-shrink: 0;
    scroll-snap-align: center;
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--warning);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.author-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.placeholder-avatar {
    background: linear-gradient(135deg, #1E293B, #0F172A);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================================================
   PAIN/PROBLEM SECTION
   ========================================================================== */
.pain-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.pain-item {
    background: var(--bg-card);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-left: 4px solid var(--danger);
    transition: transform 0.2s ease, background 0.2s ease;
}

.pain-item:hover {
    transform: translateX(5px);
    background: var(--bg-card-hover);
}

.pain-icon {
    color: var(--danger);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

/* ==========================================================================
   REASONS SECTION
   ========================================================================== */
.dark-card {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.reason-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: var(--space-xl);
}

.reason-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: background 0.3s;
}

.reason-card:hover {
    background: rgba(255,255,255,0.05);
}

.reason-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    line-height: 1;
}

.transition-message h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
}

/* ==========================================================================
   SOLUTION/STEPS SECTION
   ========================================================================== */
.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: var(--space-lg);
}

.step-box {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

.step-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.step-icon svg { width: 30px; height: 30px; }

.step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step-sub {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.step-connector {
    width: 2px;
    height: 40px;
    background: dashed 2px rgba(16, 185, 129, 0.3);
    margin: -1rem auto;
    z-index: 1;
}

/* ==========================================================================
   DELIVERABLES SECTION
   ========================================================================== */
.deliverables-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.deliverable-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border: 1px solid rgba(255,255,255,0.05);
}

.check-icon {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.bonus-item {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid var(--primary);
}

.gift-icon {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================================
   TARGET AUDIENCE SECTION
   ========================================================================== */
.two-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.target-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
}

.target-yes {
    border-top: 4px solid var(--primary);
}

.target-no {
    border-top: 4px solid var(--danger);
}

.target-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.icon-yes { color: var(--primary); }
.icon-no { color: var(--danger); }

.target-card ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.target-card li {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 1.5rem;
}

.target-yes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.target-no li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: bold;
}

/* ==========================================================================
   CREATOR SECTION
   ========================================================================== */
.section-creator {
    background-color: var(--bg-card);
}

.creator-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.creator-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary);
    box-shadow: var(--shadow-green-glow);
}

.creator-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.creator-bio {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.creator-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.creator-stats li {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.03);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
}

.creator-stats i {
    color: var(--primary);
}

/* ==========================================================================
   OFFER SECTION
   ========================================================================== */
.offer-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, #152219 100%);
    border: 2px solid var(--primary);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-green-glow);
    max-width: 600px;
    margin: 0 auto;
}

.offer-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.price-block {
    margin-bottom: 2rem;
}

.price-strikethrough {
    text-decoration: line-through;
    color: var(--danger);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.price-current {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.price-main {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.big-price {
    font-size: 4.5rem; /* 72px */
    line-height: 1;
}

.cents {
    font-size: 2rem;
}

.price-cash {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.guarantee-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.guarantee-block i {
    color: var(--wa-green);
}

.safepay-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.cc-icon {
    height: 24px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: 0.3s;
}

.cc-icon:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    padding: 2rem 0;
    background: #000;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.75rem;
    opacity: 0.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   ANIMATIONS & UTILITIES
   ========================================================================== */

/* Fade/Slide up utilities connected with JS */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
    transform: translateX(0);
}

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }

.mt-8 { margin-top: 2rem; }

/* Keyframes */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes vibrate {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.cta-vibrate:hover {
    animation: vibrate 0.3s linear infinite;
}

/* ==========================================================================
   RESPONSIVE (DESKTOP)
   ========================================================================== */
@media (min-width: 768px) {
    .headline { font-size: 3.5rem; } /* 56px */
    .subheadline { font-size: 1.25rem; }
    
    .section-title { font-size: 2.5rem; } /* 40px */
    
    .two-cols {
        grid-template-columns: 1fr 1fr;
    }
    
    .creator-wrapper {
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: center;
        gap: 4rem;
    }
    
    .creator-img {
        width: 350px;
        height: 350px;
    }
    
    .creator-stats {
        margin: 0;
    }
    
    .steps-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .step-connector {
        width: 40px;
        height: 2px;
        margin: 40px -10px 0 -10px;
    }

    .reason-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reason-cards .reason-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .deliverables-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .deliverables-list .bonus-item {
        grid-column: span 2;
    }
}
