/* ======= DESIGN TOKENS ======= */
:root {
    --brand: #2563EB;
    --brand-dark: #1D4ED8;
    --brand-light: #EFF6FF;
    --accent: #0EA5E9;
    --text-heading: #000000;
    --text-body: #000000;
    --text-muted: #475569;
    --border: #E2E8F0;
    --bg-page: #F8FAFC;
    --bg-white: #FFFFFF;
    --card-radius: 16px;
    --shadow-sm: 0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
    --shadow-md: 0 4px 16px rgba(15,23,42,.08), 0 2px 6px rgba(15,23,42,.04);
    --shadow-lg: 0 12px 40px rgba(15,23,42,.12);
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-serif: Georgia, 'Times New Roman', serif;
    --nav-h: 68px;
}

/* ======= PROMO BANNER (STICKY) ======= */
.promo-banner {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-bottom: 1px solid #FCD34D;
    color: #78350F;
    font-size: .88rem;
    font-weight: 600;
    padding: 10px 120px 10px 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
}
.promo-banner a {
    color: #78350F;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 800;
    margin-left: 4px;
}
.promo-banner a:hover { color: #92400E; }
.promo-banner .promo-code {
    background: #fff;
    border: 1px dashed #B45309;
    color: #92400E;
    font-weight: 800;
    letter-spacing: .06em;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: .85rem;
}
.promo-banner .promo-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(146, 64, 14, 0.09);
    border: 1px solid rgba(146, 64, 14, 0.3);
    color: #78350F;
    font-size: .8rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    padding: 5px 14px;
    border-radius: 6px;
    transition: background .15s, border-color .15s, color .15s;
    line-height: 1.2;
    white-space: nowrap;
}
.promo-banner .promo-close:hover {
    background: #92400E;
    color: #FFFFFF;
    border-color: #92400E;
}
@media (max-width: 768px) {
    .promo-banner {
        padding: 10px 16px;
        flex-direction: column;
        gap: 8px;
    }
    .promo-banner .promo-close {
        position: static;
        transform: none;
        margin-top: 2px;
    }
}

/* ======= RESET ======= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; max-width: 100%; }
body {
    font-family: var(--font);
    color: var(--text-body);
    background: var(--bg-page);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    max-width: 100%;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ======= LAYOUT ======= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ======= BUTTONS ======= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 10px;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(37,99,235,.35);
    white-space: nowrap;
    font-family: var(--font);
}
.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--brand);
    color: var(--brand);
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 28px;
    border-radius: 10px;
    transition: background .2s, color .2s, transform .15s;
    white-space: nowrap;
    font-family: var(--font);
}
.btn-outline:hover {
    background: var(--brand-light);
    transform: translateY(-2px);
}
.btn-calc-cta {
    font-size: 1.05rem;
    padding: 18px 36px;
}
.btn-more-cta {
    font-size: 1.05rem;
    padding: 16px 32px;
}

/* ======= NAVBAR ======= */
.navbar {
    position: relative;
    z-index: 990;
    background: rgba(248,250,252,.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    gap: 24px;
}
.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -.02em;
    flex-shrink: 0;
}
.logo span { color: var(--brand); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
}
.nav-links a {
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-heading);
    padding: 6px 10px;
    border-radius: 8px;
    transition: color .2s, background .2s;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--brand); background: var(--brand-light); }

/* Przycisk w nagłówku - czarne tło i biały tekst dla maksymalnego kontrastu */
.nav-links .btn-nav-black { 
    font-size: .85rem; 
    padding: 10px 18px; 
    background: #000000; 
    color: #ffffff; 
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
    transition: transform .15s, background .2s;
}
.nav-links .btn-nav-black:hover {
    background: #222222;
    color: #ffffff;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-heading);
    padding: 4px 8px;
}

/* ======= HERO ======= */
.hero {
    padding: 72px 0 60px;
    background: linear-gradient(160deg, #EFF6FF 0%, #F8FAFC 55%, #F0F9FF 100%);
    border-bottom: 1px solid var(--border);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    text-align: center;
}
.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-light);
    color: #000000;
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid #BFDBFE;
}
.hero-badge .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--brand);
    animation: blink 2s infinite;
    flex-shrink: 0;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}
