/* =========================================
   RESET & VARIABLES (Zgodne z poprzednim LP)
   ========================================= */
:root {
    --bg-color: #F9F7F2;
    --section-alt: #EFEBE4;
    --white: #FFFFFF;
    --text-main: #2C2A29;
    --text-muted: #5D5654;
    --accent: #C87A56;
    --accent-hover: #A66343;
    --accent-light: #FDF6F3;
    --dark-bg: #2C2A29;
    --gold: #D4AF37;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 18px;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--text-main); margin-bottom: 1rem; line-height: 1.3; }
strong { font-weight: 700; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 60px 0; }
.text-center { text-align: center; }
.max-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

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

/* Buttony */
.btn-cta {
    background-color: var(--accent);
    color: var(--white);
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(200, 122, 86, 0.4);
    display: inline-block;
    text-decoration: none;
    text-align: center;
}
.btn-cta:hover { background-color: var(--accent-hover); transform: translateY(-2px); }
.btn-pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(200, 122, 86, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(200, 122, 86, 0); }
    100% { box-shadow: 0 0 0 0 rgba(200, 122, 86, 0); }
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid var(--text-muted);
    color: var(--text-main);
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-cta-outline:hover { border-color: var(--text-main); background: rgba(0,0,0,0.05); }

.btn-text {
    background: none;
    border: none;
    text-decoration: underline;
    color: #000;
    font-size: 1rem;
    cursor: pointer;
    padding: 10px;
}
.btn-text:hover { color: var(--text-main); }

.btn-full-width { width: 100%; }

/* =========================================
   PROGRESS BAR (Upsell specific)
   ========================================= */
.progress-bar-container {
    background: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}
.progress-label { font-size: 0.8rem; font-weight: 700; margin-bottom: 5px; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }
.progress-bar {
    height: 6px;
    background: #eee;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 3px;
    overflow: hidden;
}
.progress-fill {
    width: 85%; /* 85% wypełnienia */
    height: 100%;
    background: var(--accent);
}

/* =========================================
   HERO SECTION
   ========================================= */
.upsell-hero {
    background-color: var(--section-alt);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-alert {
    display: block;
    color: #C62828; /* Czerwień alarmowa, ale stonowana */
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-subhead {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-main);
}

.btn-hero-scroll {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 5px;
    transition: all 0.3s;
}
.btn-hero-scroll:hover { color: var(--accent-hover); border-color: var(--accent-hover); }

/* =========================================
   INTRO & PROBLEM/SOLUTION
   ========================================= */
.intro-section { background: var(--white); }

.text-block-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}
.lead-text { font-size: 1.3rem; font-family: 'Playfair Display', serif; font-weight: 700; margin-bottom: 20px; }

.problem-solution-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 50px;
}

.problem-side {
    background: #FFF5F5; /* Lekki róż/czerwień */
    padding: 40px;
}
.problem-side h3 { font-size: 1.3rem; margin-bottom: 20px; color: #C62828; }

.solution-side {
    background: #F1F8F1; /* Lekka zieleń */
    padding: 40px;
}
.solution-side h3 { font-size: 1.3rem; margin-bottom: 20px; color: #2E7D32; }

/* Listy */
.cross-list, .check-list { list-style: none; }
.cross-list li, .check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1rem;
}
.cross-list li::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0; top: 3px;
    color: #C62828;
}
.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0; top: 3px;
    color: #2E7D32;
}

/* =========================================
   CTA BLOCK (Middle)
   ========================================= */
.cta-block {
    text-align: center;
    background: var(--section-alt);
    padding: 40px;
    border-radius: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.btn-large { font-size: 1.3rem; padding: 25px 50px; width: 100%; max-width: 500px; }
.btn-sub { display: block; font-size: 0.9rem; font-weight: 400; opacity: 0.9; margin-top: 5px; text-transform: none; }
.cta-secondary-wrapper { margin-top: 20px; }

/* =========================================
   DIFFERENTIATION SECTION
   ========================================= */
.differentiation-section { background: var(--bg-color); }

.comparison-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    text-align: center;
}
.comparison-header { font-weight: 700; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; font-size: 0.9rem; }
.comparison-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.comp-item { flex: 1; padding: 20px; border-radius: 10px; background: #fafafa; }
.comp-item.highlight { background: var(--accent-light); border: 1px solid var(--accent); }
.comp-item i { font-size: 2rem; margin-bottom: 15px; color: var(--text-muted); }
.comp-item.highlight i { color: var(--accent); }
.comp-separator i { color: var(--text-muted); opacity: 0.5; }

.features-grid { max-width: 800px; margin: 0 auto 40px; }
.feature-box { padding: 30px; background: var(--white); border-radius: 10px; border-left: 4px solid var(--accent); }
.check-list-simple { list-style: none; margin-top: 20px; }
.check-list-simple li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}
.check-list-simple li::before {
    content: '\2022';
    color: var(--accent);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0; top: -5px;
}

