/* ===================================================
   RESET LANDING PAGE - STYLES (UPDATED V3 - RWD FIX)
   =================================================== */

/* --- 1. CSS CUSTOM PROPERTIES --- */
:root {
    /* Colors */
    --bg-dark: #050505;
    --bg-card: #111111;
    --text-main: #EAEAEA;
    --text-muted: #bcbcbc;
    --gold: #D4AF37;
    --gold-hover: #F4C430;
    --gold-glow: rgba(212, 175, 55, 0.15);
    --accent-red: #ff5252;
    --border-light: rgba(255, 255, 255, 0.12);
    
    /* Fonts */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;
    
    /* Spacing - fluid */
    --space-xs: clamp(0.5rem, 1vw, 0.75rem);
    --space-sm: clamp(0.75rem, 2vw, 1rem);
    --space-md: clamp(1rem, 3vw, 1.5rem);
    --space-lg: clamp(1.5rem, 4vw, 2.5rem);
    --space-xl: clamp(2rem, 5vw, 4rem);
    --space-2xl: clamp(2.5rem, 6vw, 6rem);
    
    /* Typography - fluid */
    --text-xs: clamp(0.65rem, 1.5vw, 0.75rem);
    --text-sm: clamp(0.8rem, 2vw, 0.9rem);
    --text-base: clamp(0.9rem, 2.2vw, 1.05rem); /* Bazowa wielkość tekstu */
    --text-lg: clamp(1rem, 2.5vw, 1.25rem);
    --text-xl: clamp(1.1rem, 3vw, 1.4rem);
    --text-2xl: clamp(1.4rem, 4vw, 2rem);
    --text-3xl: clamp(1.6rem, 5vw, 2.5rem);
    --text-4xl: clamp(2rem, 6vw, 3.8rem);
}

/* --- 2. RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: var(--text-base);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* --- 3. UTILITIES & HELPERS --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: #fff; }
.text-gold { color: var(--gold); }
.text-red { color: var(--accent-red); }
.text-muted { color: var(--text-muted); }

.bg-card { background: var(--bg-card); }
.bg-black { background: #000; }
.bg-glass { background: rgba(255,255,255,0.02); }
.bg-radial-dark { background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%); }

.mx-auto-600 { max-width: 600px; margin-inline: auto; }
.mx-auto-650 { max-width: 650px; margin-inline: auto; }
.mx-auto-900 { max-width: 900px; margin-inline: auto; }

.container-narrow { max-width: 900px !important; }

.block-mt-sm { display: block; margin-top: 0.5rem; }
.mb-xl { margin-bottom: 4rem; }
.mt-base { margin-top: 1rem; }

/* --- 4. TYPOGRAPHY --- */
h1, h2, h3, h4 {
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 900;
    margin-bottom: var(--space-md);
}

h2, .section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--space-sm);
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

h4 {
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: var(--space-xs);
}

p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    font-size: clamp(0.85rem, 2vw, 1.05rem);
}

.highlight {
    color: var(--gold);
}