.hero h1 {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -.03em;
    line-height: 1.15;
    max-width: 780px;
    margin: 0 auto 20px;
}
.hero h1 em {
    font-style: italic;
    color: var(--brand);
    font-family: var(--font-serif);
}
.hero-sub {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.guarantee-note {
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Trust bar */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding: 18px 24px;
    background: rgba(255,255,255,.9);
    border: 1px solid var(--border);
    border-radius: 16px;
    max-width: 720px;
    margin: 0 auto 48px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-body);
}
.trust-item svg { color: var(--brand); flex-shrink: 0; }
.trust-item-jang {
    background: #FEF3C7;
    border: 1px solid #FCD34D;
    border-radius: 14px;
    padding: 8px 16px;
    color: #92400E;
    line-height: 1.4;
    text-align: left;
}
.trust-item-jang-text { display: inline-block; }
.trust-item-jang strong { color: #78350F; font-weight: 800; letter-spacing: .02em; }

/* Video */
.video-wrapper {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    aspect-ratio: 16/9;
    background: #000;
}
.video-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }

/* ======= SECTIONS COMMON ======= */
.section-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ======= PROBLEM ======= */
.problem-section {
    padding: 80px 0;
    background: var(--bg-white);
}
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 48px;
}
.pain-card {
    background: #FFF7ED;
    border: 1px solid #FED7AA;
    border-radius: var(--card-radius);
    padding: 28px;
}
.pain-card .pain-icon {
    margin-bottom: 16px;
    line-height: 1;
}
.pain-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #92400E;
    margin-bottom: 8px;
}
.pain-card p {
    font-size: .9rem;
    color: #78350F;
    line-height: 1.65;
}

/* ======= FEATURES ======= */
.features-section {
    padding: 80px 0;
    background: var(--bg-page);
}
.features-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s, transform .25s;
}
.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.feature-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}
.feature-card p {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.feature-card p strong { color: var(--text-heading); }
.features-cta {
    text-align: center;
    margin-top: 48px;
}
.btn-call-large {
    background: var(--brand);
    box-shadow: 0 8px 24px rgba(37,99,235,.35);
    font-size: 1.1rem;
    padding: 18px 36px;
}
.btn-call-large:hover {
    background: var(--brand-dark);
    box-shadow: 0 10px 30px rgba(37,99,235,.5);
}
.features-cta-note {
    font-size: .85rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ======= AI W AKCJI (DEMO) ======= */
.demo-section {
    padding: 80px 0;
    background: var(--bg-page);
}
.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.demo-text .section-label { color: var(--brand); }
.demo-text .section-title { margin-bottom: 16px; }
.demo-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}
.demo-list {
    list-style: none;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.demo-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-heading);
    font-weight: 600;
}
.demo-list svg { color: var(--brand); flex-shrink: 0; }
.demo-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.demo-video {
    display: flex;
    justify-content: center;
}
.phone-frame {
    position: relative;
    width: 320px;
    padding: 14px 12px 12px;
    background: linear-gradient(135deg, #1F2937 0%, #0B1220 100%);
    border-radius: 44px;
    box-shadow: 0 30px 80px rgba(15,23,42,.35), inset 0 0 0 2px rgba(255,255,255,.06);
}
.phone-frame::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 26px;
    background: #000;
    border-radius: 0 0 18px 18px;
    z-index: 2;
}
.phone-frame iframe {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    border: none;
    border-radius: 32px;
    background: #000;
}
@media (max-width: 860px) {
    .demo-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
    .phone-frame { width: 280px; margin: 0 auto; }
}

/* ======= DLA KOGO NIE JEST ======= */
.not-for-who-section {
    padding: 80px 0;
    background: var(--bg-page);
}
.not-for-who-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 36px;
}
.underline-flamaster-red {
    position: relative;
    display: inline;
    color: inherit;
}
.underline-flamaster-red::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M2 13 C 25 5, 75 17, 98 9' stroke='%23EF4444' stroke-width='7' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center;
    background-size: 100% 100%;
    pointer-events: none;
}
.not-for-who-list {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.not-for-who-list li {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.not-for-who-list li strong {
    color: var(--text-heading);
}
.not-for-who-list li a {
    color: var(--brand);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s;
}
.not-for-who-list li a:hover {
    color: var(--brand-dark);
}

/* ======= PAKIETY ======= */
.packages-section {
    padding: 80px 0;
    background: var(--bg-white);
}
.packages-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
    align-items: stretch;
}
.package-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    box-shadow: 0 1px 3px rgba(15,23,42,.04);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.package-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15,23,42,.08);
}
.package-card-featured {
    border: 2px solid var(--brand);
    box-shadow: 0 8px 30px rgba(37,99,235,.12);
}
.package-eyebrow {
    font-size: .88rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 10px;
    letter-spacing: .01em;
}
.package-card-featured .package-eyebrow {
    color: var(--brand);
}
.package-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 14px;
    line-height: 1.25;
    letter-spacing: -.02em;
}
.package-price {
    font-size: .95rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}
