:root {
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-100: #f1f5f9;
    --primary-500: #1d4ed8;
    --primary-400: #3b82f6;
    --accent-amber: #facc15;
    --radius-xl: 32px;
    --content-max-width: 80ch;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, sans-serif;
    color: var(--slate-900);
    background: linear-gradient(180deg, #f8fbff 0%, #eef2ff 100%);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--primary-400);
}

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

main {
    overflow: hidden;
}

.container {
    width: min(1100px, 92vw);
    margin: 0 auto;
}

.site-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.4rem 0;
    flex-wrap: wrap;
}

.brand-logo {
    height: 80px;
    width: auto;
    display: block;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--primary-500);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-weight: 500;
    flex-wrap: wrap;
}

.site-nav a {
    padding: 0.35rem 0;
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.nav-cta {
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
    color: #fff;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 15px 30px rgba(29, 78, 216, 0.25);
}

.hero {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.hero-grid {
    background: radial-gradient(150% 120% at 85% 15%, rgba(96, 165, 250, 0.9), rgba(29, 78, 216, 0.95)),
        linear-gradient(160deg, #312e81 0%, #1e3a8a 100%);
    border-radius: var(--radius-xl);
    padding: clamp(2.5rem, 4vw + 1.2rem, 4.5rem);
    display: grid;
    gap: clamp(2rem, 4vw, 3.5rem);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at -10% 20%, rgba(250, 204, 21, 0.18), transparent 55%),
        radial-gradient(circle at 120% 120%, rgba(56, 189, 248, 0.25), transparent 55%);
    pointer-events: none;
}

.hero-copy,
.hero-media {
    position: relative;
    z-index: 1;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    font-weight: 600;
    color: rgba(241, 245, 249, 0.75);
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw + 1rem, 3.4rem);
    line-height: 1.1;
    margin: 0 0 1.25rem;
}

.lead {
    font-size: 1.05rem;
    max-width: 36ch;
    margin-bottom: 2rem;
    color: rgba(226, 232, 240, 0.92);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    border: 1px solid transparent;
}

.btn.primary {
    background: #fff;
    color: var(--primary-500);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
}

.btn.primary:hover,
.btn.primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.22);
}

.btn.ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.btn.secondary {
    background: var(--slate-900);
    color: #fff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.32);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 0;
    padding-left: 6px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    font-weight: 700;
    color: #fff;
    margin-left: -12px; /* nachodzenie */
    border: 3px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 20px rgba(2, 6, 23, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.social-proof .avatar:first-child {
    margin-left: 0;
}

.social-proof .avatar-1 {
    z-index: 10;
    background: #fb923c;
}

.social-proof .avatar-2 {
    z-index: 20;
    background: #ef476f;
}

.social-proof .avatar-3 {
    z-index: 30;
    background: #2dd4bf;
}

.social-proof .avatar-4 {
    z-index: 40;
    background: #a78bfa;
}

.social-proof .avatar-5 {
    z-index: 50;
    background: #2563eb;
}

.social-proof .avatar:hover,
.social-proof .avatar:focus {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.18);
}

.hero-media {
    display: grid;
    gap: 1.2rem;
    justify-items: end;
}

.hero-photo {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 70px rgba(15, 23, 42, 0.35);
    width: min(380px, 70vw);
}

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

.hero-card {
    background: rgba(15, 23, 42, 0.82);
    padding: 1.4rem 1.6rem;
    border-radius: 22px;
    max-width: 240px;
    color: rgba(226, 232, 240, 0.92);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.45);
}

.hero-card p {
    margin: 0;
}

.hero-card .rating {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--accent-amber);
    margin: 0.4rem 0;
}

.hero-card .rating span {
    font-size: 1rem;
    color: rgba(226, 232, 240, 0.6);
}

.hero-card .caption {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(226, 232, 240, 0.75);
}

.section {
    padding: clamp(3rem, 5vw, 5rem) 0;
}

.section.alt {
    background: rgba(255, 255, 255, 0.7);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem auto;
}

.section-header h2 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 3vw + 1rem, 2.6rem);
    line-height: 1.2;
}

.section-header p {
    margin: 0;
    color: var(--slate-700);
}

