:root {
    --primary-color: #e5b0b9; 
    --primary-dark: #b8868f; 
    --bg-light: #f7f5f6; 
    --bg-white: #ffffff;
    --text-dark: #222222;
    --text-gray: #666666;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body { 
    font-family: 'Lato', sans-serif; 
    color: var(--text-dark); 
    background-color: var(--bg-white); 
    line-height: 1.6; 
}

h1, h2, h3, .logo { 
    font-family: 'Playfair Display', serif; 
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.max-800 { max-width: 800px; margin: 0 auto; }
.max-1000 { max-width: 1000px; margin: 0 auto; }
.section-padding { padding: 120px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: var(--bg-white); }
.text-center { text-align: center; }

.section-title { 
    font-size: 3rem; font-weight: 700; text-transform: uppercase; 
    color: var(--text-dark); letter-spacing: -1px; line-height: 1.2; margin-bottom: 25px;
}
.section-subtitle { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 50px; font-family: 'Lato', sans-serif; }
.big-text { font-size: 1.25rem; color: var(--text-gray); line-height: 1.8; margin-bottom: 25px; }
.highlight-text { font-size: 1.6rem; font-weight: 900; color: var(--primary-dark); text-transform: uppercase; margin-top: 35px; }

/* PRZYCISKI */
.btn-primary {
    display: inline-block; background-color: var(--primary-color); color: #fff; 
    padding: 18px 40px; border-radius: 40px; text-decoration: none; 
    font-size: 0.9rem; font-weight: 700; text-transform: uppercase; 
    letter-spacing: 1px; transition: all 0.3s ease; border: none; cursor: pointer;
    box-shadow: 0 5px 15px rgba(229, 176, 185, 0.4);
    width: fit-content;
}
.btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); }

/* Powiększony przycisk z sekcji HERO */
.btn-hero {
    padding: 22px 30px; 
    font-size: 1rem; 
    width: 100%; 
    max-width: 550px; 
    text-align: center;
    box-shadow: 0 8px 20px rgba(229, 176, 185, 0.6);
}

.btn-secondary {
    display: inline-block; background-color: transparent; color: var(--text-dark); 
    padding: 18px 40px; border-radius: 40px; text-decoration: none; 
    font-size: 0.9rem; font-weight: 700; text-transform: uppercase; 
    letter-spacing: 1px; transition: all 0.3s ease; border: 2px solid var(--text-dark); cursor: pointer;
    width: fit-content;
}
.btn-secondary:hover { background-color: var(--text-dark); color: #fff; transform: translateY(-2px); }

/* HERO SPLIT Z NAPRAWIONYM SUWAKIEM */
.hero-split { 
    display: flex; 
    align-items: center; 
    min-height: 100vh; 
    background-color: var(--bg-light); 
    padding: 40px 0; 
}
.hero-text-side { 
    flex: 1.1; 
    padding: 40px 5%; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}
.hero-tag { font-size: 0.8rem; font-weight: 900; letter-spacing: 3px; color: var(--primary-dark); margin-bottom: 20px; }
.hero-text-side h1 { font-size: 3.8rem; line-height: 1.1; font-weight: 700; text-transform: uppercase; color: var(--text-dark); margin-bottom: 15px; }
.hero-italic { font-size: 1.8rem; font-style: italic; color: var(--text-gray); margin-bottom: 30px; font-weight: 400; }
.hero-text-side p { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 40px; max-width: 550px; }

.hero-image-side { 
    flex: 1; 
    position: relative; 
    width: 100%; 
    padding-right: 5%; 
}
.hero-slider { 
    width: 100% !important; 
    height: 600px !important; 
    max-width: 800px;
    margin: 0 auto; 
    border-radius: 20px !important; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.1) !important; 
    position: relative; 
}

/* KOD SUWAKA */
.ba-slider-container { position: relative; width: 100%; overflow: hidden; background: #eee; }
.ba-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before { clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%); z-index: 2; }
.ba-after { z-index: 1; }
.ba-slider-input { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; z-index: 4; cursor: ew-resize; }
.ba-slider-line { position: absolute; top: 0; left: 50%; width: 4px; height: 100%; background: #fff; z-index: 3; transform: translateX(-50%); pointer-events: none; }
.ba-slider-button { position: absolute; top: 50%; left: 50%; width: 40px; height: 40px; background: #fff; border: 4px solid var(--primary-color); border-radius: 50%; z-index: 3; transform: translate(-50%, -50%); pointer-events: none; }

/* KORZYŚCI */
.benefits-clean-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; margin-top: 60px; }
.benefit-clean-card { text-align: center; padding: 20px; }
.benefit-num { 
    display: inline-flex; justify-content: center; align-items: center;
    width: 65px; height: 65px; border: 1px solid var(--primary-color); 
    border-radius: 50%; font-size: 1.6rem; font-family: 'Playfair Display', serif;
    color: var(--primary-dark); margin-bottom: 25px; background-color: var(--bg-light);
}
.benefit-clean-card h3 { font-size: 1.25rem; margin-bottom: 15px; font-family: 'Lato', sans-serif; text-transform: uppercase; font-weight: 900; letter-spacing: 0.5px;}
.benefit-clean-card p { color: var(--text-gray); font-size: 1rem; line-height: 1.6; }

/* DLA KOGO KURS */
.target-grid { max-width: 900px; margin: 60px auto 0; }
.target-box { background: #fff; padding: 50px; border-radius: 15px; position: relative; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.02); }
.target-box-num { font-size: 4rem; font-family: 'Playfair Display', serif; color: var(--primary-color); position: absolute; top: 15px; right: 30px; opacity: 0.3; line-height: 1; }
.target-box h3 { font-size: 1.6rem; margin-bottom: 15px; color: var(--text-dark); font-weight: 700;}
.target-box p { color: var(--text-gray); font-size: 1.1rem; }
.warning-box { margin: 40px auto 0; max-width: 900px; padding: 30px; border: 1px dashed var(--primary-dark); border-radius: 10px; text-align: center; color: var(--text-gray); }

/* MODUŁY */
.veronika-modules-container { margin-top: 80px; display: flex; flex-direction: column; gap: 100px; }
.veronika-module-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }

.v-mod-label { font-size: 0.85rem; font-weight: 900; color: var(--primary-dark); letter-spacing: 2px; display: block; margin-bottom: 10px; }
.v-mod-text h3 { font-size: 2.2rem; color: var(--text-dark); margin-bottom: 20px; line-height: 1.2; }
.v-mod-text p { color: var(--text-gray); margin-bottom: 25px; font-size: 1.05rem; }
.v-mod-list { list-style: none; margin-bottom: 30px; }
.v-mod-list li { position: relative; padding-left: 25px; margin-bottom: 12px; color: var(--text-gray); font-size: 1rem; }
.v-mod-list li::before { content: '→'; position: absolute; left: 0; color: var(--primary-dark); font-weight: bold; }

.v-mod-result { background-color: var(--bg-white); padding: 25px; border-radius: 10px; border-left: 4px solid var(--primary-color); color: var(--text-dark); font-size: 1rem; box-shadow: var(--shadow); }
.v-mod-result strong { color: var(--primary-dark); display: inline; }

.v-mod-image { width: 100%; height: 500px; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow); }
.v-mod-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.veronika-module-row:hover .v-mod-image img { transform: scale(1.03); }