.package-price strong {
    font-size: 1.4rem;
    color: var(--text-heading);
    font-weight: 800;
    letter-spacing: -.02em;
}
.package-desc {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}
.package-features {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 auto;
}
.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .9rem;
    color: var(--text-heading);
    line-height: 1.5;
}
.package-features li svg {
    color: #16A34A;
    flex-shrink: 0;
    margin-top: 1px;
}
.package-card .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: auto;
    padding: 14px 24px;
}
.discount-badge {
    background: #FEF3C7;
    border: 1px solid #FCD34D;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 20px;
    text-align: center;
    font-size: .85rem;
    color: #92400E;
    line-height: 1.4;
}
.discount-badge strong {
    color: #78350F;
    font-weight: 800;
    font-size: .95rem;
    letter-spacing: .04em;
    display: block;
    margin-bottom: 2px;
}
@media (max-width: 760px) {
    .packages-grid { grid-template-columns: minmax(0, 1fr); }
}

/* ======= EXAMPLES ======= */
.examples-section {
    padding: 80px 0;
    background: var(--bg-white);
}
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 52px;
}
.example-card {
    background: var(--bg-page);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 32px;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}
.example-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: #BFDBFE;
}
.example-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 10px;
}
.example-card p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ======= HOW IT WORKS ======= */
.how-section {
    padding: 80px 0;
    background: var(--bg-white);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 52px;
}
.step-card {
    text-align: center;
    padding: 32px 20px;
}
.step-number {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}
.step-card p {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ======= INDUSTRIES ======= */
.industries-section {
    padding: 60px 0;
    background: var(--brand-light);
    border-top: 1px solid #BFDBFE;
    border-bottom: 1px solid #BFDBFE;
    text-align: center;
}
.industries-section p.intro {
    font-size: .95rem;
    color: var(--text-heading);
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-size: .8rem;
}
.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 850px;
    margin: 0 auto;
}
.industry-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    border: 1px solid #BFDBFE;
    border-radius: 100px;
    padding: 8px 18px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-heading);
}
.industry-tag svg { color: var(--brand); }