/* UJEDNOLICENIE SZEROKOŚCI SEKCJI I GUTTERÓW */
.section > .container {
    padding-inline: 1rem; /* jednakowe "guttery" dla wszystkich sekcji */
}

/* Wewnętrzne bloki, które wcześniej miały różne max-width — wymuszamy spójność */
.promo-inner,
.author-inner,
.cta-container,
.comparison,
.problems-content,
.outcomes-grid {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
    padding-inline: 0;
}

/* Upewnij się, że hero nie "wyrzuca" szerokości poza container */
.hero,
.hero-grid {
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* Zapobiegaj poziomemu overflow (np. długie pigułki) */
.comparison,
.outcomes-grid {
    overflow: visible;
}

/* Naprawione wymiary zdjęcia autora (spójne z projektem) */
.author-photo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}

/* Drobne poprawki responsywne — zachowaj spójność na małych ekranach */
@media (max-width: 820px) {
    .section > .container { padding-inline: 1rem; }
    .promo-inner, .author-inner, .cta-container { padding-inline: 0.6rem; }
    .author-photo { width: 96px; height: 96px; }
}

.features-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: 0 24px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.15);
}

.feature-card h3 {
    margin-top: 1.2rem;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.feature-card p {
    margin: 0;
    color: var(--slate-700);
}

.icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
    box-shadow: 0 15px 30px rgba(29, 78, 216, 0.25);
}

.destinations-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.destination-card {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    display: grid;
    grid-template-rows: 180px auto;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.09);
}

.destination-photo {
    background-size: cover;
    background-position: center;
}

.photo-1 {
    background-image: linear-gradient(rgba(30, 64, 175, 0.35), rgba(30, 64, 175, 0.35)),
        url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=900&q=80');
}

.photo-2 {
    background-image: linear-gradient(rgba(234, 179, 8, 0.35), rgba(234, 179, 8, 0.35)),
        url('https://images.unsplash.com/photo-1532619031664-6133e1f07c19?auto=format&fit=crop&w=900&q=80');
}

.photo-3 {
    background-image: linear-gradient(rgba(21, 128, 61, 0.35), rgba(21, 128, 61, 0.35)),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80');
}

.destination-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.destination-content h3 {
    margin: 0;
    font-size: 1.35rem;
}

.destination-content p {
    margin: 0;
    color: var(--slate-700);
}

.tag {
    align-self: flex-start;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.14);
    color: var(--primary-500);
    font-weight: 600;
    font-size: 0.85rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 28px;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 30px 50px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.12);
    display: grid;
    gap: 1.5rem;
}

.testimonial-card blockquote {
    margin: 0;
    font-size: clamp(1.2rem, 2vw + 0.8rem, 1.6rem);
    font-weight: 500;
    color: var(--slate-800);
    position: relative;
}

