/* ==========================================================================
   VIKKI ADS LANDING PAGE - Refined Premium Aesthetic
   Focus: High-Conversion, High-Contrast, Clean & Modern
   ========================================================================== */

@import url('evenup-theme.css');

:root {
    --color-warning: #ff3b30;
    --color-highlight: #195233; /* Darker green for primary CTA on light bg */
    --color-highlight-light: #4ade80; /* Brighter green for highlights on dark bg */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 10px 40px rgba(0, 0, 0, 0.08);
    
    /* Light Theme Overrides */
    --ads-bg: #ffffff;
    --ads-text: #082111;
    --ads-muted: #666666;
}

/* Warning Bar - Non-sticky & Concise as requested */
.warning-bar {
    background: var(--color-warning);
    color: #ffffff;
    padding: 12px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2000;
}

/* Global Styles for this page */
.ads-page {
    background-color: var(--ads-bg);
    color: var(--ads-text);
    scroll-behavior: smooth;
    font-family: 'Onest', sans-serif;
}

.ads-page h1, 
.ads-page h2, 
.ads-page h3, 
.ads-page h4 {
    color: var(--ads-text);
}

.ads-page p {
    color: var(--ads-muted);
}

/* Sections - Tightened */
.ads-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-light);
}

/* Hero Section */
.hero-ads {
    padding-top: 40px;
    padding-bottom: 80px;
    text-align: center;
    background: radial-gradient(at 10% 10%, rgba(25, 82, 51, 0.03) 0%, transparent 50%), #fdfdfd;
}

.hero-ads h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 40px; /* Space before video */
    font-weight: 800;
    letter-spacing: -1.5px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards & Proof */
.glass-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
    transition: transform 0.3s ease;
}

/* Profile Testimonial Layout */
.profile-testimonial {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: center;
}

.profile-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-quote {
    font-size: 20px;
    line-height: 1.8;
    color: #111;
    position: relative;
    padding-left: 0;
    border-left: none;
}

/* Concise Results Block - Grid for performance */
.results-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.result-item {
    background: #f8f8f8;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    text-align: center;
}

.result-val {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--color-highlight);
    margin-bottom: 2px;
}

.result-item p {
    font-size: 11px;
    line-height: 1.3;
    margin: 0;
}

/* 5 Systems Mechanism */
.system-item {
    margin-bottom: 60px;
}

.system-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.system-content h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--color-highlight);
}

/* Uniform Photo Container */
.photo-container {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-premium);
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Guarantee Section - Concise Dark Green */
.guarantee-box {
    background: #082111;
    color: #ffffff;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.guarantee-box h2, .guarantee-box p, .guarantee-box strong {
    color: #ffffff !important;
}

/* Video Wrapper */
.video-wrapper {
    max-width: 800px;
    margin: 0 auto 40px;
    background: #fff;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* CTA */
.cta-large {
    background: var(--color-highlight) !important;
    color: #ffffff !important;
    font-size: 18px !important;
    padding: 16px 40px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    box-shadow: 0 10px 25px rgba(25, 82, 51, 0.2) !important;
    display: inline-block;
    transition: transform 0.3s ease !important;
}

.cta-large:hover {
    transform: scale(1.03);
}

/* Responsive Overhaul */
@media (max-width: 992px) {
    .grid-2, .system-grid, .profile-testimonial {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .results-grid-compact {
        grid-template-columns: 1fr 1fr;
    }

    .profile-photo {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-ads h1 {
        font-size: 32px;
    }

    .ads-section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .cta-large {
        width: 100%;
        text-align: center;
        padding: 16px !important;
        font-size: 18px !important;
    }
    
    .ads-section {
        padding: 32px 0;
    }
}

/* Guarantee Box Hero */
.guarantee-box-hero {
    animation: fadeIn 0.6s ease-in-out;
}

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

/* Pain Points Grid */
#pain-points > div {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#pain-points > div:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

@media (max-width: 480px) {
    .ads-section {
        padding: 24px 0;
    }
    
    .hero-ads {
        padding-top: 24px;
        padding-bottom: 40px;
    }

    .hero-ads h1 {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .hero-ads .offer-list {
        padding: 16px;
        font-size: 14px;
        width: 100%;
    }
    
    .cta-large {
        font-size: 16px !important;
    }

    .glass-card {
        padding: 20px;
    }

    .container {
        padding: 0 16px !important;
    }
}