/* O MNIE (BIO) ORAZ SKĄD POMYSŁ */
.bio-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.bio-image img { width: 100%; border-radius: 15px; box-shadow: var(--shadow); object-fit: cover;}
.bio-text h2 { margin-bottom: 20px; }

/* OPINIE - SCREENSHOTY */
.opinions-screenshots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}
.opinion-screen-wrapper {
    width: 100%; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow); 
    background-color: #fff; transition: transform 0.3s ease;
}
.opinion-screen-wrapper:hover { transform: translateY(-5px); }
.opinion-screen-wrapper img { width: 100%; height: auto; display: block; object-fit: contain; }

/* BONUSY */
.bg-pink-accent { background-color: #fceef0; }
.bonuses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 20px; }
.bonus-card { background: #fff; padding: 40px; border-radius: 15px; box-shadow: var(--shadow); border: 2px solid var(--primary-color); }
.bonus-img { width: 100%; height: 250px; object-fit: cover; border-radius: 10px; margin-bottom: 25px; }
.bonus-num { display: inline-block; background: var(--primary-color); color: #fff; padding: 5px 15px; border-radius: 20px; font-weight: 900; font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 20px; }
.bonus-card h3 { font-size: 1.6rem; color: var(--text-dark); margin-bottom: 15px; line-height: 1.3;}
.bonus-card p { color: var(--text-gray); margin-bottom: 20px; }
.bonus-card strong { display: block; margin-bottom: 15px; color: var(--text-dark); }

/* CENNIK PROSTY */
.pricing-minimalist { background: #fff; padding: 60px 40px; border-radius: 20px; box-shadow: var(--shadow); margin-top: 40px; }
.simple-pricing { margin-bottom: 40px; }
.old-price-big { text-decoration: line-through; color: #aaa; font-size: 2.5rem; margin-bottom: 10px; font-family: 'Lato', sans-serif; font-weight: 700; }
.new-price-big { font-size: 5.5rem; font-weight: 900; color: var(--text-dark); line-height: 1; font-family: 'Lato', sans-serif; }

.btn-buy-premium {
    display: inline-block; background: linear-gradient(135deg, var(--text-dark) 0%, #444 100%); 
    color: #fff; padding: 20px 40px; border-radius: 50px; font-size: 1rem; font-weight: 900; 
    text-transform: uppercase; letter-spacing: 1.5px; transition: all 0.3s ease; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.15); border: none; cursor: pointer; text-decoration: none;
    width: fit-content; margin: 0 auto;
}
.btn-buy-premium:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(0,0,0,0.25); background: linear-gradient(135deg, #111 0%, #333 100%); }

/* INSTA CTA BOX */
.insta-cta-box { background: #fff; padding: 50px; border-radius: 20px; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.05); }
.insta-icon { width: 90px; height: 90px; border-radius: 50%; margin-bottom: 25px; object-fit: cover; border: 2px solid var(--primary-color);}

/* RWD - MOBILKI */
@media (max-width: 960px) {
    .hero-split { 
        flex-direction: column; 
        min-height: auto; 
        padding-top: 80px; 
    }
    .hero-text-side { 
        padding: 40px 5%; 
        text-align: center; 
    }
    .hero-image-side { 
        padding: 0 5%; 
        width: 100%; 
        display: block; 
        margin-bottom: 40px;
    }
    .hero-slider { 
        height: 450px !important; 
    }
    
    .btn-primary, .btn-buy-premium, .btn-secondary, .btn-hero { width: auto; }
    .benefits-clean-grid, .bonuses-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .veronika-modules-container { gap: 60px; }
    .veronika-module-row { grid-template-columns: 1fr; gap: 30px; }
    .v-mod-image { height: 350px; }
    
    .bio-split { grid-template-columns: 1fr; }
    .section-title { font-size: 2.2rem; }
    
    .opinions-screenshots-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .opinions-screenshots-grid { grid-template-columns: 1fr; }
    .new-price-big { font-size: 4rem; } 
    .hero-slider { height: 380px !important; }
    .bonus-img { height: 200px; }
}