.impact-statement { text-align: center; margin: 50px 0; }
.impact-vs { font-size: 1.2rem; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.impact-vs .faded { color: var(--text-muted); opacity: 0.7; }
.impact-vs .vs-label { font-family: 'Playfair Display', serif; font-style: italic; color: var(--accent); }
.impact-vs .bold-accent { color: var(--text-main); font-weight: 700; background: var(--white); padding: 5px 15px; border-radius: 5px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }

.bonus-box {
    background: #2C2A29;
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.bonus-intro { color: var(--accent); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 15px; }
.bonus-main { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 20px; }
.bonus-footer strong { color: var(--accent); text-transform: uppercase; }

/* =========================================
   DELIVERABLES SECTION
   ========================================= */
.deliverables-section { background: var(--white); }
.deliverables-wrapper { max-width: 800px; margin: 0 auto; }

.gold-list { list-style: none; margin: 30px 0; }
.gold-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.gold-list li:last-child { border-bottom: none; }
.gold-list i { color: var(--accent); font-size: 1.2rem; margin-top: 4px; }

.negative-promises {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0;
    font-style: italic;
    color: var(--text-muted);
}
.negative-promises span { position: relative; }
.negative-promises span::before { content: '×'; color: #C62828; margin-right: 5px; font-weight: bold; }

.effect-box {
    text-align: center;
    background: var(--section-alt);
    padding: 30px;
    border-radius: 10px;
    font-size: 1.1rem;
}

/* =========================================
   AUDIENCE SECTION (Dark)
   ========================================= */
.audience-section-dark { background: var(--dark-bg); color: var(--section-alt); }
.section-heading-light { color: var(--white); text-align: center; margin-bottom: 50px; }

.audience-grid-upsell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.audience-col h3 { color: var(--accent); font-size: 1.2rem; margin-bottom: 25px; border-bottom: 1px solid #444; padding-bottom: 10px; }

.light-check-list { list-style: none; }
.light-check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #ddd;
}
.light-check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0; top: 4px;
    color: var(--accent);
}

.summary-statement { text-align: center; max-width: 700px; margin: 0 auto; }
.highlight-text { font-size: 1.2rem; color: var(--white); font-weight: 300; font-style: italic; margin-top: 10px; }

/* =========================================
   PRICING & FINAL DECISION
   ========================================= */
.pricing-decision-section { background: var(--bg-color); }

.final-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    text-align: center;
}
.final-card h2 { font-size: 2rem; margin-bottom: 40px; }

.benefits-summary {
    background: var(--section-alt);
    padding: 30px;
    border-radius: 10px;
    display: inline-block;
    text-align: left;
    margin-bottom: 40px;
}
.benefits-summary ul { padding-left: 20px; margin-top: 10px; }
.benefits-summary li { margin-bottom: 5px; }

.final-emotional-text { font-size: 1.2rem; margin-bottom: 50px; }

/* Final CTA Layout */
.cta-block-final {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-option {
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s;
    width: 100%;
    max-width: 400px;
}

.primary-option {
    background: #fff;
    border: 2px solid var(--accent);
    box-shadow: 0 10px 40px rgba(200, 122, 86, 0.15);
    position: relative;
    transform: scale(1.05);
    z-index: 2;
}
.ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 5px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
}

.secondary-option {
    background: transparent;
    border: 1px solid #ddd;
    opacity: 0.8;
}
.secondary-option:hover { opacity: 1; border-color: var(--text-muted); }

.option-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; height: 50px; }

.cta-or {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 768px) {
    .hero-title { font-size: 1.8rem; }
    .problem-solution-box { grid-template-columns: 1fr; }
    .comparison-grid { flex-direction: column; gap: 15px; }
    .comp-separator { transform: rotate(90deg); }
    .audience-grid-upsell { grid-template-columns: 1fr; gap: 30px; }
    
    .cta-block-final { flex-direction: column; gap: 40px; }
    .primary-option { transform: scale(1); width: 100%; }
    .secondary-option { width: 100%; }
    
    .section-padding { padding: 40px 0; }
    .final-card { padding: 30px 20px; }
    .btn-large { padding: 20px 20px; font-size: 1.1rem; }
}

/* =========================================
   MODERN STICKY PROGRESS BAR (2026)
   ========================================= */

/* Kontener główny - przyklejony do góry z efektem szkła */
.upsell-progress-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.85); /* Półprzezroczyste tło */
    backdrop-filter: blur(12px); /* Efekt rozmycia tego co pod spodem (iOS style) */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 122, 86, 0.1); /* Delikatna linia w kolorze akcentu */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 12px 0;
    transition: all 0.3s ease;
}

/* Wewnętrzny kontener */
.upsell-progress-sticky .progress-container {
    max-width: 800px; /* Wąski kontener dla lepszego skupienia wzroku */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Meta dane (Teksty nad paskiem) */
.progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-family: 'Lato', sans-serif;
}