/* --- 5. LAYOUT --- */
.container {
    width: min(90%, 1100px);
    margin-inline: auto;
    padding-inline: var(--space-sm);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

section {
    padding-block: var(--space-xl);
}

/* --- 6. ANIMATIONS --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 0.9; transform: translateY(0); }
}

/* --- 7. BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(135deg, var(--gold) 0%, #b89628 100%);
    color: #000;
    padding: var(--space-sm) var(--space-lg);
    font-weight: 800;
    font-size: var(--text-base);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: var(--gold-hover);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

.main-cta {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    max-width: 100%;
    width: 100%;
}

.main-cta .cta-main-text {
    display: block;
    white-space: nowrap;
}

.main-cta .cta-price-text {
    display: block;
    font-size: 0.9em;
    margin-top: 0.25rem;
    opacity: 0.9;
}

/* --- 8. HERO SECTION (FIXED) --- */
.hero {
    /* FIX: Użycie dvh dla lepszego wsparcia mobilnego */
    min-height: 100dvh;
    height: auto; 
    display: flex;
    align-items: center;
    /* Reset paddingu dla elastyczności */
    padding-block: var(--space-xl); 
    background: radial-gradient(circle at 50% 30%, rgba(30,30,30,1) 0%, var(--bg-dark) 70%);
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero .container {
    text-align: center;
    width: 100%;
}

.hero-eyebrow {
    display: block;
    font-size: clamp(0.6rem, 1.5vw, 0.85rem);
    color: var(--accent-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
    animation: fade-in-up 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 82, 82, 0.15);
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    font-size: clamp(0.65rem, 1.5vw, 0.75rem);
    font-weight: 700;
    padding: 0.25em 0.75em;
    border-radius: 4px;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-sub {
    font-size: clamp(0.85rem, 2vw, 1.15rem);
    color: var(--text-main);
    margin-bottom: var(--space-md);
    max-width: 600px;
    margin-inline: auto;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    color: #dcdcdc;
    margin-bottom: var(--space-md);
}

.book-container {
    display: none; /* Domyślnie ukryte na mobile portrait, chyba że override */
}

.book-cover {
    width: 100%;
    max-width: 400px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}

.book-container:hover .book-cover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.7);
}

.hero-cta-wrapper {
    margin-top: var(--space-xs);
    font-size: var(--text-sm);
    color: #aaa;
}

/* --- HERO LANDSCAPE MOBILE FIX (NEW ADDITION) --- 
   Rozwiązuje problem scrollowania na telefonach w poziomie.
   Działa gdy wysokość ekranu jest mała (max 500px) a orientacja pozioma.
*/
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100dvh;
        padding-block: 0.5rem !important; /* Wymuszamy mały padding */
        align-items: center;
    }

    .hero .container {
        /* Przełączamy grid na flex row, żeby upchnąć treść obok obrazka */
        display: flex !important;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1.5rem;
        max-width: 100%;
        padding-inline: 1rem;
    }

    .hero .grid-2 {
        display: contents; /* Grid przestaje działać, rządzi flex containera */
    }

    .hero-text {
        flex: 1;
        /* Priorytet dla tekstu */
    }

    /* Wyświetlamy książkę, ale małą, po prawej stronie */
    .book-container {
        display: block !important;
        flex: 0 0 140px; /* Sztywna szerokość */
    }

    .book-cover {
        max-height: 60dvh; /* Nie wyższa niż 60% ekranu */
        width: auto;
        margin: 0;
    }

    /* Skalowanie czcionek względem wysokości (vh) a nie szerokości */
    .hero h1 {
        font-size: clamp(1.2rem, 8vh, 1.8rem); 
        margin-bottom: 0.25rem;
        line-height: 1.1;
    }

    .hero-sub {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* Ucinamy tekst jeśli za długi */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-eyebrow, .hero-badge {
        font-size: 0.6rem;
        margin-bottom: 0.25rem;
        display: inline-block;
        margin-right: 0.5rem;
    }

    .hero-trust {
        justify-content: flex-start;
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .btn {
        width: auto;
        padding: 0.4rem 1.2rem;
        font-size: 0.85rem;
        min-height: auto;
    }

    /* Ukrywamy najmniej ważne elementy */
    .hero-cta-wrapper {
        display: none;
    }
}

/* --- 9. PROBLEM SECTION --- */
.section-problem {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #150505 100%);
    border-bottom: 1px solid var(--accent-red);
}

.pain-box {
    background: rgba(255,0,0,0.05);
    border-left: 4px solid var(--accent-red);
    padding: var(--space-md);
    height: 100%;
    border-radius: 0 4px 4px 0;
}

.pain-box h3 {
    color: #fff;
    margin-bottom: var(--space-xs);
}

.truth-box {
    margin-top: var(--space-xl);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.03) 50%, transparent 100%);
}

.truth-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    padding: 0.4em 0.8em;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    background: rgba(0,0,0,0.3);
    margin-bottom: var(--space-md);
}

.truth-desc {
    max-width: 600px; 
    margin-inline: auto; 
    margin-top: var(--space-md); 
    color: #aaa;
}

