:root {
    --mp-dark: #212529;
    --mp-muted: #6c757d;
    --mp-light: #f8f9fa;
    --mp-soft: #e9ecef;
    --mp-danger: #dc3545;
    --mp-text: #1f2933;
    --mp-card-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    --mp-radius: 1rem;
}

html {
    scroll-behavior: smooth;
}

body.marketing-body {
    font-family: "Poppins", sans-serif;
    color: var(--mp-text);
    background: #fff;
}

.marketing-nav {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.hidden-nav {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
}

.visible-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.brand-logo {
    height: 40px;
    width: auto;
}

.marketing-nav .nav-link {
    color: #555;
}

.marketing-nav .nav-link:hover,
.marketing-nav .nav-link:focus {
    color: #000;
}

.hero-banner {
    min-height: 34rem;
    padding: 8rem 1.5rem 5rem;
    margin-bottom: 1rem;
    background: var(--mp-dark);
    color: #fff;
}

.hero-banner .btn {
    min-width: 14rem;
}

.hero-inner {
    max-width: 56rem;
    margin: 0 auto;
}

.section {
    padding: 3.75rem 0;
}

.parallax-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 31.25rem;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.parallax-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)),
        url("/img/misja_prawko_kia.webp") center / cover no-repeat fixed;
    z-index: -1;
}

.feature-band,
.faq-strip,
.contact-panel,
.light-panel,
.stats-panel {
    border-radius: var(--mp-radius);
}

.feature-band {
    overflow: hidden;
    background: var(--mp-soft);
}

.feature-band img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 20rem;
    object-fit: cover;
}

.light-panel {
    background: var(--mp-light);
}

.stats-panel {
    background: #fae2df;
}

.custom-card-deck {
    overflow-x: auto;
    padding-bottom: 0.75rem;
}

.custom-card-deck::-webkit-scrollbar {
    height: 8px;
}

.custom-card-deck::-webkit-scrollbar-thumb {
    background: #adb5bd;
    border-radius: 999px;
}

.custom-card-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
}

.pricing-card {
    flex: 0 0 30%;
    min-width: 17.5rem;
    min-height: 28rem;
    border: 0;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), #f3f4f6);
    box-shadow: var(--mp-card-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.16);
}

.pricing-card .card-header {
    padding: 0.85rem 1rem;
    border-bottom: 0;
    border-radius: 0.75rem 0.75rem 0 0;
    color: #fff;
}

.pricing-card .card-body {
    display: flex;
    flex-direction: column;
}

.pricing-card ul {
    padding-left: 1rem;
}

.pricing-card li + li {
    margin-top: 0.45rem;
}

.bg-standard {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.bg-pro {
    background: linear-gradient(135deg, #dc3545, #b21f2d);
}

.bg-premium {
    background: linear-gradient(135deg, #ffc107, #ff8c00);
}

.bg-dodatki {
    background: linear-gradient(135deg, #28a745, #1c7430);
}

.bg-pakiet10h {
    background: linear-gradient(135deg, #17a2b8, #0e7c91);
}

.bg-autoegzamin {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.question-card {
    border-radius: var(--mp-radius);
    height: 100%;
}

.question-card-dark {
    background: var(--mp-dark);
    color: #fff;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: #343a40;
}

.marketing-footer {
    font-size: 0.875rem;
}

.footnote {
    font-size: 0.7rem;
}

.contact-form-status {
    display: none;
    margin-top: 0.75rem;
}

.map-placeholder {
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .hero-banner {
        min-height: 28rem;
        padding-top: 7rem;
    }

    .pricing-card {
        flex-basis: 50%;
    }

    .parallax-section::before {
        background-attachment: scroll;
    }
}

@media (max-width: 767.98px) {
    .hero-banner {
        padding-inline: 1rem;
    }

    .hero-banner h1 {
        font-size: 2.15rem;
    }

    .parallax-section {
        min-height: 24rem;
    }

    .pricing-card {
        flex-basis: 85%;
    }

    .feature-band img {
        min-height: 16rem;
    }
}