/* ======= ABOUT ======= */
.about-section {
    padding: 80px 0;
    background: var(--bg-page);
}
.about-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 48px;
    padding: 48px;
    align-items: center;
    overflow: hidden;
}
.about-card > * { min-width: 0; }
.about-photo {
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}
.about-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
    max-width: 100%;
    justify-content: center;
}
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--brand);
    padding: 6px 12px;
    border: 1px solid #BFDBFE;
    border-radius: 8px;
    background: var(--brand-light);
    transition: background .2s, color .2s;
    word-break: break-word;
}
.social-link:hover { background: var(--brand); color: #fff; }
.about-content {
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.about-content blockquote {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-heading);
    border-left: 4px solid var(--brand);
    padding-left: 18px;
    margin: 18px 0;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.about-content p {
    font-size: .93rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 22px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.about-email-info {
    margin-top: 14px;
    font-size: .9rem;
    color: var(--text-muted);
    font-weight: 600;
    word-break: break-all;
    display: block;
}

/* ======= FAQ ======= */
.faq-section {
    padding: 80px 0;
    background: var(--bg-white);
}
.faq-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
}
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 22px;
    font-family: var(--font);
    font-size: .97rem;
    font-weight: 700;
    color: var(--text-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-question:hover { color: var(--brand); }
.faq-question svg { flex-shrink: 0; transition: transform .25s; color: var(--brand); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.faq-answer-inner { padding: 0 22px 18px; }
.faq-answer a { color: var(--brand); text-decoration: underline; }
.faq-item.open .faq-answer { max-height: 200px; }

/* ======= CTA ======= */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand) 0%, #0EA5E9 100%);
    text-align: center;
}
.cta-section h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 14px;
    line-height: 1.2;
}
.cta-section p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.cta-section .btn-primary {
    background: #fff;
    color: var(--text-heading);
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    font-size: 1.05rem;
    padding: 16px 36px;
}
.cta-section .btn-primary:hover { background: #F1F5F9; }
.cta-section .btn-outline {
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.12);
}
.cta-section .btn-outline:hover {
    background: #FFFFFF;
    color: var(--brand-dark);
    border-color: #FFFFFF;
}
.cta-guarantee {
    margin-top: 18px;
    font-size: .82rem;
    color: rgba(255,255,255,.7);
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

/* ======= FOOTER ======= */
footer {
    background: var(--text-heading);
    color: rgba(255,255,255,.55);
    text-align: center;
    padding: 32px 24px;
    font-size: .875rem;
}
footer a { color: rgba(255,255,255,.8); font-weight: 600; transition: color .2s; }
footer a:hover { color: #fff; }
.footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ======= INTUITIVE PANEL ======= */
.panel-section {
    padding: 80px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}
.panel-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}
.panel-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 56px;
}
.panel-image-container::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, rgba(14,165,233,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}
.panel-image-wrapper {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    padding: 8px;
    background: linear-gradient(135deg, rgba(37,99,235,0.08) 0%, rgba(14,165,233,0.04) 100%);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226,232,240,0.6);
    width: 100%;
}
.panel-screenshot {
    border-radius: 18px;
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(226,232,240,0.8);
    box-shadow: 0 15px 40px rgba(15,23,42,0.08);
    transition: transform 0.3s ease;
}
.panel-screenshot:hover {
    transform: scale(1.01);
}
.panel-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto 48px;
}
.panel-feature-col {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.panel-feature-col:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.panel-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(37,99,235,.08);
}
.panel-feature-col strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}
.panel-feature-col p {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
.panel-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
    /* About section stacks earlier to avoid overflow on tablets */
    .about-card {
        grid-template-columns: minmax(0, 1fr) !important;
        padding: 32px 24px;
        gap: 28px;
    }
    .about-photo { max-width: 220px; margin: 0 auto; }
    .about-content { max-width: 100%; }

    /* Panel features responsive styling */
    .panel-features-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}
@media (max-width: 840px) {
    .mobile-menu-btn { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--bg-white);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 24px 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        z-index: 998;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }
    .nav-links .btn-nav-black {
        margin-top: 10px;
        border-radius: 10px;
        text-align: center;
        justify-content: center;
        border: none;
    }
    .trust-bar { gap: 14px; }

    /* Fix: kod rabatowy nad filmem */
    .trust-item-jang {
        flex-direction: row;
        border-radius: 14px;
        text-align: center;
        gap: 10px;
        max-width: 100%;
    }
    .trust-item-jang-text { font-size: .82rem; }

    /* Fix: telefon "Zobacz w akcji" nie wychodzi poza ekran */
    .phone-frame {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    /* UNIWERSALNY FIX: wszystkie przyciski - tekst zawija się, nie wychodzi poza */
    .btn-primary,
    .btn-outline,
    .btn-nav-black {
        display: inline-flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        white-space: normal !important;
        text-align: center !important;
        word-wrap: break-word !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
        hyphens: auto !important;
        line-height: 1.35 !important;
        max-width: 100% !important;
    }

    /* Demo buttons stack */
    .demo-buttons {
        flex-direction: column;
        width: 100%;
    }
    .demo-buttons .btn-primary,
    .demo-buttons .btn-outline {
        width: 100%;
    }

    /* Steps grid - jedna kolumna */
    .steps-grid { grid-template-columns: minmax(0, 1fr); }

    /* About section content - ciasniej */
    .about-card {
        padding: 26px 18px;
        gap: 22px;
    }
    .about-content { min-width: 0; }
    .about-content .btn-primary { padding: 14px 18px; }

    /* Hero badge mniejszy */
    .hero-badge { font-size: .7rem; padding: 5px 12px; }

    /* Package card text musi się zawijać */
    .package-card { min-width: 0; }
    .package-card h3 { font-size: 1.2rem; }

    /* About photo - nie za duze */
    .about-photo { max-width: 180px; }

    /* Panel buttons stack */
    .panel-buttons {
        flex-direction: column !important;
        width: 100% !important;
    }
    .panel-buttons .btn-primary,
    .panel-buttons .btn-outline {
        width: 100% !important;
    }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-buttons { flex-direction: column; align-items: stretch; width: 100%; }
    .btn-primary, .btn-outline, .btn-calc-cta, .btn-more-cta, .btn-cta-light, .btn-cta-ghost {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        white-space: normal !important;
        text-align: center !important;
        word-wrap: break-word !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
        line-height: 1.3 !important;
        padding: 13px 18px !important;
        font-size: .92rem !important;
    }
    .cta-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }
    /* O mnie - mniejszy padding karty i odległości */
    .about-card {
        padding: 24px 14px !important;
        gap: 20px !important;
    }
    /* telefon jeszcze mniejszy */
    .phone-frame { max-width: 240px; }
    /* Pakiet cards - mniejszy padding */
    .package-card { padding: 24px 18px; }
    /* CTA przycisk - mniejszy tekst */
    .cta-section .btn-primary { font-size: .92rem !important; padding: 13px 22px !important; }
    /* Trust items - mniejszy tekst */
    .trust-item { font-size: .8rem; }
    .trust-item-jang-text { font-size: .78rem; }
    /* O mnie - mniejszy font */
    .about-content blockquote { font-size: .95rem; padding-left: 14px; }
    .about-content p { font-size: .88rem; }
    /* Features CTA - zmniejsz padding */
    .btn-call-large { font-size: 1rem !important; padding: 16px 24px !important; }
    /* Problem section button */
    .problem-section .btn-primary { padding: 14px 22px !important; font-size: .95rem !important; }
}