/* --- 10. CONTRAST BOX --- */
.contrast-box {
    display: grid;
    grid-template-columns: 1fr;
    margin-block: var(--space-lg);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

.contrast-col {
    padding: var(--space-md);
}

.contrast-col.bad {
    background: linear-gradient(to bottom right, rgba(20, 0, 0, 0.6), rgba(10, 0, 0, 0.8));
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contrast-col.good {
    background: linear-gradient(to bottom right, rgba(10, 20, 10, 0.6), rgba(0, 10, 0, 0.8));
    position: relative;
}

.contrast-col.good::before {
    content: 'ZALECANE';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.6rem;
    background: var(--gold);
    color: #000;
    padding: 0.2em 0.5em;
    font-weight: bold;
    border-radius: 2px;
    display: none;
}

.contrast-col h3 {
    margin-bottom: var(--space-sm);
}

.contrast-col h3 span {
    display: block;
    font-size: var(--text-sm);
    font-weight: 400;
    opacity: 0.7;
    color: #fff;
    margin-top: 0.25rem;
}

.contrast-list {
    list-style: none;
}

.contrast-list li {
    margin-bottom: var(--space-sm);
    padding-left: 1.75rem;
    position: relative;
    color: #dcdcdc;
    font-size: var(--text-base);
}

.contrast-list.bad li::before {
    content: '✕';
    color: var(--accent-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.contrast-list.good li::before {
    content: '✓';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* --- 11. MODULE CARDS --- */
.module-card {
    padding: var(--space-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    background: rgba(255,255,255,0.02);
    height: 100%;
    border-radius: 4px;
}

.module-card:hover {
    border-color: var(--gold);
    background: var(--gold-glow);
    transform: translateY(-3px);
}

.module-header {
    font-family: var(--font-accent);
    color: var(--gold);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    display: block;
}

/* --- 12. TESTIMONIALS --- */
.testimonial-card {
    background: var(--bg-card);
    padding: var(--space-md);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.testimonial-card .stars {
    color: var(--gold);
    margin-bottom: var(--space-xs);
    font-size: var(--text-lg);
}

.testimonial-card p {
    font-style: italic;
    color: #ddd;
    line-height: 1.5;
}

.author strong {
    color: #fff;
    display: block;
}

.author span {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* --- 13. BONUS CARDS --- */
.eyebrow-alert {
    color: var(--accent-red); 
    font-weight: 700; 
    letter-spacing: 0.1em; 
    text-transform: uppercase; 
    font-size: var(--text-sm);
}

.bonus-card {
    padding: var(--space-md);
    border: 2px solid var(--gold);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    text-align: center;
}

.bonus-card h3 {
    color: var(--gold);
    margin-top: 0.25rem;
}

/* --- 14. OFFER STACK --- */
.offer-stack {
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: var(--space-md);
    max-width: 700px;
    margin-inline: auto;
}

.offer-title {
    text-align: center;
    margin-bottom: var(--space-md);
    color: var(--gold);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.stack-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.25rem;
    padding-block: var(--space-sm);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stack-item-name {
    font-weight: 700;
    color: #fff;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
}

.stack-item-desc {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    color: var(--text-muted);
    padding-left: 1.5rem;
}

.stack-total {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 2px solid var(--gold);
    text-align: center;
}

.price-label {
    display: block;
    font-size: clamp(0.65rem, 1.5vw, 0.8rem);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

.comparison-box {
    margin-top: var(--space-md);
    padding: var(--space-sm);
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
}

.comparison-label {
    margin-bottom: var(--space-sm);
    text-align: center;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    color: #aaa;
    text-align: center;
    margin-bottom: var(--space-sm);
}

.comparison-conclusion {
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: var(--gold);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-sm);
    margin: 0;
}

.cta-wrapper {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    font-size: var(--text-xs);
    color: #666;
    flex-wrap: wrap;
}

/* --- 15. TWO PATHS SECTION --- */
.paths-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.path-card {
    padding: var(--space-md);
    border-radius: 12px;
    border-left: 4px solid;
}

.path-card.bad {
    background: rgba(255,255,255,0.03);
    border-color: #333;
}

.path-card.bad h3 {
    color: #666;
}

.path-card.good {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold);
}

.path-card.good h3 {
    color: var(--gold);
}

.path-card p {
    color: #aaa;
    margin-bottom: 0;
}

.path-card.good p {
    color: #fff;
}

/* --- 16. STICKY FOOTER --- */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10,10,10,0.98);
    border-top: 1px solid var(--gold);
    padding: var(--space-xs) 0;
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.sticky-footer.active {
    transform: translateY(0);
}

.sticky-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
}

.sticky-product-info {
    display: none;
}

.sticky-mobile-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: var(--space-sm);
}

.sticky-price-block {
    text-align: left;
    line-height: 1.2;
}

.sticky-desktop-label {
    display: none;
}

.sticky-mobile-stars {
    display: block;
    font-size: var(--text-xs);
    color: var(--gold);
}

.sticky-price-final {
    font-size: var(--text-lg);
    font-weight: 700;
    color: #fff;
}

.sticky-cta {
    padding: 0.6rem 1rem;
    font-size: var(--text-sm);
    white-space: nowrap;
    width: auto;
    flex-shrink: 0;
}

.rating-count {
    display: block; 
    font-size: 0.65rem; 
    color: #666;
}

.footer-sub {
    display: block; 
    font-size: var(--text-xs); 
    color: var(--text-muted);
}

/* --- 17. FOOTER --- */
footer {
    padding: var(--space-xl) 0;
    padding-bottom: calc(var(--space-xl) + 70px);
    text-align: center;
    border-top: 1px solid #222;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-legal {
    font-size: var(--text-xs);
    color: #444;
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.5;
}

/* ===================================================
   TABLET BREAKPOINT (768px+) - BAZA
   =================================================== */
@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contrast-box {
        grid-template-columns: 1fr 1fr;
    }
    
    .contrast-col.bad {
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.05);
    }
    
    .contrast-col.good::before {
        display: block;
    }
    
    .contrast-col {
        padding: var(--space-lg);
    }
    
    .paths-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .offer-stack {
        padding: var(--space-lg);
    }
}

/* ===================================================
   TABLET LANDSCAPE / HYBRID (700px - 1023px)
   Dla iPadów w poziomie i małych ekranów.
   =================================================== */
@media (min-width: 700px) and (max-width: 1023px) {
    
    .hero {
        min-height: 100dvh;
        height: auto;
        padding-block: 2rem; 
        display: flex;
        align-items: center;
        text-align: left;
    }

    .hero .grid-2 {
        /* 55% miejsca na tekst, 45% na książkę */
        grid-template-columns: 55% 45%; 
        gap: 1rem;
        align-items: center;
        width: 100%;
    }

    .hero .container { text-align: left; width: 100%; }

    .hero h1 {
        font-size: clamp(2rem, 4vw, 2.8rem);
        margin-bottom: 0.75rem;
        line-height: 1.1;
    }

    .hero-sub {
        font-size: 0.95rem;
        margin-inline: 0;
        margin-bottom: 1.25rem;
        line-height: 1.35;
    }

    .hero-trust { justify-content: flex-start; margin-bottom: 0.75rem; }
    .hero-sub { border-left: 3px solid var(--gold); padding-left: 1rem; }
    .hero-eyebrow, .hero-badge { margin-bottom: 0.4rem; font-size: 0.7rem; }

    /* KSIĄŻKA */
    .book-container {
        display: flex;
        justify-content: center; /* Centrowanie w poziomie */
        align-items: center;     /* Centrowanie w pionie */
        width: 100%;
        height: 100%;
    }

    .book-cover {
        width: auto;
        max-width: 100%;
        max-height: 55dvh; /* Ograniczenie wysokości */
        object-fit: contain;
    }

    .btn { width: auto; }
    .main-cta { padding: 0.8rem 1.5rem; font-size: 0.95rem; }
}


/* ===================================================
   DESKTOP BREAKPOINT (1024px+) - BAZA
   =================================================== */
@media (min-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
        height: 100%;
    }
    
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero {
        min-height: 100dvh;
        height: auto;
        padding-block: 4rem;
        background: radial-gradient(circle at 70% 40%, rgba(30,30,30,1) 0%, var(--bg-dark) 60%);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero .container {
        text-align: left;
        max-width: 1100px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 4vw, 3.8rem); 
        margin-bottom: 1.5rem;
    }

    .hero-sub {
        font-size: 1.1rem;
        margin-inline: 0;
        max-width: 540px;
        margin-bottom: 2rem;
    }
    
    .hero-trust { justify-content: flex-start; }
    
    .book-container { 
        display: flex; 
        justify-content: center; 
        align-items: center; 
        height: 100%; 
    }

    .book-cover {
        width: auto; 
        max-width: 400px;
        max-height: 65dvh; 
        object-fit: contain;
        margin-inline: auto;
    }
    
    .btn { width: auto; }
    .main-cta { padding: 1.5rem 3rem; font-size: 1.15rem; max-width: 450px; }
    .main-cta .cta-price-text { display: inline; margin-top: 0; }
    .sticky-product-info { display: flex; align-items: center; gap: 1rem; }
    .sticky-desktop-label { display: block; font-size: var(--text-xs); color: var(--text-muted); }
    .sticky-mobile-stars { display: none; }
    .sticky-mobile-wrapper { width: auto; justify-content: flex-end; }
    .sticky-price-block { text-align: right; }
}

/* ===================================================
   SHORT SCREEN FIX (DLA LAPTOPÓW 1024px+ ALE NISKICH)
   =================================================== */
@media (min-width: 1024px) and (max-height: 850px) {
    .hero {
        padding-block: 2rem; 
        justify-content: center; 
    }

    .grid-2 {
        grid-template-columns: 1fr 1fr; 
        gap: 1rem; 
    }

    .hero h1 {
        font-size: clamp(2.4rem, 3.5vw, 3.2rem);
        margin-bottom: 0.5rem;
        line-height: 1.1;
    }

    .hero-sub {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.4;
        max-width: 95%; 
    }

    .hero-eyebrow, .hero-badge { margin-bottom: 0.25rem; font-size: 0.75rem; }

    .book-container {
        display: flex;
        justify-content: center; 
        align-items: center;
        width: 100%;
    }

    .book-cover {
        max-height: 60dvh; 
        max-width: 350px;  
        width: auto;
        object-fit: contain;
    }
    
    .hero-cta-wrapper { margin-top: 0.5rem; font-size: 0.8rem; }
    .main-cta { padding: 1rem 2rem; font-size: 1rem; }
}

/* ===================================================
   LARGE DESKTOP (1400px+)
   =================================================== */
@media (min-width: 1400px) and (min-height: 900px) {
    .container { padding-inline: 0; max-width: 1200px; }
    .hero h1 { font-size: 4.2rem; }
    .hero-sub { font-size: 1.25rem; }
    .book-cover { max-width: 500px; max-height: 75dvh; }
    .offer-stack { padding: var(--space-xl); }
}
/* ... [Twoje istniejące style pozostają bez zmian] ... */

/* ===================================================
   COOKIE MODAL STYLES (POP-UP VERSION)
   =================================================== */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Mocne przyciemnienie tła */
    backdrop-filter: blur(8px); /* Rozmycie strony pod spodem */
    z-index: 10000; /* Najwyższa warstwa */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    
    /* Ukrywanie */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cookie-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.cookie-modal {
    background: #111; /* Ciemne tło karty */
    border: 1px solid var(--gold); /* Złota ramka dla uwagi */
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.9);
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-overlay.visible .cookie-modal {
    transform: scale(1);
}

.cookie-icon {
    font-size: 3rem;
    margin-bottom: -0.5rem;
    animation: float 3s ease-in-out infinite;
}

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

.cookie-text h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-family: var(--font-accent);
}

.cookie-text p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cookie-text .cookie-sub {
    font-size: 0.85rem;
    color: #888;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn-cookie {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-cookie-fill {
    background: var(--gold);
    border: 2px solid var(--gold);
    color: #000;
}

.btn-cookie-fill:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-cookie-outline {
    background: transparent;
    border: 1px solid #444;
    color: #aaa;
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-cookie-outline:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255,255,255,0.05);
}

/* Tablet i Desktop - przyciski obok siebie */
@media (min-width: 600px) {
    .cookie-actions {
        flex-direction: row;
    }
    
    .btn-cookie {
        width: 50%;
    }
    
    /* Akceptacja po prawej, ważniejsza */
    .btn-cookie-fill {
        order: 2; 
    }
    .btn-cookie-outline {
        order: 1;
    }
}