.testimonial-card blockquote::before {
    content: '“';
    font-size: 3rem;
    color: rgba(59, 130, 246, 0.2);
    position: absolute;
    left: -1.5rem;
    top: -0.8rem;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.name {
    font-weight: 600;
    margin: 0;
}

.role {
    margin: 0.2rem 0 0;
    color: var(--slate-700);
    font-size: 0.9rem;
}

.cta-section {
    padding: clamp(3rem, 5vw, 5rem) 0 5rem;
}

.cta-container {
    background: linear-gradient(120deg, rgba(59, 130, 246, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: var(--radius-xl);
    padding: clamp(2.5rem, 4vw + 1rem, 3.8rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    border: 1px solid rgba(148, 163, 184, 0.15);
}

.cta-container h2 {
    margin: 0 0 0.7rem;
    font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem);
}

.cta-container p {
    margin: 0;
    color: var(--slate-700);
    max-width: 46ch;
}

.site-footer {
    background: rgba(15, 23, 42, 0.98);
    color: rgba(226, 232, 240, 0.85);
    padding: 2rem 0 2.6rem;
}

.site-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.site-footer nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.site-footer a {
    color: rgba(226, 232, 240, 0.75);
    font-size: 0.95rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #fff;
}

.hero-subtext.hero-note {
    font-size: 0.875rem; /* mniejsza czcionka */
    text-decoration: underline;
    text-decoration-thickness: 1.2px;
    margin-top: 0.5rem;
    line-height: 1.3;
}

.outcomes {
    margin-top: 2.5rem;
    padding-bottom: 0.5rem;
}

.outcomes-grid {
    display: flex;
    gap: 1.25rem;
    align-items: stretch;
    /* jedna linia na szerokich ekranach */
    flex-wrap: nowrap;
    overflow: hidden;
}

.outcome-card {
    background: var(--card-bg, #fff);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    flex: 1 1 0;
    min-width: 220px; /* zapobiega zbyt silnemu skurceniu */
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* --- CZYSTE STYLE DLA PORÓWNANIA (wklej zamiast wcześniejszych reguł porównania) --- */
.comparison {
    margin-top: 1.5rem;
    width: 100%;
}

.comparison-header {
    display: grid;
    grid-template-columns: 44px 1fr 1fr 44px;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.6rem;
}

.comparison-header .bubble-left.header,
.comparison-header .bubble-right.header {
    padding: .55rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    text-align: center;
}

/* kontener rzędów */
.comparison-rows {
    display: grid;
    gap: 0.9rem;
}

/* pojedynczy wiersz: X | żółta pigułka | zielona pigułka | ikona */
.compare-row {
    display: grid;
    grid-template-columns: 44px 1fr 1fr 44px;
    gap: 0.9rem;
    align-items: center;
}

/* X-box */
.x-box {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    border: 3px solid #ef4444;
    background: transparent;
    position: relative;
    box-sizing: border-box;
    margin-left: 2px;
}
.x-box::before,
.x-box::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 50%;
    height: 3px;
    background: #ef4444;
    border-radius: 2px;
}
.x-box::before { transform: translateY(-50%) rotate(45deg); }
.x-box::after  { transform: translateY(-50%) rotate(-45deg); }

/* lewa pigułka (żółta) */
.bubble-left {
    background: var(--accent-amber);
    color: rgba(15,23,42,0.95);
    padding: .9rem 1rem;
    border-radius: 28px;
    font-weight: 600;
    min-height: 56px;
    display: flex;
    align-items: center;
    line-height: 1.15;
}

/* prawa pigułka (zielona) */
.bubble-right {
    background: linear-gradient(90deg,#16a34a,#22c55e);
    color: #fff;
    padding: .9rem 1rem;
    border-radius: 28px;
    font-weight: 600;
    min-height: 56px;
    display: flex;
    align-items: center;
    line-height: 1.15;
}

/* ikona uśmiechu (żółty okrąg) */
.icon-smile {
    width: 44px;
    height: 44px;
    background: #FFD34D;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: #2b2b2b;
    box-shadow: 0 6px 12px rgba(0,0,0,0.06);
}

/* dopasowanie ikony FA wewnątrz .icon-smile */
.icon-smile i {
    font-size: 28px;
    line-height: 1;
    color: #2b2b2b;
    display: block;
}
.icon-smile { display: inline-grid; place-items: center; } /* upewnij się, że kontener centruje ikonę */

/* responsywność: stack przy wąskim ekranie */
@media (max-width: 880px) {
    .comparison-header,
    .compare-row {
        grid-template-columns: 1fr;
    }
    .compare-row {
        gap: 0.5rem;
    }
    .x-box, .icon-smile {
        justify-self: start;
    }
    .bubble-left, .bubble-right {
        min-height: auto;
        padding: .7rem .9rem;
    }
}

.problems-section .section-header { margin-bottom: 1.25rem; }

.problems-content {
    max-width: var(--content-max-width); /* istniejąca reguła, zapewniamy spójność */
    margin: 0 auto;
}

.price-note {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--primary-500);
    font-size: 1.05rem;
}

/* Sekcja promocyjna — kurs 47 zł */
.promo-section {
    background: linear-gradient(180deg, rgba(34,197,94,0.04), rgba(14,165,233,0.02));
    padding: 2.25rem 0;
    margin-top: auto;
    border-radius: 12px;
}

.promo-inner {
    max-width: var(--content-max-width); /* teraz promo ma taką samą szerokość jak problems */
    margin: 0 auto;
    padding-inline: 0;
    box-sizing: border-box;
}

.promo-section h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--slate-900);
}

.promo-section .lead { margin-bottom: 0.6rem; color: var(--slate-700); }

.promo-bold {
    font-weight: 700;
    margin: 0.5rem 0 0.9rem 0;
    color: var(--slate-900);
}

.promo-benefits {
    margin: 0 0 1rem 0;
    padding-left: 1.15rem;
    color: var(--slate-800);
    line-height: 1.45;
}

.promo-benefits li { margin: .45rem 0; }

.promo-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
}

.promo-cta .small-note {
    margin: 0;
    color: var(--slate-600);
    font-size: 0.9rem;
}

/* Sekcja autora / historia - Paweł Domański */
.author-section { padding: 2rem 0; background: transparent; }
.author-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.25rem;
    align-items: start;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding-inline: 0;
    box-sizing: border-box;
}
.author-photo {
    width: 260px;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(13,38,76,0.06);
    border: 3px solid rgba(0,0,0,0.04);
}

