/* ========================================
   CSS RESET & VARIABLES
   ======================================== */
:root {
    --granat: #1B2A4A;
    --granat-light: #243660;
    --zielony: #1A8A5C;
    --zielony-light: #20a06b;
    --zielony-dark: #157a4e;
    --bialy: #FFFFFF;
    --szary: #F5F7FA;
    --zloty: #D4A843;
    --zloty-light: #e0b84f;
    --tekst: #1B2A4A;
    --tekst-secondary: #5A6B7F;
    --border: #E2E8F0;
    --alert: #DC3545;
    --success: #1A8A5C;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--tekst);
    background: var(--bialy);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--granat);
    line-height: 1.2;
}

h1 {
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -0.02em;
}

h2 {
    font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    letter-spacing: -0.01em;
}

h3 {
    font-weight: 600;
    font-size: 1.3rem;
}

p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--tekst-secondary);
}

.overline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.caption {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
    display: inline-block;
    background: var(--zielony);
    color: var(--bialy);
    padding: 16px 40px;
    font-size: 1rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--zielony-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 138, 92, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--granat);
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid var(--granat);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: var(--granat);
    color: var(--bialy);
}

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--bialy);
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid var(--bialy);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    background: var(--bialy);
    color: var(--granat);
}

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

.section {
    padding: 80px 0;
}

.section--szary {
    background: var(--szary);
}

.section--bialy {
    background: var(--bialy);
}

.section--granat {
    background: var(--granat);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .overline {
    color: var(--zielony);
    margin-bottom: 12px;
    display: block;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ========================================
   FADE-IN ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(27, 42, 74, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--bialy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.navbar-logo svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.navbar-logo .logo-accent {
    color: var(--zloty);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--bialy);
}

.nav-links .btn-primary {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bialy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(27, 42, 74, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* ========================================
   HERO
   ======================================== */
.hero {
    background: var(--szary);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero .overline {
    color: var(--zielony);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero .overline i {
    width: 20px;
    height: 20px;
    color: var(--zielony);
}

.hero h1 {
    color: var(--granat);
    margin-bottom: 24px;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.hero h1 .highlight {
    color: var(--zielony);
}

.hero-subtitle {
    color: var(--tekst-secondary);
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-subtitle strong {
    color: var(--tekst);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.hero-cta .btn-ghost {
    color: var(--granat);
    border-color: var(--granat);
}

.hero-cta .btn-ghost:hover,
.hero-cta .btn-ghost:focus-visible {
    background: var(--granat);
    color: var(--bialy);
}

.hero-trust {
    margin-top: 48px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--tekst-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-trust-item i {
    color: var(--zielony);
    width: 18px;
    height: 18px;
}

/* Hero Calculator Card */
.hero-calc-interactive {
    background: var(--bialy);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(27, 42, 74, 0.1);
}

.hero-calc-interactive .hero-calc-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tekst-secondary);
    margin-bottom: 20px;
}

.calc-input-group {
    margin-bottom: 16px;
}

.calc-input-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--granat);
    margin-bottom: 4px;
}

.calc-input-group input,
.calc-input-group select {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--tekst);
    background: var(--szary);
    border: 2px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.3s ease;
    outline: none;
}

.calc-input-group input:focus,
.calc-input-group select:focus {
    border-color: var(--zielony);
    box-shadow: 0 0 0 3px rgba(26, 138, 92, 0.15);
}

.calc-input-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A6B7F' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.calc-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.calc-result {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.calc-result-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--tekst-secondary);
}

.calc-result-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--tekst);
}

.calc-loss-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: rgba(220, 53, 69, 0.06);
    border-radius: 10px;
    margin-top: 8px;
}

.calc-loss-box .calc-result-label {
    font-weight: 600;
    color: var(--tekst);
}

.calc-loss-box .calc-result-value {
    font-size: 1.2rem;
    color: var(--alert);
}

.calc-gap-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: rgba(26, 138, 92, 0.06);
    border: 1px solid rgba(26, 138, 92, 0.15);
    border-radius: 10px;
    margin-top: 8px;
}