/* Badge "Krok 2 z 2" */
.step-badge {
    background: rgba(200, 122, 86, 0.1);
    color: #C87A56; /* Twój kolor accent */
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Główny tekst "Dostosowanie..." */
.step-text {
    font-weight: 600;
    color: #2C2A29;
    flex-grow: 1;
    margin-left: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Procenty po prawej */
.step-percent {
    font-weight: 900;
    color: #C87A56;
}

/* Tło paska (szare) */
.progress-track {
    width: 100%;
    height: 6px; /* Cienki, elegancki pasek */
    background: #EFEBE4; /* Twój kolor section-alt */
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

/* Wypełnienie paska z animacją */
.progress-fill {
    width: 90%; /* Stan wypełnienia */
    height: 100%;
    border-radius: 10px;
    background: #C87A56; /* Fallback color */
    
    /* Nowoczesny gradient + Animacja */
    background: linear-gradient(90deg, #C87A56 0%, #E69A78 50%, #C87A56 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite linear;
    
    box-shadow: 0 0 10px rgba(200, 122, 86, 0.4); /* Lekka poświata (Glow) */
}

/* Animacja przesuwania gradientu (efekt "płynięcia") */
@keyframes shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* =========================================
   RESPONSYWNOŚĆ (RWD)
   ========================================= */
@media (max-width: 600px) {
    .upsell-progress-sticky {
        padding: 10px 0;
    }
    
    .step-text {
        font-size: 0.8rem;
        margin-left: 10px;
    }
    
    .step-badge {
        padding: 3px 8px;
        font-size: 0.65rem;
    }
    
    /* Na bardzo małych ekranach ukrywamy tekst, zostawiamy Krok i % */
    @media (max-width: 360px) {
        .step-text {
            display: none;
        }
    }
}

/* Dodatkowy odstęp dla body, żeby pasek nie zasłaniał treści na górze strony */
body {
    padding-top: 70px; 
}

/* =========================================
   MODERN HERO SECTION (2026 Ambient Glass)
   ========================================= */

.upsell-hero-modern {
    position: relative;
    /* Pamiętaj o padding-top dla body w poprzednim kroku, tu dajemy extra oddech */
    padding: 140px 0 80px; 
    overflow: hidden;
    background-color: var(--bg-color); /* Baza beżowa */
    min-height: 85vh; /* Prawie cały ekran */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- AMBIENT LIGHT (Tło) --- */
/* To są te "pływające bloby" w tle, które robią klimat */
.ambient-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px); /* Bardzo mocne rozmycie */
    opacity: 0.6;
    z-index: 0;
    animation: floatAmbient 10s infinite alternate ease-in-out;
}

.ambient-light.one {
    width: 400px;
    height: 400px;
    background: rgba(200, 122, 86, 0.2); /* Kolor Terakota */
    top: -50px;
    left: -100px;
}

.ambient-light.two {
    width: 300px;
    height: 300px;
    background: rgba(212, 175, 55, 0.15); /* Kolor Złoty */
    bottom: 10%;
    right: -50px;
    animation-delay: -5s; /* Inna faza animacji */
}

@keyframes floatAmbient {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 40px) scale(1.1); }
}

/* --- GLASS CARD (Karta Główna) --- */
.hero-container-glass {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

 

/* Delikatny efekt 3D przy najechaniu myszką */
.hero-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(200, 122, 86, 0.1);
}

/* --- TYPOGRAFIA I ELEMENTY --- */

.eyebrow {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 700;
    opacity: 0.8;
}

/* ALERT BADGE (Zamiast zwykłego tekstu) */
.alert-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.alert-badge {
    background: #FFF0EB; /* Bardzo jasna terakota */
    color: #C62828; /* Ciemna czerwień */
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(198, 40, 40, 0.1);
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.08);
}

.pulse-icon {
    display: flex;
    align-items: center;
    animation: handPulse 1.5s infinite;
}

@keyframes handPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* NAGŁÓWEK H1 */
.hero-title-modern {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem); /* Skalowanie fontu */
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Divider (Ozdobna linia) */
.hero-divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 20px auto 30px;
    border-radius: 2px;
    opacity: 0.5;
}

.hero-subhead-modern {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 50px;
}

/* --- SCROLL BUTTON (Interaktywny) --- */
.btn-scroll-modern {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
    cursor: pointer; 
}