/* tekst */
.author-copy h2 { margin-top: 0; margin-bottom: .4rem; }
.author-copy .lead { margin-bottom: .6rem; color: var(--slate-700); font-weight:600; }
.author-copy p { margin: .5rem 0; line-height: 1.55; color: var(--slate-800); }

/* responsywność */
@media (max-width: 820px) {
    .author-inner { grid-template-columns: 1fr; }
    .author-photo { width: 96px; height: 96px; margin-bottom: .6rem; }
}

/* DOPASOWANIE HERO: kolumny, szerokości tekstu i wyrównanie mediów */
.hero .container { padding-top: 0; padding-bottom: 0; }
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px; /* tekst | media */
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: center;
    max-width: var(--site-max-width);
    margin: 0 auto;
}

/* ogranicz szerokość tekstu w hero, aby linie były przyjemne do czytania */
.hero-copy { max-width: 58ch; }

/* dostosuj media (zdjęcie + kartę) */
.hero-media { justify-self: end; display:flex; flex-direction:column; align-items:flex-end; gap:.85rem; }
.hero-photo { width: 340px; border-radius:18px; overflow:hidden; box-shadow:0 30px 60px rgba(2,6,23,0.25); }
.hero-photo img { display:block; width:100%; height:100%; object-fit:cover; }

/* hero_card drobne przesunięcie i responsywność */
.hero-card { margin-left: 0; }

/* RESPONSYWNOŚĆ: na mniejszych ekranach stackuj kolumny */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; padding: 1.5rem; }
    .hero-media { justify-self: center; align-items:center; }
    .hero-photo { width: min(72vw, 420px); }
    .hero-copy { max-width: 90ch; text-align: center; }
    .hero-actions { justify-content: center; }
    .social-proof { justify-content: center; }
}

/* Sekcja "journey" — historia 20 lat, zgodna szerokość z problems/promo */
.journey-section { padding: clamp(2rem,4vw,3rem) 0; background: transparent; }
.journey-inner {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding-inline: 0;
    box-sizing: border-box;
    color: var(--slate-800);
}
.journey-inner h2 {
    margin: 0 0 0.6rem 0;
    font-size: 1.5rem;
    color: var(--slate-900);
}
.journey-inner p {
    margin: 0.6rem 0;
    line-height: 1.6;
    font-size: 1rem;
}
/* responsywność */
@media (max-width: 820px) {
    .journey-inner { padding-inline: 0.6rem; }
    .journey-inner h2 { text-align: left; }
}

/* Sekcja: Nigdy więcej / Zamiast tego — układ podobny do załączonego screena */
.nevermore-section { padding: clamp(2rem,4vw,3.25rem) 0; background: transparent; }

.nevermore-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding-inline: 0;
}

/* kolumny i nagłówki */
.col-title { margin: 0 0 0.8rem 0; font-size: 1.15rem; color: var(--slate-900); }

/* nowa siatka rzędów: każda never-row ma 2 kolumny, elementy są stretchowane do tej samej wysokości */
.nevermore-grid-rows {
    display: grid;
    gap: 1rem;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding-inline: 0;
}

.never-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch; /* klucz: sprawia, że obie komórki mają taką samą wysokość */
}

/* zachowaj nagłówek kolumn */
.never-row.header { align-items: center; }
.never-row.header .col-title { font-weight:700; font-size:1.05rem; text-align:left; }