.calc-gap-box .calc-result-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--zielony-dark);
}

.calc-gap-box .calc-result-label i {
    width: 20px;
    height: 20px;
    color: var(--zielony);
}

.calc-gap-box .calc-result-value {
    font-size: 1.15rem;
    color: var(--zielony-dark);
}

.calc-footer {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--tekst-secondary);
    margin-top: 12px;
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 72px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-trust {
        gap: 20px;
    }

    .hero-calc-interactive {
        max-width: 440px;
    }

    .calc-row-2 {
        grid-template-columns: 1fr;
    }

    .desktop-br {
        display: none;
    }
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem-visual {
    max-width: 800px;
    margin: 0 auto;
}

.loss-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.loss-step {
    text-align: center;
    padding: 28px 24px;
    border-radius: 12px;
    flex: 1;
    min-width: 180px;
}

.loss-step--start {
    background: var(--bialy);
    border: 2px solid var(--border);
}

.loss-step--middle {
    background: var(--bialy);
    border: 2px solid var(--border);
}

.loss-step--loss {
    background: rgba(220, 53, 69, 0.06);
    border: 2px solid var(--alert);
}

.loss-step .overline {
    margin-bottom: 8px;
    display: block;
}

.loss-step--start .overline {
    color: var(--tekst-secondary);
}

.loss-step--middle .overline {
    color: var(--tekst-secondary);
}

.loss-step--loss .overline {
    color: var(--alert);
}

.loss-step .amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    letter-spacing: -0.02em;
}

.loss-step--start .amount {
    color: var(--granat);
}

.loss-step--middle .amount {
    color: var(--tekst-secondary);
}

.loss-step--loss .amount {
    color: var(--alert);
}

.loss-step .label {
    font-size: 0.875rem;
    color: var(--tekst-secondary);
    margin-top: 4px;
}

.loss-arrow {
    font-size: 1.5rem;
    color: var(--tekst-secondary);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .loss-flow {
        flex-direction: column;
    }

    .loss-arrow {
        transform: rotate(90deg);
    }
}

.problem-callout {
    border-left: 4px solid var(--alert);
    background: rgba(220, 53, 69, 0.05);
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin-top: 32px;
}

.problem-callout p {
    color: var(--tekst);
    font-weight: 500;
}

.problem-callout strong {
    color: var(--alert);
}

.problem-depreciation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.depreciation-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--bialy);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.depreciation-card .year {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--tekst-secondary);
    margin-bottom: 4px;
}

.depreciation-card .percent {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--alert);
    letter-spacing: -0.02em;
}

.depreciation-card .label {
    font-size: 0.8rem;
    color: var(--tekst-secondary);
    margin-top: 2px;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

@media (max-width: 768px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.solution-card {
    background: var(--bialy);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 15px rgba(27, 42, 74, 0.08);
    border: 1px solid var(--border);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(27, 42, 74, 0.12);
}

.solution-card .icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(26, 138, 92, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.solution-card .icon-wrap i {
    color: var(--zielony);
    width: 24px;
    height: 24px;
}

.solution-card h3 {
    margin-bottom: 12px;
    color: var(--granat);
}

.solution-card p {
    font-size: 0.95rem;
}

/* GAP Diagram */
.gap-diagram {
    background: var(--bialy);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(27, 42, 74, 0.08);
    border: 1px solid var(--border);
}

.gap-diagram h3 {
    text-align: center;
    margin-bottom: 32px;
    color: var(--granat);
}

.gap-bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 40px;
    height: 260px;
    padding: 0 20px;
}

.gap-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    max-width: 200px;
}

.gap-bar {
    width: 100%;
    border-radius: 8px 8px 0 0;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 40px;
}

.gap-bar--purchase {
    height: 220px;
    background: var(--granat);
}

.gap-bar--ac {
    height: 147px;
    background: var(--tekst-secondary);
}

.gap-bar--gap {
    height: 220px;
    background: linear-gradient(to top, var(--tekst-secondary) 67%, var(--zielony) 67%);
}

.gap-bar-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    color: var(--bialy);
    padding: 12px 8px;
    text-align: center;
    width: 100%;
}