.btn-scroll-modern .btn-text {
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.btn-scroll-modern .btn-subtext {
    font-size: 0.9rem;
    color: #000;
    margin-top: 4px;
    font-weight: 400;
}

.scroll-icon-circle {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: var(--accent);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy effect */
    animation: bounceSlow 2s infinite;
}

/* Efekt Hover na przycisk */
.btn-scroll-modern:hover .btn-text {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-scroll-modern:hover .scroll-icon-circle {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(200, 122, 86, 0.3);
    animation: none; /* Stop bounce on hover */
}

@keyframes bounceSlow {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* =========================================
   MEDIA QUERIES (Mobile Fixes)
   ========================================= */
@media (max-width: 768px) {
    .upsell-hero-modern {
        padding: 120px 20px 60px; /* Mniejszy padding na mobile */
        min-height: auto;
    }
    
    .hero-glass-card {
        padding: 40px 25px; /* Mniejsze marginesy wewnątrz karty */
    }
    
    .alert-badge {
        padding: 8px 15px;
        font-size: 0.9rem;
        width: 100%; /* Badge na całą szerokość na mobile */
        justify-content: center;
        text-align: center;
    }
    
    .hero-subhead-modern {
        font-size: 1.1rem;
    }
}

/* =========================================
   MODERN INTRO & COMPARISON (2026 Style)
   ========================================= */

.intro-section-modern {
    background: linear-gradient(180deg, var(--bg-color) 0%, #fff 100%);
    padding-top: 60px;
    padding-bottom: 80px;
}

/* --- INTRO TEXT --- */
.intro-header-modern {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.lead-text-modern {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--text-main);
    margin-bottom: 30px;
}

.text-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -5px;
    width: 105%;
    height: 10px;
    background: rgba(200, 122, 86, 0.2); /* Akcent Terakota */
    z-index: -1;
    transform: rotate(-1deg);
    border-radius: 4px;
}

.sub-lead-modern {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.vertical-line {
    width: 4px;
    background: var(--accent);
    border-radius: 4px;
    flex-shrink: 0;
}

/* --- COMPARISON GRID (BENTO STYLE) --- */
.comparison-wrapper-modern {
    display: grid;
    grid-template-columns: 1fr auto 1.1fr; /* Problem | Strzałka | Rozwiązanie (nieco szersze) */
    gap: 20px;
    align-items: stretch;
    margin-bottom: 60px;
}

/* KARTA PROBLEMU (Pain) */
.card-problem-modern {
    background: #F5F3EF; /* Szarawy beż - "ciężki" */
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.03); /* Cień do środka - "wgłębienie" */
    display: flex;
    flex-direction: column;
}

.card-header-pain {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: #888;
}

.icon-box-pain {
    font-size: 1.5rem;
    color: #999;
}

.card-header-pain h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.pain-list-modern {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pain-list-modern li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pain-list-modern li::before {
    content: '•';
    color: #bbb;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1rem;
    top: 5px;
}

/* ŁĄCZNIK (Strzałka) */
.connector-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.5;
}

/* KARTA ROZWIĄZANIA (Gain) - To jest Hero tej sekcji */
.card-solution-modern {
    background: #fff;
    border-radius: 24px;
    padding: 45px; /* Nieco większy padding */
    border: 2px solid var(--accent); /* Wyróżnienie kolorem */
    box-shadow: 0 20px 60px rgba(200, 122, 86, 0.15); /* Duży, kolorowy cień */
    position: relative;
    overflow: hidden;
    transform: scale(1.02); /* Lekkie powiększenie względem problemu */
    z-index: 2;
}

.card-header-gain {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.icon-box-gain {
    min-width: 40px;
    height: 40px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-header-gain h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--text-main);
}

.gain-list-modern {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.gain-list-modern li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.5;
}

.gain-list-modern li i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Efekt Glow w tle karty rozwiązania */
.glow-effect {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200, 122, 86, 0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
}

/* --- MODERN CTA BUTTONS --- */
.cta-block-modern {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn-cta-modern {
    background: var(--accent);
    border: none;
    padding: 22px 60px;
    border-radius: 60px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(200, 122, 86, 0.3);
}

.btn-cta-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(200, 122, 86, 0.5);
    background: var(--accent-hover);
}

.btn-main-text {
    display: block;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-sub-text {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin-top: 5px;
}

/* Shine Animation on Button */
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    animation: btnShine 3s infinite;
}

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

.btn-text-modern {
    background: none;
    border: none;
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: underline;
    text-decoration-color: rgba(0,0,0,0.2);
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s;
}

.btn-text-modern:hover {
    color: var(--text-main);
}

/* --- RWD --- */
@media (max-width: 992px) {
    .comparison-wrapper-modern {
        grid-template-columns: 1fr; /* Jeden pod drugim */
        gap: 30px;
    }

    .connector-arrow {
        transform: rotate(90deg); /* Strzałka w dół */
        margin: 10px 0;
    }

    .card-solution-modern {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .lead-text-modern {
        font-size: 1.4rem;
    }
    
    .sub-lead-modern {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .vertical-line {
        width: 50px;
        height: 3px;
        margin: 0 auto;
    }

    .card-problem-modern,
    .card-solution-modern {
        padding: 30px 25px;
    }

    .btn-cta-modern {
        width: 100%;
        padding: 20px 30px;
    }
    
    .btn-main-text {
        font-size: 1.1rem;
    }
}

/* =========================================
   MODERN DIFFERENTIATION SECTION (2026)
   ========================================= */

.differentiation-section-modern {
    background-color: var(--bg-color);
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}

/* Header Sekcji */
.section-header-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.heading-serif {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-main);
}

.text-accent-italic {
    color: var(--accent);
    
}

.sub-heading-modern {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- COMPARISON DECK (Karty Porównawcze) --- */
.comparison-deck {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
}

.deck-card {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

/* Karta Lewa (Basic) */
.card-basic {
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--text-muted);
}

.card-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #999;
}

.card-icon-faded {
    font-size: 2.5rem;
    color: #ccc;
    margin-bottom: 20px;
}

.card-text-faded {
    font-size: 1rem;
    line-height: 1.5;
}

/* Connector (Strzałka) */
.deck-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.connector-circle {
    width: 40px;
    height: 40px;
    background: var(--bg-color);
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Karta Prawa (Premium) */
.card-premium {
    background: #fff;
    border: 2px solid var(--accent); /* Ramka akcentowa */
    box-shadow: 0 15px 40px rgba(200, 122, 86, 0.15); /* Kolorowy cień */
    transform: scale(1.05); /* Powiększenie */
    z-index: 1;
    overflow: hidden;
}

.card-label-premium {
    background: var(--accent);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-icon-accent {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(200,122,86,0.3));
}

.card-text-bold {
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.5;
}

.highlight-bg {
    background: linear-gradient(120deg, rgba(200, 122, 86, 0.1) 0%, rgba(200, 122, 86, 0.2) 100%);
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 700;
    color: var(--accent);
}

.premium-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(200,122,86,0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* --- FEATURES GLASS PANEL --- */
.features-glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 24px;
    padding: 50px;
    max-width: 850px;
    margin: 0 auto 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.panel-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-main);
    text-align: center;
}

.features-modern-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Grid 2 kolumny na desktop */
    gap: 30px;
}

.features-modern-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.list-icon {
    width: 32px;
    height: 32px;
    background: rgba(200, 122, 86, 0.1);
    color: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.list-content {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* --- IMPACT STATEMENT --- */
.impact-wrapper {
    text-align: center;
    margin-bottom: 80px;
}

.impact-intro {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.impact-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    flex-wrap: wrap;
}

.impact-side {
    position: relative;
    padding: 20px;
    max-width: 400px;
}

.impact-side.left {
    color: var(--text-muted);
    font-style: italic;
    opacity: 0.7;
}

.impact-side.right {
    color: var(--text-main);
    font-weight: 700;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.quote-mark {
    font-size: 3rem;
    line-height: 0;
    vertical-align: middle;
    color: #ddd;
    margin-right: 5px;
}

.quote-mark.active {
    color: var(--accent);
}

.impact-divider {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    background: #eee;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- BONUS GOLD TICKET --- */
.bonus-gold-ticket {
    background: #2C2A29; /* Dark Luxury */
    color: #F9F7F2;
    max-width: 850px;
    margin: 0 auto;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Złota ramka dookoła (wewnątrz) */
.ticket-border {
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px dashed rgba(212, 175, 55, 0.3); /* Gold dashed */
    border-radius: 15px;
    pointer-events: none;
}

.ticket-content {
    padding: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.bonus-badge {
    background: #D4AF37; /* Gold */
    color: #2C2A29;
    font-weight: 900;
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.bonus-intro {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    font-size: 1rem;
}

.bonus-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 30px;
}

.bonus-divider {
    width: 50px;
    height: 1px;
    background: rgba(212, 175, 55, 0.5);
    margin: 0 auto 30px;
}

.gold-text {
    color: #D4AF37;
    font-weight: 700;
    text-transform: uppercase;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 768px) {
    .comparison-deck {
        flex-direction: column;
        gap: 20px;
    }

    .deck-connector {
        transform: rotate(90deg);
    }

    .card-premium {
        transform: scale(1);
    }

    .features-modern-list {
        grid-template-columns: 1fr; /* Lista jedna pod drugą na mobile */
    }

    .impact-visual {
        flex-direction: column;
    }

    .impact-side {
        max-width: 100%;
        text-align: center;
    }

    .ticket-content {
        padding: 30px 20px;
    }
    
    .bonus-main-title {
        font-size: 1.3rem;
    }
}

/* =========================================
   MODERN DELIVERABLES SECTION (Value Grid)
   ========================================= */

.deliverables-section-modern {
    background-color: #fff; /* Czyste tło dla kontrastu z poprzednią beżową sekcją */
    position: relative;
    overflow: hidden;
}

/* Ozdobne tło (kropki/szum) */
.deliverables-section-modern::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#ddd 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
}

.header-wrapper {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-sub-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-top: -10px;
}

/* --- GRID KAFELKÓW --- */
.deliverables-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsywny grid */
    gap: 25px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Styl Karty */
.value-card {
    background: #F9F7F2; /* Jasny beż */
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: #fff;
    border-color: rgba(200, 122, 86, 0.2);
}

/* Ikony w kartach */
.icon-bubble-soft {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.value-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
}

/* Wyróżniona Karta (Główny Switch) */
.highlight-card {
    background: #fff;
    border: 1px solid var(--accent);
    grid-column: span 2; /* Zajmuje 2 kolumny na desktopie */
}

.icon-bubble-accent {
    width: 45px;
    height: 45px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.highlight-card p {
    font-size: 1.05rem;
}

/* --- ANTI-HUSTLE STRIP (Pasek Negatywny) --- */
.anti-hustle-strip {
    background: #F5F5F5;
    border-radius: 50px;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.anti-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888;
    font-weight: 500;
    font-size: 0.95rem;
}

.anti-item i {
    color: #C62828; /* Czerwony X */
}

.anti-separator {
    width: 1px;
    height: 20px;
    background: #ddd;
}

/* --- RESULT BOX (Efekt Końcowy) --- */
.result-highlight-box {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(200, 122, 86, 0.25);
}

.result-icon {
    font-size: 2.5rem;
    background: rgba(255,255,255,0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result-content strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-content p {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    line-height: 1.3;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 992px) {
    .highlight-card {
        grid-column: span 1; /* Na tablecie wraca do 1 kolumny */
    }
}

@media (max-width: 768px) {
    .deliverables-grid-modern {
        grid-template-columns: 1fr;
    }

    .anti-hustle-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        border-radius: 20px;
    }

    .anti-separator {
        display: none;
    }

    .result-highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .result-content p {
        font-size: 1.1rem;
    }
}


/* =========================================
   MODERN AUDIENCE SECTION (Dark Luxury)
   ========================================= */

.audience-section-modern-dark {
    background-color: #121212; /* Głęboka czerń/grafit */
    color: #F9F7F2;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

/* Tło ambientowe */
.dark-ambient-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(200, 122, 86, 0.08), transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05), transparent 40%);
    z-index: 0;
}

.relative-z {
    position: relative;
    z-index: 1;
}

.section-heading-light-modern {
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

/* --- GRID KART --- */
.audience-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Styl Karty Ciemnej */
.audience-card-dark {
    background: rgba(255, 255, 255, 0.03); /* Bardzo ciemne szkło */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease;
}

.audience-card-dark:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

/* Akcent na górze karty */
.card-top-accent {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
}

.pain-accent { background: #555; }
.gain-accent { background: linear-gradient(90deg, var(--accent), #D4AF37); }

/* Nagłówek w karcie */
.audience-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.audience-icon {
    font-size: 1.5rem;
    color: #888;
    background: rgba(255,255,255,0.05);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-icon.gold-icon {
    color: #D4AF37; /* Gold */
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.audience-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.4;
}

/* Listy */
.dark-modern-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dark-modern-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.dark-modern-list li i {
    margin-top: 5px;
    font-size: 0.9rem;
}

.dark-modern-list li .fa-chevron-right {
    color: #555; /* Subtle arrow */
}

.dark-modern-list li .fa-check {
    color: var(--accent); /* Accent check */
}

/* Wyróżnienie prawej karty (Goal) */
.highlight-card-dark {
    border: 1px solid rgba(200, 122, 86, 0.3);
    background: rgba(200, 122, 86, 0.03);
}

.card-glow {
    position: absolute;
    bottom: 0; right: 0;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(200, 122, 86, 0.15), transparent 70%);
    pointer-events: none;
}

/* --- SUMMARY STATEMENT (System Message) --- */
.summary-statement-modern {
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border-left: 4px solid var(--accent);
    padding: 30px;
    border-radius: 0 12px 12px 0;
    max-width: 800px;
    margin: 0 auto;
}

.statement-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted); /* Tutaj text-muted musi być zdefiniowane dla ciemnego tła lub nadpisane */
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.highlight-text-modern {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}

.text-gold {
    color: #D4AF37;
    font-weight: 700;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 992px) {
    .audience-grid-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .audience-card-dark {
        padding: 30px 20px;
    }
    
    .section-heading-light-modern {
        font-size: 1.6rem;
    }

    .highlight-text-modern {
        font-size: 1.1rem;
    }
}

/* =========================================
   MODERN FINAL DECISION & PRICING (2026)
   ========================================= */

.final-decision-modern {
    background-color: #FDFBF7; /* Bardzo jasny krem */
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

/* Tekstura szumu (Noise Texture) - daje efekt papieru premium */
.noise-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

/* Ambient Glow na dole */
.ambient-glow-bottom {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 122, 86, 0.15), transparent 70%);
    z-index: 0;
}

/* --- NAGŁÓWEK --- */
.final-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.hero-quote {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--text-main);
    font-weight: 700;
}

.text-accent-serif {
    font-family: 'Playfair Display', serif;
    color: var(--accent);
  
    display: block;
    margin-top: 10px;
}

/* --- VALUE CONTEXT --- */
.value-context-panel {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 16px;
    padding: 30px 40px;
    max-width: 800px;
    margin: 0 auto 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.context-lead {
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.final-benefits-grid {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.final-benefits-grid li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-check {
    width: 24px;
    height: 24px;
    background: #E8F5E9; /* Jasna zieleń */
    color: #2E7D32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.final-benefits-grid span {
    font-size: 1rem;
    color: var(--text-main);
}

/* --- EMOTIONAL HOOK --- */
.emotional-hook {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: var(--text-muted);
}

.emotional-hook strong {
    color: var(--text-main);
    font-size: 1.3rem;
    display: block;
    margin-top: 5px;
}

/* --- PRICING DECK (Układ Kart) --- */
.pricing-deck-2026 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Wspólne style kart */
.price-card {
    background: #fff;
    border-radius: 24px;
    transition: transform 0.3s ease;
    position: relative;
}

/* KARTA BASIC (Mniejsza) */
.basic-card {
    width: 350px;
    padding: 30px;
    border: 1px solid #eee;
    opacity: 0.9;
    z-index: 1;
}

.basic-card:hover {
    border-color: #ddd;
    opacity: 1;
}

/* KARTA PREMIUM (Główna) */
.premium-card {
    width: 420px; /* Szersza */
    padding: 50px 40px;
    border: 2px solid var(--accent);
    box-shadow: 0 25px 60px rgba(200, 122, 86, 0.2); /* Duży cień */
    z-index: 2;
    transform: scale(1.05); /* Fizycznie większa */
    overflow: hidden;
}

/* Odznaka "POLECANE" */
.best-value-badge {
    position: absolute;
    top: 0; left: 0; width: 100%;
    background: var(--accent);
    color: #fff;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 0;
    text-transform: uppercase;
}

.card-body {
    position: relative;
    z-index: 2;
    text-align: center;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.price-tag-big {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    display: block;
    margin-bottom: 20px;
}

.option-desc {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 30px;
    min-height: 40px;
}

.option-desc-highlight {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 35px;
    font-weight: 500;
    line-height: 1.5;
}

/* Przyciski */
.btn-outline-modern {
    background: transparent;
    border: 2px solid #ddd;
    color: var(--text-muted);
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-outline-modern:hover {
    border-color: var(--text-main);
    color: var(--text-main);
}

/* Separator "LUB" */
.pricing-or {
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 3;
    margin: 0 -25px; /* Nachodzi na karty */
}

/* Ozdobny pasek w karcie Premium */
.card-footer-strip {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 6px;
    background: linear-gradient(90deg, var(--accent), #E69A78);
}

/* --- FOOTER --- */
.site-footer-modern {
    background-color: var(--bg-color);
    padding: 40px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-divider {
    height: 1px;
    background: rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    opacity: 0.7;
}

/* --- RWD --- */
@media (max-width: 992px) {
    .pricing-deck-2026 {
        flex-direction: column;
        gap: 30px;
    }

    .pricing-or {
        margin: -15px auto; /* Pionowy odstęp */
    }

    .premium-card {
        width: 100%;
        max-width: 500px;
        transform: scale(1);
        order: 1; /* Premium pierwsza na mobile */
    }

    .basic-card {
        width: 100%;
        max-width: 500px;
        order: 3; /* Basic na dole */
    }

    .pricing-or {
        order: 2;
    }

    .final-benefits-grid {
        grid-template-columns: 1fr; /* Lista pionowa na mobile */
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-quote {
        font-size: 1.6rem;
    }
    
    .price-tag-big {
        font-size: 2.8rem;
    }
    
    .footer-row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/* =========================================
   DIFFERENTIATION REBORN (Unified Panel)
   ========================================= */

.differentiation-reborn {
    background-color: #F7F5F0; /* Bardzo jasny beż tła */
    padding-top: 80px;
    padding-bottom: 100px;
}

/* --- NAGŁÓWEK --- */
.reborn-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.heading-serif {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--accent) 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.sub-heading {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- MASTER PANEL (Główna Rama) --- */
.master-panel {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05); /* Duży, miękki cień */
    overflow: hidden; /* Żeby rogi były przycięte */
    max-width: 900px;
    margin: 0 auto 40px; /* Odstęp od Bonusu */
    border: 1px solid rgba(0,0,0,0.03);
}

.panel-section {
    padding: 40px;
    border-bottom: 1px solid #F0F0F0;
}

.panel-section:last-child {
    border-bottom: none;
}

/* STREFA 1: PORÓWNANIE (Comparison Zone) */
.comparison-zone {
    background: #FAFAFA; /* Lekko szarawe tło dla kontrastu */
}

.zone-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 20px;
    text-align: center;
}

.comparison-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.comp-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    flex: 1;
    position: relative;
    border: 1px solid transparent;
}

/* Stan pasywny (lewy) */
.state-passive {
    border-color: #eee;
}
.state-passive .status-indicator {
    width: 8px; height: 8px; background: #ccc; border-radius: 50%;
    margin-bottom: 15px;
}
.state-passive .comp-title { font-size: 0.85rem; color: #999; text-transform: uppercase; margin-bottom: 5px; }
.state-passive .comp-quote { font-size: 1.1rem; color: #777; font-weight: 500; font-style: italic; }

/* Stan aktywny (prawy) */
.state-active {
    border-color: var(--accent);
    background: #FFFBF9; /* Bardzo jasna terakota */
}
.state-active .status-indicator {
    width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 0 10px var(--accent);
}
.state-active .comp-title { font-size: 0.85rem; color: var(--accent); text-transform: uppercase; margin-bottom: 5px; font-weight: 700; }
.state-active .comp-quote { font-size: 1.2rem; color: var(--text-main); font-weight: 700; }

.transform-icon {
    font-size: 1.5rem;
    color: #ddd;
}

/* STREFA 2: FUNKCJE (Features Zone) */
.features-zone {
    background: #FFFFFF;
}

.zone-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

.features-grid-tight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 4px;
    background: rgba(200, 122, 86, 0.1);
    padding: 8px;
    border-radius: 6px;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    color: var(--text-muted);
}

.highlight-item p {
    font-weight: 700;
    color: var(--text-main);
}

/* STREFA 3: IMPACT (Impact Zone) */
.impact-zone {
    background: linear-gradient(135deg, #fff 0%, #F9F7F2 100%);
    text-align: center;
}

.impact-label {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 20px;
}

.impact-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

.text-passive {
    color: #aaa; 
    text-decoration-color: var(--accent);
    text-decoration-thickness: 2px;
    flex-basis: 45%;
}

.impact-divider {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    background: #eee;
    color: #888;
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.text-active {
    color: var(--text-main);
    font-weight: 700;
    flex-basis: 45%;
}

/* --- BONUS BAR (Dark) --- */
.bonus-bar-dark {
    background: #2C2A29;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bonus-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.bonus-left {
    flex: 2;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-right: 30px;
}

.bonus-intro {
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.bonus-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 0;
    color: #fff;
}

.bonus-right {
    flex: 1;
}

.bonus-footer {
    font-size: 1rem;
    line-height: 1.4;
}

.bonus-footer strong {
    color: #D4AF37; /* Gold */
}

/* --- RWD FIX --- */
@media (max-width: 768px) {
    .comparison-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .transform-icon {
        transform: rotate(90deg);
    }
    
    .comp-box {
        width: 100%;
        text-align: center;
    }
    
    .status-indicator { margin: 0 auto 10px; }
    
    .features-grid-tight {
        grid-template-columns: 1fr;
    }
    
    .impact-content {
        flex-direction: column;
        gap: 10px;
        font-size: 1.2rem;
    }
    
    .bonus-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .bonus-left {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-right: 0;
        padding-bottom: 20px;
    }
    
    .master-panel {
        border-radius: 16px; /* Mniejsze zaokrąglenie na mobile */
    }
}

/* =========================================
   GOLDEN INSIGHT (Bonus Section Fix)
   ========================================= */

.bonus-golden-insight {
    background: #1A1A1A; /* Elegancki grafit */
    border-radius: 20px;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Badge na górze */
.insight-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37; /* Złoty */
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 5px 12px;
    border-radius: 50px;
}

.insight-grid {
    display: grid;
    grid-template-columns: 1.5fr auto 1fr; /* Lewa (szersza) | Separator | Prawa */
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* LEWA STRONA */
.insight-label {
    font-size: 0.95rem;
    color: #D4AF37;
    margin-bottom: 15px;
    font-weight: 500;
}

.insight-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    line-height: 1.4;
    color: #fff;
    margin: 0;
}

.text-white-dim {
    color: rgba(255, 255, 255, 0.6);
}

/* SEPARATOR (Pionowa linia z gwiazdką) */
.insight-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 100px;
}

.insight-separator .line {
    width: 1px;
    flex-grow: 1;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.insight-separator .icon-star {
    color: #D4AF37;
    font-size: 0.8rem;
    margin: 10px 0;
    animation: spinSlow 10s infinite linear;
}

@keyframes spinSlow {
    100% { transform: rotate(360deg); }
}

/* PRAWA STRONA */
.insight-conclusion {
    text-align: center;
}

.insight-conclusion p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 10px;
    font-style: italic;
}

.conclusion-box {
    border: 1px solid #D4AF37;
    padding: 15px 25px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    line-height: 1.3;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

/* Efekt przesuniętej ramki (Offset Border) */
.conclusion-box::after {
    content: '';
    position: absolute;
    top: 4px; left: 4px; right: -4px; bottom: -4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: -1;
}

/* TŁO (GLOW) */
.golden-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* --- RWD FIX --- */
@media (max-width: 768px) {
    .bonus-golden-insight {
        padding: 40px 25px;
        text-align: center;
    }

    .insight-grid {
        grid-template-columns: 1fr; /* Jeden pod drugim */
        gap: 30px;
    }

    .insight-separator {
        flex-direction: row; /* Pozioma linia na mobile */
        width: 100%;
        height: auto;
        min-height: auto;
    }

    .insight-separator .line {
        height: 1px;
        width: auto;
        background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.5), transparent);
    }

    .insight-separator .icon-star {
        margin: 0 15px;
    }

    .insight-heading {
        font-size: 1.4rem;
    }
    
    .insight-badge {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* =========================================
   MODERN DELIVERABLES SECTION (Value Grid)
   ========================================= */

.deliverables-section-modern {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.deliverables-section-modern::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#ddd 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
}

.header-wrapper {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-sub-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-top: -10px;
}

/* --- GRID KAFELKÓW --- */
.deliverables-grid-modern {
    display: grid;
    /* Grid 4-kolumnowy na dużych ekranach dla symetrii (4 góra, 4 dół) */
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Styl Karty */
.value-card {
    background: #F9F7F2;
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%; /* Rozciągnij kartę na całą wysokość wiersza */
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: #fff;
    border-color: rgba(200, 122, 86, 0.2);
}

.icon-bubble-soft {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    flex-shrink: 0; /* Ikona nie może się kurczyć */
}

.icon-bubble-accent {
    width: 45px;
    height: 45px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.value-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
}

/* --- KARTA 8: ANTI-HUSTLE (Wyróżniona) --- */
.anti-hustle-card {
    background: #2C2A29; /* Ciemne tło */
    color: #fff;
    border: 1px solid #444;
    justify-content: center; /* Wyśrodkowanie pionowe */
    padding: 15px;
}

.anti-hustle-card:hover {
    background: #1a1a1a;
    border-color: var(--accent);
}

.anti-list-vertical {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.anti-list-vertical li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}

.anti-list-vertical li i {
    color: #D9534F; /* Czerwień */
    margin-top: 3px;
    flex-shrink: 0;
}

/* --- RESULT BOX --- */
.result-highlight-box {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(200, 122, 86, 0.25);
}

.result-icon {
    font-size: 2.5rem;
    background: rgba(255,255,255,0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result-content strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-content p {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    line-height: 1.3;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 1100px) {
    .deliverables-grid-modern {
        grid-template-columns: repeat(3, 1fr); /* 3 kolumny */
    }
}

@media (max-width: 850px) {
    .deliverables-grid-modern {
        grid-template-columns: repeat(2, 1fr); /* 2 kolumny */
    }
}

@media (max-width: 600px) {
    .deliverables-grid-modern {
        grid-template-columns: 1fr; /* 1 kolumna na mobile */
    }
    
    .result-highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .result-content p {
        font-size: 1.1rem;
    }
}


/* =========================================
   MODERN HERO SECTION (Image Background Fix)
   ========================================= */
.upsell-hero-modern {
    position: relative;
    padding: 140px 0 80px; 
    overflow: hidden;
    min-height: 90vh; /* Trochę wyższa dla lepszego efektu zdjęcia */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* ZDJĘCIE W TLE */
    background: url('Untitled design (4).png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Opcjonalnie: Paralaksa (tło stoi w miejscu przy przewijaniu) */
}

/* Przyciemnienie (Overlay) */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.65); /* 65% czerni dla czytelności */
    z-index: 1;
}

/* Ambient Lights - teraz jako subtelne poświaty */
.ambient-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4; /* Mniejsza przezroczystość */
    z-index: 1; /* Na równi z overlayem lub lekko pod */
    mix-blend-mode: overlay; /* Tryb mieszania dla lepszego efektu na zdjęciu */
}

.ambient-light.one {
    width: 400px;
    height: 400px;
    background: rgba(200, 122, 86, 0.6);
    top: -50px;
    left: -100px;
}

.ambient-light.two {
    width: 300px;
    height: 300px;
    background: rgba(212, 175, 55, 0.5);
    bottom: 10%;
    right: -50px;
    animation-delay: -5s;
}

@keyframes floatAmbient {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 40px) scale(1.1); }
}

.hero-container-glass {
    position: relative;
    z-index: 2; /* Musi być wyżej niż overlay */
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Karta teraz musi być bardziej "mleczna" żeby odciąć się od zdjęcia */
.hero-glass-card {
    background: rgba(255, 255, 255, 0.45); /* Bardziej biała (mniej przezroczysta) */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3), /* Mocniejszy cień dla głębi */
        inset 0 0 20px rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    max-width: 850px;
    width: 100%;
    transition: transform 0.4s ease;
}

.hero-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

/* Reszta stylów bez zmian, bo są wewnątrz białej karty */
.eyebrow {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #000;
    margin-bottom: 25px;
    font-weight: 700;
    opacity: 0.9;
}

.alert-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.alert-badge {
    background: #FFF0EB;
    color: #C62828;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(198, 40, 40, 0.1);
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.08);
}

.pulse-icon {
    display: flex;
    align-items: center;
    animation: handPulse 1.5s infinite;
}

@keyframes handPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.hero-title-modern {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 20px auto 30px;
    border-radius: 2px;
    opacity: 0.8;
}

.hero-subhead-modern {
    font-size: 1.25rem;
    color: #000;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 50px;
}

.btn-scroll-modern {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-scroll-modern .btn-text {
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.btn-scroll-modern .btn-subtext {
    font-size: 0.9rem; 
    margin-top: 4px;
    font-weight: 400;
}

.scroll-icon-circle {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: var(--accent);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: bounceSlow 2s infinite;
}

.btn-scroll-modern:hover .btn-text {
    border-color: var(--accent);
    color: var(--accent);
    background: #fff;
}

.btn-scroll-modern:hover .scroll-icon-circle {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(200, 122, 86, 0.3);
    animation: none;
}

@keyframes bounceSlow {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* RWD */
@media (max-width: 768px) {
    .upsell-hero-modern {
        padding: 120px 20px 60px;
        min-height: auto;
    }
    .hero-glass-card {
        padding: 40px 25px;
        /* Na mobile zwiększamy krycie karty, żeby tekst był idealnie czytelny na małym ekranie */
        background: rgba(255, 255, 255, 0.95); 
    }
    .alert-badge {
        padding: 8px 15px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .hero-subhead-modern {
        font-size: 1.1rem;
    }
}


.btn-scroll-modern .btn-text
{
        background: var(--accent);
    border: none;
    padding: 22px 60px;
    border-radius: 60px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(200, 122, 86, 0.3);
}

.floating-mockup {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    animation: floating 6s ease-in-out infinite;
    max-width: 90%;
}