/* pigułki rozciągają się na całą wysokość komórki; treść wyśrodkowana pionowo */
.pill {
    display: flex;
    align-items: center; /* pionowe wyśrodkowanie tekstu w pigułce */
    gap: 1rem;
    padding: 0.95rem 1.1rem;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(15,23,42,0.04);
    line-height: 1.25;
    margin: 0; /* margines między rzędami daje .never-row gap */
    height: 100%; /* rozciągnięcie do wysokości grid cell */
    box-sizing: border-box;
}

/* kolory i ikony pozostają bez zmian */
.pill.neg { background:#fff5f6; border:1px solid rgba(239,68,68,0.12); color:#7f1d1d; }
.pill.pos { background:#f0fdf4; border:1px solid rgba(34,197,94,0.12); color:#064e3b; }
.pill-icon { flex:0 0 44px; width:44px; height:44px; display:inline-grid; place-items:center; font-weight:700; font-size:18px; border-radius:8px; }
.neg-icon { background:#fff; color:#ef4444; border:2px solid #ef4444; border-radius:8px; }
.pos-icon { background:#16a34a; color:#fff; border-radius:50%; box-shadow:0 6px 12px rgba(16,185,129,0.08); }

/* tekst pigułki: pozwól zawijać się tekstowi, ale trzymaj wyśrodkowanie */
.pill-text { font-weight:600; font-size:0.98rem; }

/* responsywność: stack na małych ekranach (kolumny jedna pod drugą) */
@media (max-width: 820px) {
    .never-row { grid-template-columns: 1fr; }
    .pill { padding:0.85rem 0.95rem; }
    .pill-icon { width:36px; height:36px; flex:0 0 36px; font-size:16px; }
    .never-row.header .col-title { text-align:left; }
}

/* żółta strzałka wyśrodkowana pod sekcjami */
.arrow-wrap {
    display: flex;
    justify-content: center;
    margin: 1.25rem 0 2rem;
}

.scroll-arrow {
    width: 64px;
    height: 64px;
    background: #FFD34D;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    box-shadow: 0 10px 22px rgba(43,43,43,0.12);
    transition: transform .18s ease, box-shadow .18s ease;
    cursor: default;
}

.scroll-arrow svg { display: block; width: 28px; height: 28px; }

.scroll-arrow:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(43,43,43,0.16);
}

/* dostępność: focus dla klawiatury (jeśli zmienisz na <a> później) */
.scroll-arrow:focus {
    outline: 3px solid rgba(29,78,216,0.14);
    outline-offset: 4px;
}

/* responsywność — mniejsza strzałka na wąskich ekranach */
@media (max-width: 520px) {
    .scroll-arrow { width: 52px; height: 52px; }
    .scroll-arrow svg { width: 22px; height: 22px; }
    .arrow-wrap { margin: 0.8rem 0 1.2rem; }
}

/* Sekcja produktu / kurs */
.product-section { padding: clamp(2.25rem,4vw,3.5rem) 0;
    background: linear-gradient(180deg, rgba(59,130,246,0.08), rgba(99,102,241,0.03));
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(2,6,23,0.04);
    margin: 1.25rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: clamp(1.2rem,3vw,2rem);
    align-items: center;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding-inline: 0;
    box-sizing: border-box;
}

.product-copy { max-width: 56ch; }

.product-copy .eyebrow { text-transform: uppercase; font-size: .85rem; letter-spacing:.18em; color:var(--slate-700); margin-bottom:.6rem; }
.product-copy h2 { margin:0 0 .6rem 0; font-size:1.6rem; color:var(--slate-900); }
.product-copy .lead { margin-bottom:.8rem; color:var(--slate-700); }

.product-cta { margin-top:1rem; display:flex; gap:0.8rem; flex-wrap:wrap; }

.product-media { display:flex; flex-direction:column; gap:1rem; align-items:end; justify-self:end; }

.product-image { width: 340px; border-radius: 14px; overflow: hidden; box-shadow: 0 30px 60px rgba(2,6,23,0.18); }
.product-image img { width:100%; height:100%; object-fit:cover; display:block; }

.product-card {
    background: linear-gradient(90deg, rgba(13,110,253,0.06), rgba(16,185,129,0.04));
    padding: .85rem 1rem;
    border-radius: 12px;
    text-align: center;
    min-width: 160px;
    box-shadow: 0 10px 30px rgba(13,38,76,0.04);
}

.product-card .price { font-size:1.6rem; font-weight:700; color:var(--slate-900); }
.product-card .product-note { margin: .4rem 0 0; font-size:0.95rem; color:var(--slate-700); }

/* responsywność */
@media (max-width: 900px) {
    .product-grid { grid-template-columns: 1fr; }
    .product-media { align-items: center; }
    .product-image { width: min(72vw, 420px); }
    .product-copy { text-align: center; margin-bottom: .75rem; }
    .product-cta { justify-content: center; }
}

/* Sekcja: dla kogo jest kurs — szerokość spójna z resztą */
.audience-section { padding: clamp(2rem,4vw,3rem) 0; background: transparent; }
.audience-inner {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding-inline: 0;
    box-sizing: border-box;
}

/* Lista punktów: dwie kolumny kart z numerami */
.audience-list {
    counter-reset: audience;
    display: grid;
    grid-template-columns: 1fr; /* jedno pod drugim */
    gap: 1rem;
    margin: 0 0 1.5rem 0;
    padding: 0;
    list-style: none;
}

.audience-list li {
    counter-increment: audience;
    position: relative;
    padding: 1.05rem 1rem 1.05rem 64px; /* miejsce na numer */
    background: #fff;
    border: 1px solid rgba(15,23,42,0.04);
    border-radius: 12px;
    font-weight: 600;
    color: var(--slate-800);
    box-shadow: 0 8px 20px rgba(2,6,23,0.03);
    min-height: 64px;
    display: flex;
    align-items: center;
    line-height: 1.25;
    word-break: break-word;
}

/* numerowana okrągła odznaka po lewej */
.audience-list li::before {
    content: counter(audience);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(180deg,#3b82f6,#6366f1); /* granatowo-fiolet */
    color: #fff;
    display: inline-grid;
    place-items: center;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(59,130,246,0.12);
    font-size: 0.95rem;
}

/* CTA środkowy */
.audience-cta {
    display: flex;
    justify-content: center;
    margin: 1.6rem 0;
}

/* Benefits: pełna szerokość pod listą, każdy w oddzielnym zielonym pasku */
.audience-benefits {
    display: grid;
    gap: 0.9rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f0fdf4;
    border: 1px solid rgba(34,197,94,0.08);
    padding: 1rem 1rem;
    border-radius: 12px;
    color: var(--slate-800);
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(2,6,23,0.02);
    line-height: 1.3;
}

/* zielona kółkowa ikonka z haczykiem po lewej w benefitach */
.benefit::before {
    content: "✔";
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    display: inline-grid;
    place-items: center;
    font-weight: 800;
    box-shadow: 0 6px 12px rgba(16,185,129,0.08);
    font-size: 0.95rem;
}

/* drobne dopasowania nagłówka i porządku */
.section-header { text-align: center; margin-bottom: 1.25rem; }
.audience-hero { text-align: center; margin-bottom: 0.6rem; font-weight:700; }

/* RESPONSYWNOŚĆ */
@media (max-width: 980px) {
    .audience-list { grid-template-columns: 1fr; }
    .audience-list li { padding-left: 56px; min-height: auto; align-items:flex-start; padding-top: 0.9rem; padding-bottom:0.9rem; }
    .audience-list li::before { left: 12px; width: 36px; height: 36px; font-size:0.88rem; }
    .benefit::before, .audience-list li::before { box-shadow: none; }
    .audience-cta { margin: 1rem 0; }
}

/* Sekcja modułów kursu */
.modules-section { padding: clamp(2rem,4vw,3.5rem) 0; background: transparent; }
.modules-grid {
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    align-items: start;
    padding-inline: 0;
    box-sizing: border-box;
}

.module-card {
    background: #fff;
    border: 1px solid rgba(15,23,42,0.04);
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 10px 30px rgba(2,6,23,0.04);
}

.module-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.05rem;
    color: var(--slate-900);
}

.module-image {
    display: flex;
    justify-content: center;
    margin: 0.45rem 0 0.6rem;
}
.module-image img {
    width: 160px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(2,6,23,0.08);
    display: block;
    object-fit: cover;
}

.module-lead { margin: 0.25rem 0 0.35rem; font-weight:700; color:var(--slate-800); }

.module-card ul {
    margin: 0.45rem 0 0 1rem;
    padding: 0;
    color: var(--slate-800);
    line-height: 1.45;
}

/* pełna szerokość i centrowanie na małych ekranach */
@media (max-width: 900px) {
    .modules-grid { grid-template-columns: 1fr; }
    .module-image img { width: min(48vw, 220px); }
}

/* Sekcja BONUSY — wyróżnione tło, spójna szerokość z contentem */
.bonus-section {
    background: linear-gradient(180deg, rgba(250, 243, 255, 0.95), rgba(245, 249, 255, 0.98));
    padding: clamp(2rem,4vw,3rem) 0;
    border-radius: 12px;
    margin: 1.25rem 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: var(--content-max-width);
    margin: 0 auto 1.25rem;
    padding-inline: 0;
    box-sizing: border-box;
}

.bonus-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    align-items: start;
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 14px 30px rgba(2,6,23,0.04);
    border: 1px solid rgba(15,23,42,0.04);
}

.bonus-media img {
    width: 320px;
    height: auto;
    object-fit: contain; /* pokaże całe zdjęcie zamiast przycinania */
    background: #fff;    /* opcjonalne tło aby nie było "pustych" krawędzi */
    padding: 6px;        /* lekka ramka wewnętrzna dla lepszego wyświetlenia */
    border-radius: 8px;
    display: block;
}

.bonus-body h3 {
    margin: 0 0 0.4rem 0;
    font-size: 1rem;
    color: var(--slate-900);
}

.bonus-body p { margin: 0 0 0.6rem 0; color: var(--slate-800); line-height: 1.45; }
.bonus-value { color: var(--slate-900); font-weight:700; }

/* podsumowanie pod bonusami */
.bonus-summary {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: space-between;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding-inline: 0;
    box-sizing: border-box;
    margin-top: 1rem;
}

.summary-left { flex: 1 1 60%; color: var(--slate-800); }
.summary-left .summary-total { font-weight:700; margin:0 0 .25rem 0; }
.summary-left .summary-free { color: #b91c1c; font-weight:700; margin:0 0 .6rem 0; }

.summary-right { flex: 0 0 260px; text-align: right; display:flex; flex-direction:column; align-items:flex-end; gap:0.6rem; }
.price-line { margin:0; color:var(--slate-800); }
.price-line del { color: rgba(15,23,42,0.35); margin-right:.45rem; }
.price-now { color: var(--primary-500); font-size:1.2rem; }

/* drobne notki */
.small-note { margin:0; color:var(--slate-700); font-size:0.9rem; }

/* responsywność */
@media (max-width: 900px) {
    .bonus-grid { grid-template-columns: 1fr; }
    .bonus-card { grid-template-columns: 96px 1fr; }
    .bonus-media img { width: 96px; height: 96px; }
    .bonus-summary { flex-direction: column; align-items: stretch; gap: 0.8rem; }
    .summary-right { text-align: left; align-items: flex-start; }
}

/* CTA — oferta promocyjna (duża widoczna karta) */
.cta-offer-section { padding: clamp(2rem,4vw,3.25rem) 0; text-align: center; }
.cta-head { margin-bottom: 1rem; }
.cta-head .cta-refund-ico { font-size: 28px; margin-bottom: .25rem; }
.cta-head h3 { margin: 0; font-size: 1.5rem; font-weight: 800; color: var(--slate-900); }
.cta-head .cta-sub { margin: .35rem 0 1rem; color: var(--slate-700); }

/* karta oferty */
.offer-card {
    max-width: min(860px, var(--content-max-width));
    margin: 0.8rem auto 0;
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem 1.5rem 1.75rem;
    box-shadow: 0 28px 60px rgba(16,185,129,0.06), 0 10px 30px rgba(2,6,23,0.06);
    border: 3px solid rgba(16,185,129,0.10);
    display: grid;
    gap: 1rem;
    align-items: center;
}

/* wiersz ceny */
.price-row { display: flex; flex-direction: column; gap: .35rem; align-items: center; }
.price-old { color: rgba(15,23,42,0.45); font-weight:600; }
.price-now { font-size: 1.6rem; font-weight:800; color: var(--slate-900); }
.price-amount { font-size: 2.1rem; color: #059669; margin-left: .25rem; }

/* przycisk CTA — duży, zielony */
.btn.join-cta {
    display: inline-block;
    background: linear-gradient(90deg,#10b981,#059669);
    color: #fff;
    padding: 1rem 2.1rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 18px 36px rgba(5,118,74,0.18);
    transition: transform .14s ease, box-shadow .14s ease;
}
.btn.join-cta:hover,
.btn.join-cta:focus-visible { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(5,118,74,0.22); }

/* stopka karty: info o płatności */
.offer-foot {
    display:flex;
    gap: 1rem;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    color: var(--slate-700);
    font-size: .95rem;
    margin-top: .25rem;
}
.offer-foot .secure { display:flex; align-items:center; gap:.5rem; }
.payment-logos .logo { margin-left:.6rem; padding:.25rem .45rem; background: rgba(15,23,42,0.03); border-radius:6px; font-weight:600; color:var(--slate-800); }

/* Decision / opcje: dwie karty wyboru */
.decision-section { padding: clamp(2rem,4vw,3rem) 0; background: transparent; }
.decision-grid {
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
    padding-inline: 0;
    box-sizing: border-box;
}

.option-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.1rem 1.15rem;
    box-shadow: 0 14px 36px rgba(2,6,23,0.04);
    border: 1px solid rgba(15,23,42,0.04);
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.option-badge {
    display: inline-block;
    padding: .35rem .7rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: .9rem;
    background: #eef2ff;
    color: #1e3a8a;
}

.badge-accent {
    background: linear-gradient(90deg,#3b82f6,#7c3aed);
    color: white;
    box-shadow: 0 8px 20px rgba(59,130,246,0.12);
}

.option-title { margin: 0; font-size: 1.05rem; color: var(--slate-900); font-weight:700; }
.option-body { color: var(--slate-800); line-height:1.6; }

/* CTA w opcji 2 */
.option-cta { margin-top: .6rem; display:flex; justify-content:flex-start; }
.option-cta .btn { padding: .7rem 1.1rem; font-weight:800; }

/* wyróżnienie lewej karty jako spokojniejsze (opcjonalne) */
.opt-left { opacity: .98; }

/* responsywność: stack na małych ekranach */
@media (max-width: 900px) {
    .decision-grid { grid-template-columns: 1fr; gap: .9rem; }
    .option-cta { justify-content:center; }
}

/* TALK BUTTON — statyczny, umieszczony w dokumencie (pod opcjami) */
.talk-button-wrap {
    display: flex;
    justify-content: center;
    margin: 1.25rem 0 2rem; /* odstęp nad i pod */
    pointer-events: auto;
    position: relative; /* normal flow */
    z-index: 1;
}

.talk-button {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(90deg,#6d28d9 0%, #7c3aed 50%, #3b82f6 100%);
    color: #fff;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 12px 36px rgba(59,24,120,0.18);
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
    border: 1px solid rgba(255,255,255,0.06);
}

.talk-button .emoji { font-size: 1.05rem; line-height: 1; }
.talk-button:hover,
.talk-button:focus-visible { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(59,24,120,0.28); outline: none; }

@media (max-width: 520px) {
    .talk-button { padding: 0.7rem 1rem; font-size: 0.94rem; }
    .talk-button-wrap { margin: 0.8rem 0 1.2rem; }
}

/* FAQ */
.faq-section { padding: clamp(2rem,4vw,3rem) 0; background: transparent; }
.faq-grid {
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: grid;
    gap: 0.85rem;
    padding-inline: 0;
    box-sizing: border-box;
}
.faq-item {
    background: #fff;
    border: 1px solid rgba(15,23,42,0.04);
    border-radius: 12px;
    padding: 0.25rem;
    box-shadow: 0 10px 26px rgba(2,6,23,0.03);
    overflow: hidden;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 0.95rem 1rem;
    font-weight: 700;
    color: var(--slate-900);
    display: flex;
    align-items: center;
    gap: .6rem;
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after {
    content: "+";
    margin-left: auto;
    background: rgba(15,23,42,0.06);
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    font-weight:800;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 .95rem 0.95rem 1rem; color: var(--slate-800); line-height:1.6; }
.faq-answer ul { margin: .5rem 0 0 1.1rem; }

/* responsywność */
@media (max-width: 820px) {
    .faq-grid { gap: .7rem; }
    .faq-item summary::after { width: 32px; height: 32px; font-size: .95rem; }
}