.gap-bar-gap-label {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--bialy);
    white-space: nowrap;
}

.gap-bar-caption {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--tekst-secondary);
    text-align: center;
}

@media (max-width: 640px) {
    .gap-bar-chart {
        gap: 20px;
        height: 200px;
    }

    .gap-bar--purchase { height: 170px; }
    .gap-bar--ac { height: 113px; }
    .gap-bar--gap { height: 170px; background: linear-gradient(to top, var(--tekst-secondary) 67%, var(--zielony) 67%); }

    .gap-diagram { padding: 24px 16px; }
}

/* ========================================
   DLA KOGO (FOR WHO) SECTION
   ======================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.target-card {
    background: var(--bialy);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 15px rgba(27, 42, 74, 0.08);
    border: 1px solid var(--border);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.target-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(27, 42, 74, 0.12);
}

.target-card .icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(26, 138, 92, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.target-card .icon-wrap i {
    color: var(--zielony);
    width: 24px;
    height: 24px;
}

.target-card .card-tag {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--zielony);
    margin-bottom: 8px;
    display: block;
}

.target-card h3 {
    margin-bottom: 12px;
    color: var(--granat);
    font-size: 1.15rem;
}

.target-card p {
    font-size: 0.95rem;
}

/* ========================================
   MOTOR GAP SECTION
   ======================================== */
.motor-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .motor-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.motor-card {
    background: var(--bialy);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 15px rgba(27, 42, 74, 0.08);
    border: 1px solid var(--border);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.motor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(27, 42, 74, 0.12);
}

.motor-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(27, 42, 74, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.motor-icon-wrap i {
    color: var(--granat);
    width: 28px;
    height: 28px;
}

.motor-card-tag {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--zielony);
    margin-bottom: 8px;
    display: block;
}

.motor-card h3 {
    margin-bottom: 16px;
    color: var(--granat);
    font-size: 1.15rem;
}

.motor-price-table {
    margin-bottom: 12px;
}

.motor-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.motor-price-row:last-child {
    border-bottom: none;
}

.motor-price-row span {
    color: var(--tekst-secondary);
}

.motor-price-row strong {
    color: var(--granat);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.motor-price-row--highlight {
    background: rgba(26, 138, 92, 0.06);
    border-radius: 6px;
    padding: 8px 10px;
    border-bottom: none;
}

.motor-price-row--highlight strong {
    color: var(--zielony-dark);
}

.motor-card-note {
    font-size: 0.8rem;
    color: var(--tekst-secondary);
    text-align: center;
    font-style: italic;
}

/* Motor example callout */
.motor-example {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bialy);
    border-radius: 12px;
    padding: 28px 32px;
    margin-top: 32px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--zielony);
}

.motor-example-icon {
    width: 48px;
    height: 48px;
    background: rgba(26, 138, 92, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.motor-example-icon i {
    color: var(--zielony);
    width: 24px;
    height: 24px;
}

.motor-example-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--granat);
    margin-bottom: 8px;
}

.motor-example-content p {
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 640px) {
    .motor-example {
        flex-direction: column;
        padding: 24px;
    }
}

/* ========================================
   PREMIUM SECTION
   ======================================== */
.premium-brands {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .premium-brands {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .premium-brands {
        grid-template-columns: 1fr;
    }
}

.premium-brand-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: 12px;
    border: 2px solid var(--border);
    background: var(--bialy);
    transition: all 0.3s ease;
}

.premium-brand-item:hover {
    border-color: var(--zloty);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.15);
}

