/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #FFC300;
    --primary-dark: #D4A000;
    --accent: #07BA19;
    --accent-hover: #059214;
    --dark: #1A1A1A;
    --dark-secondary: #2C2C2C;
    --light: #FFFFFF;
    --gray-bg: #F8F9FA;
    --text-main: #333333;
    --text-muted: #666666;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Box Shadow */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 16px 32px rgba(0,0,0,0.15);
    
    /* Border Radius */
    --radius-md: 12px;
    --radius-pill: 50px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--light);
    -webkit-font-smoothing: antialiased;
}

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

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--dark);
}

.highlight {
    color: var(--primary);
    font-weight: 700;
}

.highlight-yellow {
    color: var(--primary);
}

.bg-light { background-color: var(--gray-bg); }
.bg-dark { background-color: var(--dark); color: var(--light); }
.text-white { color: var(--light) !important; }

.bg-texture {
    background-color: #E8DEC1;
    background-image: url('https://assets.zyrosite.com/mv0J6lreP1hM886K/pergament-papier-hintergrund-textur-16442127221im-YZ9jqabgOjt55JG5.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.bg-texture::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(232, 222, 193, 0.85);
    z-index: -1;
}

.bg-texture-light {
    background-color: #E8DEC1;
    background-image: url('https://assets.zyrosite.com/mv0J6lreP1hM886K/pergament-papier-hintergrund-textur-16442127221im-YZ9jqabgOjt55JG5.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.bg-texture-light::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: -1;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   Buttons (CTAs)
   ========================================================================== */
.cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: var(--space-md);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--light);
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 15px rgba(7, 186, 25, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.cta-button:hover, .cta-button:active {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(7, 186, 25, 0.6);
}

.large-btn {
    font-size: 1.25rem;
    padding: 1.2rem 2.5rem;
}

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

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(7, 186, 25, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(7, 186, 25, 0); }
    100% { box-shadow: 0 0 0 0 rgba(7, 186, 25, 0); }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    color: var(--light);
    padding: var(--space-lg) 0 var(--space-md);
    text-align: center;
}

.hero-title {
    color: var(--light);
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    color: #E2E8F0;
}

.hero-image-wrapper {
    margin-top: var(--space-md);
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   Sections Base
   ========================================================================== */
section {
    padding: var(--space-lg) 0;
}

.section-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: var(--space-md);
}

.section-text {
    text-align: center;
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================================================
   Pain Points List
   ========================================================================== */
.benefits-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto var(--space-md);
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.check-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================================
   Grid Layout (Who is it for)
   ========================================================================== */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.grid-card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
}

.grid-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-img {
    border-radius: 8px;
    margin-bottom: 1rem;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* ==========================================================================
   Bonuses Section
   ========================================================================== */
.bonuses {
    text-align: center;
}

.section-subtitle {
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    text-align: left;
}

.bonus-card {
    background: var(--dark-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.bonus-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bonus-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.bonus-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.bonus-content h3 {
    color: var(--light);
    font-size: 1.25rem;
}

.bonus-content p {
    color: #CBD5E1;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.price-slash {
    font-size: 1.125rem;
    font-weight: 700;
}

.price-slash s {
    color: #EF4444; /* Red for slashed */
    margin-right: 0.5rem;
}

.free {
    color: var(--accent); /* Green for free */
}

/* ==========================================================================
   Offer Section
   ========================================================================== */
.offer-box {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: var(--space-lg) 1.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 3px solid var(--primary);
    max-width: 800px;
    margin: 0 auto;
}

.offer-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
}

.offer-price {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin: 1rem 0;
}

.price-highlight {
    font-size: 3rem;
    color: var(--accent);
    font-weight: 700;
}

.offer-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.guarantee-box {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    background: #F8FAFC;
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.guarantee-img {
    width: 100px;
}

.guarantee-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.guarantee-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--dark);
    color: #94A3B8;
    text-align: center;
    padding: var(--space-md) 0;
    font-size: 0.875rem;
}

.footer-link {
    color: #94A3B8;
    text-decoration: underline;
    transition: color 0.3s;
}

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

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

/* ==========================================================================
   Media Queries (Desktop Scale)
   ========================================================================== */
@media (min-width: 768px) {
    /* Layout */
    .grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Typography */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-text {
        font-size: 1.125rem;
    }
    
    /* Buttons */
    .cta-button {
        width: auto;
        min-width: 300px;
    }
    
    /* Components */
    .guarantee-box {
        flex-direction: row;
        text-align: left;
    }
    
    .guarantee-img {
        width: 120px;
    }
}

@media (min-width: 1024px) {
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Center the last two bonuses if there's 5 total */
    .bonus-card:nth-child(4) {
        grid-column: 1 / 2;
        margin-left: 50%;
    }
    
    .bonus-card:nth-child(5) {
        grid-column: 2 / 3;
        margin-left: 50%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}