/* ======= HERO DESKTOP LAYOUT ======= */
@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.12fr 0.88fr;
        gap: 60px;
        text-align: left;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .hero h1 {
        margin: 0 0 20px 0;
        text-align: left;
    }
    .hero-sub {
        margin: 0 0 32px 0;
        text-align: left;
    }
    .hero-buttons {
        justify-content: flex-start;
    }
    .guarantee-note {
        justify-content: flex-start;
        margin-bottom: 32px;
    }
    .trust-bar {
        margin: 0 0 16px 0;
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
    }
}

/* ======= TRUSTPILOT SECTION ======= */
.trustpilot-section {
    padding: 80px 0;
    background: var(--bg-page);
    border-bottom: 1px solid var(--border);
}
.trustpilot-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 48px;
}
@media (max-width: 768px) {
    .trustpilot-card {
        padding: 32px 20px;
    }
}
.trustpilot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.trustpilot-info {
    text-align: center;
}
.trustpilot-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}
.trustpilot-stars-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}
.tp-stars {
    display: flex;
    gap: 4px;
}
.tp-star-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00b67a;
    width: 24px;
    height: 24px;
    border-radius: 2px;
}
.tp-star-box svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}
.tp-rating-text {
    font-size: 1rem;
    color: var(--text-body);
}
.tp-rating-text strong {
    color: #00b67a;
}
.trustpilot-tagline {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.trustpilot-click-more {
    margin-top: 16px;
}
.tp-more-link {
    font-size: 0.95rem;
    color: var(--text-body);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--text-muted);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}
.tp-more-link:hover {
    color: #00b67a;
    border-color: #00b67a;
}
.trustpilot-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.opinion-image-wrapper {
    display: block;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border-radius: 12px;
}
.opinion-image-wrapper:hover {
    transform: translateY(-4px);
}
.opinion-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 8px 24px -8px rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) {
    .trustpilot-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 60px;
        text-align: left;
    }
    .trustpilot-info {
        text-align: left;
    }
    .trustpilot-logo-wrap {
        justify-content: flex-start;
    }
    .trustpilot-stars-rating {
        justify-content: flex-start;
    }
    .trustpilot-tagline {
        margin-left: 0;
        margin-right: 0;
    }
}

/* ======= STACKED EXPLAINER VIDEO SECTION (AI W AKCJI) ======= */
.demo-container-stacked {
    max-width: 850px !important;
    text-align: center;
}
.demo-container-stacked .demo-desc {
    max-width: 650px;
    margin: 0 auto 32px;
}
.demo-container-stacked .video-wrapper {
    margin-bottom: 40px;
}
.demo-features-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.demo-list-inline {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}
.demo-list-inline li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    color: var(--text-heading);
    font-weight: 600;
}
.demo-list-inline svg {
    color: var(--brand);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .demo-list-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        display: inline-flex;
        text-align: left;
    }
}