.premium-brand-item i {
    color: var(--zloty);
    width: 28px;
    height: 28px;
    margin: 0 auto 8px;
}

.premium-brand-item span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--granat);
    margin-bottom: 4px;
}

.premium-brand-item small {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--tekst-secondary);
}

.premium-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .premium-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .premium-highlights {
        grid-template-columns: 1fr;
    }
}

.premium-highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(212, 168, 67, 0.3);
    background: rgba(212, 168, 67, 0.04);
}

.premium-highlight-item i {
    color: var(--zloty);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.premium-highlight-item strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--granat);
}

.premium-highlight-item span {
    font-size: 0.8rem;
    color: var(--tekst-secondary);
}

/* ========================================
   JAK TO DZIALA (HOW IT WORKS)
   ======================================== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(16.66% + 16px);
    right: calc(16.66% + 16px);
    height: 2px;
    background: var(--border);
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps::before {
        display: none;
    }
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(26, 138, 92, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.step-number i {
    color: var(--zielony);
    width: 36px;
    height: 36px;
}

.step-count {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--bialy);
    background: var(--zielony);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -4px;
    right: -4px;
}

.step h3 {
    margin-bottom: 12px;
    color: var(--granat);
}

.step p {
    max-width: 280px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* ========================================
   TRUST / DLACZEGO AUTOTARCZA
   ======================================== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

.trust-badge {
    text-align: center;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--bialy);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(27, 42, 74, 0.1);
}

.trust-badge-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(26, 138, 92, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.trust-badge-icon i {
    color: var(--zielony);
    width: 28px;
    height: 28px;
}

.trust-badge h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--granat);
}

.trust-badge p {
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ========================================
   CALCULATOR v2
   ======================================== */
.calculator-v2 {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bialy);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(27, 42, 74, 0.1);
    border: 1px solid var(--border);
}

@media (max-width: 640px) {
    .calculator-v2 {
        padding: 24px 20px;
    }
}

.calc-v2-toggle {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    background: var(--szary);
    border: 2px solid var(--border);
    margin-bottom: 28px;
}

.calc-v2-tab {
    flex: 1;
    padding: 14px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--tekst-secondary);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.calc-v2-tab i {
    width: 18px;
    height: 18px;
}

.calc-v2-tab.active {
    background: var(--granat);
    color: var(--bialy);
}

.calc-v2-tab:hover:not(.active) {
    background: var(--border);
}

.calc-v2-form {
    margin-bottom: 24px;
}

.calc-v2-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

@media (max-width: 640px) {
    .calc-v2-row {
        grid-template-columns: 1fr;
    }
}

.calc-v2-result {
    background: var(--szary);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    margin-bottom: 20px;
}

.calc-v2-result-main {
    margin-bottom: 16px;
}

.calc-v2-result-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--tekst-secondary);
    margin-bottom: 4px;
}

.calc-v2-result-amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--zielony-dark);
    letter-spacing: -0.02em;
}

.calc-v2-result-detail {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.calc-v2-result-monthly,
.calc-v2-result-daily {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--tekst-secondary);
}

.calc-v2-result-monthly strong,
.calc-v2-result-daily strong {
    color: var(--granat);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin: 0 4px;
}

.calc-v2-footer {
    text-align: center;
}

.calc-v2-footer p {
    font-size: 0.85rem;
    color: var(--tekst-secondary);
}

/* ========================================
   PARAMETRY (PARAMETERS) + COMPARISON TABLE
   ======================================== */
.comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    min-width: 600px;
}

.comparison-table thead th {
    background: var(--granat);
    color: var(--bialy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 14px 16px;
    text-align: left;
    letter-spacing: 0.02em;
}

.comparison-table thead th:first-child {
    border-radius: 10px 0 0 0;
}

.comparison-table thead th:last-child {
    border-radius: 0 10px 0 0;
}

.comparison-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--tekst-secondary);
    vertical-align: top;
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--granat);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(26, 138, 92, 0.03);
}

.comparison-table tbody td i {
    color: var(--zielony);
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

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

.param-item {
    background: var(--bialy);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.param-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 42, 74, 0.08);
}

.param-item i {
    color: var(--zielony);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.param-item .param-label {
    font-size: 0.85rem;
    color: var(--tekst-secondary);
    margin-bottom: 2px;
}

.param-item .param-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--granat);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bialy);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(27, 42, 74, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--granat);
    text-align: left;
    gap: 16px;
}

.faq-question:hover {
    color: var(--zielony);
}

.faq-question:focus-visible {
    outline: 2px solid var(--zielony);
    outline-offset: -2px;
    border-radius: 12px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--tekst-secondary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--zielony);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 24px 20px;
}

.faq-answer-inner p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   O MNIE (ABOUT ME) — redesigned without photo
   ======================================== */
.about-grid--no-photo {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .about-grid--no-photo {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}

.about-shield {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: rgba(26, 138, 92, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.about-shield i {
    color: var(--zielony);
    width: 56px;
    height: 56px;
}

.about-text h2 {
    margin-bottom: 12px;
}

.about-experience {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--zloty) !important;
    font-weight: 600 !important;
}

.about-experience i {
    width: 20px;
    height: 20px;
    color: var(--zloty);
}

@media (max-width: 768px) {
    .about-experience {
        justify-content: center;
    }
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-text p:last-of-type {
    margin-bottom: 24px;
}

.about-contact {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .about-contact {
        justify-content: center;
    }
}

.about-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--granat);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.about-contact a:hover {
    color: var(--zielony);
}

.about-contact a i {
    width: 20px;
    height: 20px;
    color: var(--zielony);
}

/* ========================================
   CTA / FORM SECTION
   ======================================== */
.form-section {
    background: var(--granat);
    padding: 80px 0;
}

.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.form-section .section-header .overline {
    color: var(--zloty);
}

.form-section .section-header h2 {
    color: var(--bialy);
}

.form-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form {
    background: var(--bialy);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
    .contact-form {
        padding: 28px 20px;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--granat);
    margin-bottom: 6px;
}

.form-group label .required {
    color: var(--alert);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--tekst);
    background: var(--szary);
    border: 2px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--zielony);
    box-shadow: 0 0 0 3px rgba(26, 138, 92, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A6B7F' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group input.error,
.form-group select.error {
    border-color: var(--alert);
}

.form-error {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--alert);
    margin-top: 4px;
    min-height: 1em;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(26, 138, 92, 0.08);
    border: 1px solid rgba(26, 138, 92, 0.2);
    border-radius: 10px;
    margin-top: 20px;
}

.form-success i {
    color: var(--zielony);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.form-success p {
    color: var(--tekst);
    font-size: 0.95rem;
}

.form-success.hidden {
    display: none;
}

.form-alt-contact {
    text-align: center;
    margin-top: 32px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.form-alt-contact a {
    color: var(--bialy);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.form-alt-contact a:hover {
    border-color: var(--bialy);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--granat);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
}

.footer .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--bialy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-logo svg {
    width: 24px;
    height: 24px;
}

.footer-logo .logo-accent {
    color: var(--zloty);
}

.footer-partner {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 400px;
    line-height: 1.5;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-right a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: var(--bialy);
}

.footer-copyright {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus-visible {
    outline: 2px solid var(--zielony);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--granat);
    color: rgba(255, 255, 255, 0.9);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    margin: 0;
    max-width: 600px;
}

.cookie-banner a {
    color: var(--zloty);
    text-decoration: underline;
}

.cookie-banner button {
    background: var(--zielony);
    color: var(--bialy);
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.cookie-banner button:hover {
    background: var(--zielony-dark);
}

.cookie-banner.hidden {
    display: none;
}

/* ========================================
   UTILITY: HIDDEN
   ======================================== */
.hidden {
    display: none !important;
}
