/* ═══════════════════════════════════════════════════════
   NaprawaLodówekWarszawa.pl — Main Stylesheet
   ─────────────────────────────────────────────────────
   Colors:
     Primary   #1A73E8  (electric blue)
     Accent    #0DCAF0  (icy cyan)
     BG Light  #F4F8FF
     BG Dark   #0B1E3D
     Text      #1C1C2E
     Text2     #5A6A7A
     CTA       #FF5722
═══════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary:     #1A73E8;
    --accent:      #0DCAF0;
    --cta:         #FF5722;
    --dark:        #0B1E3D;
    --dark-2:      #112B52;
    --light:       #F4F8FF;
    --text:        #1C1C2E;
    --text-2:      #5A6A7A;
    --white:       #ffffff;
    --border:      #E8F0FE;
    --shadow-sm:   0 2px 8px rgba(26,115,232,.08);
    --shadow-md:   0 8px 32px rgba(26,115,232,.14);
    --shadow-lg:   0 20px 60px rgba(26,115,232,.18);
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font:        'Inter', system-ui, -apple-system, sans-serif;
    --container:   1180px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ── Container ────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn-full { width: 100%; justify-content: center; }

.btn-cta {
    background: var(--cta);
    color: var(--white);
    border-color: var(--cta);
    box-shadow: 0 4px 20px rgba(255,87,34,.35);
}
.btn-cta:hover {
    background: #e64a1a;
    border-color: #e64a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,87,34,.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: #1565d8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-visit {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--primary) 0%, #0db8e0 100%);
    color: var(--white);
    border-color: transparent;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .03em;
    box-shadow: 0 4px 22px rgba(26,115,232,.32);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.btn-visit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 60%);
    pointer-events: none;
}
.btn-visit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(26,115,232,.46);
    filter: brightness(1.07);
}
.btn-visit .btn-visit-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ── Section Helpers ──────────────────────────────── */
.section-light  { background: var(--light); }
.section-dark   { background: var(--dark); }
.seo-block      { background: var(--white); }

section { padding: 96px 0; }

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

.section-tag {
    display: inline-block;
    background: rgba(26,115,232,.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-tag-light {
    background: rgba(13,202,240,.15);
    color: var(--accent);
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: var(--text);
}

.section-title-light { color: var(--white); }

.section-subtitle {
    margin-top: 16px;
    font-size: 17px;
    color: var(--text-2);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle-light { color: rgba(255,255,255,.65); }

.section-header-light .section-title { color: var(--white); }

/* ── Reveal animation ─────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════
   HEADER / NAVBAR
═══════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
}

.navbar {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 72px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: var(--white);
}

.logo-text {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.2;
}

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

/* Nav links */
.nav-links {
    display: flex;
    gap: 4px;
    margin-left: auto;
}

.nav-links a {
    color: rgba(255,255,255,.75);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,.08);
}

.nav-cta { margin-left: 8px; }

/* Hamburger — CSS only */
.nav-toggle-input { display: none; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    margin-left: auto;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle-input:checked ~ .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle-input:checked ~ .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle-input:checked ~ .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

/* Hero Slider */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.hero-slide.active { opacity: 1; }

.slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(6,18,48,0.93) 0%,
            rgba(6,18,48,0.88) 35%,
            rgba(6,18,48,0.55) 58%,
            rgba(6,18,48,0.15) 78%,
            transparent 100%),
        linear-gradient(to bottom,
            rgba(6,18,48,0.40) 0%,
            transparent 20%,
            transparent 75%,
            rgba(6,18,48,0.55) 100%);
}

/* Slider dots */
.hero-dots {
    position: absolute;
    bottom: 88px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--accent);
    transform: scale(1.3);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13,202,240,.12);
    border: 1px solid rgba(13,202,240,.25);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: var(--white);
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    font-weight: 500;
}

/* Fridge Visual */
.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0;
}

.fridge-illustration {
    position: relative;
    width: 360px;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background card behind the fridge */
.fridge-card-bg {
    position: absolute;
    inset: -28px -20px;
    background:
        radial-gradient(ellipse 70% 60% at 50% 45%,
            rgba(26,115,232,0.22) 0%,
            rgba(13,202,240,0.08) 40%,
            rgba(11,30,61,0.80) 70%,
            rgba(6,18,48,0.95) 100%);
    border: 1px solid rgba(26,115,232,0.18);
    border-radius: 36px;
    box-shadow:
        0 0 0 1px rgba(13,202,240,0.07),
        0 40px 80px rgba(0,0,0,0.55),
        inset 0 1px 0 rgba(255,255,255,0.04);
    z-index: 0;
}

.fridge-card-bg::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse at center, rgba(26,115,232,0.18) 0%, transparent 65%);
    border-radius: 60px;
    z-index: -1;
}

/* Dot grid decoration top-right */
.fridge-dots-grid {
    position: absolute;
    top: -10px;
    right: -30px;
    width: 110px;
    height: 110px;
    background-image: radial-gradient(circle, rgba(13,202,240,0.35) 1px, transparent 1px);
    background-size: 13px 13px;
    opacity: 0.5;
    z-index: 1;
}

.fridge-svg {
    width: 300px;
    height: 420px;
    filter:
        drop-shadow(0 0 32px rgba(26,115,232,.55))
        drop-shadow(0 0 8px rgba(13,202,240,.25));
    animation: float 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
}

.cold-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(13,202,240,.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: cold-expand 3s ease-out infinite;
    z-index: 1;
}

.cold-ring-1 { width: 180px; height: 180px; animation-delay: 0s; }
.cold-ring-2 { width: 280px; height: 280px; animation-delay: 1s; }
.cold-ring-3 { width: 380px; height: 380px; animation-delay: 2s; }

@keyframes cold-expand {
    0% { transform: translate(-50%, -50%) scale(0); opacity: .8; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.4);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: .4; }
    50% { opacity: 1; }
}

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-lead {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    letter-spacing: -.01em;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 48px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -.02em;
}

.stat-label {
    font-size: 13px;
    color: var(--text-2);
    font-weight: 500;
}

.about-photo-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.88) saturate(0.9);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.about-photo-wrapper:hover .about-photo {
    transform: scale(1.04);
    filter: brightness(0.82) saturate(0.95);
}

.about-photo-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(11,30,61,0.55) 0%, transparent 45%),
        linear-gradient(135deg, rgba(11,30,61,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.about-photo-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(11,30,61,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(13,202,240,.25);
    border-radius: var(--radius-md);
    padding: 14px 20px;
}

.badge-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

.about-photo-badge strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.about-photo-badge span {
    font-size: 12px;
    color: var(--accent);
}

/* Floating rating badge top-right */
.about-float-rating {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    background: rgba(11,30,61,0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(13,202,240,.22);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    text-align: center;
}

.float-stars {
    color: #F59E0B;
    font-size: 17px;
    letter-spacing: 3px;
    margin-bottom: 4px;
}

.about-float-rating span {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    white-space: nowrap;
    display: block;
}

/* Floating checkmarks card bottom-right */
.about-float-checks {
    position: absolute;
    bottom: 24px;
    right: 20px;
    z-index: 3;
    background: rgba(255,255,255,0.96);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.float-check-icon {
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: var(--transition);
    cursor: default;
}

.service-card:hover {
    background: rgba(26,115,232,.12);
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(13,202,240,.15);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(26,115,232,.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 12px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(13,202,240,.2);
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tags span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(13,202,240,.1);
    border: 1px solid rgba(13,202,240,.2);
    padding: 4px 10px;
    border-radius: 100px;
}

/* Services photo banner */
.services-photo-banner {
    position: relative;
    margin-top: 48px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 340px;
}

.services-photo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) saturate(0.85);
}

.services-photo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(6,18,48,0.88) 0%,
            rgba(11,30,61,0.70) 50%,
            rgba(11,30,61,0.30) 100%),
        linear-gradient(to bottom,
            rgba(6,18,48,0.3) 0%,
            transparent 40%,
            rgba(6,18,48,0.5) 100%);
    display: flex;
    align-items: center;
}

.services-photo-content {
    padding: 0 56px;
    max-width: 560px;
}

.services-photo-content span {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.services-photo-content h3 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 24px;
}

/* Van CTA block */
.van-cta-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    margin-top: 64px;
    padding: 52px 56px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.van-cta-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.van-cta-text h3 {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -.02em;
}

.van-cta-text p {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.75;
}

/* Van photo */
.van-photo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.van-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.van-illustration {
    position: relative;
    width: 360px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.van-card-bg {
    position: absolute;
    inset: -16px -12px;
    background: linear-gradient(135deg,
        rgba(26,115,232,0.07) 0%,
        rgba(244,248,255,0.98) 100%);
    border: 1px solid rgba(26,115,232,0.12);
    border-radius: 28px;
    z-index: 0;
}

.van-dots-grid {
    position: absolute;
    bottom: -8px;
    left: -18px;
    width: 96px;
    height: 76px;
    background-image: radial-gradient(circle, rgba(26,115,232,0.28) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.55;
    z-index: 1;
}

.van-svg {
    width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 28px rgba(26,115,232,0.20)) drop-shadow(0 2px 6px rgba(26,115,232,0.08));
    position: relative;
    z-index: 2;
    overflow: visible;
}

/* Spinning wheels */
.van-wheel-rear,
.van-wheel-front {
    transform-box: fill-box;
    transform-origin: center;
    animation: van-wheel-spin 0.65s linear infinite;
}

@keyframes van-wheel-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Speed lines (behind the van = left side) */
.van-speed-lines {
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-55%);
    display: flex;
    flex-direction: column;
    gap: 9px;
    z-index: 3;
    pointer-events: none;
}

.speed-l {
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, transparent, rgba(26,115,232,0.45));
    animation: speed-streak 0.8s ease-in-out infinite;
}

.speed-l-1 { width: 58px; animation-delay: 0s;    }
.speed-l-2 { width: 40px; animation-delay: 0.20s; }
.speed-l-3 { width: 52px; animation-delay: 0.40s; }
.speed-l-4 { width: 34px; animation-delay: 0.60s; }

@keyframes speed-streak {
    0%   { transform: translateX(14px); opacity: 0; }
    25%  { opacity: 1; }
    100% { transform: translateX(-38px); opacity: 0; }
}

/* ═══════════════════════════════════════════════════
   SEO BLOCKS
═══════════════════════════════════════════════════ */
.seo-split {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 72px;
    align-items: start;
}

.seo-split-text h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.seo-tagline {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.seo-split-text p {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.85;
    margin-bottom: 16px;
}

.seo-split-text h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    margin-top: 32px;
    margin-bottom: 16px;
    letter-spacing: -.01em;
}

.seo-split-right {
    align-self: center;
}

.seo-split-right h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -.01em;
}

.seo-features-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.seo-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    transition: var(--transition);
}

.seo-feature:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.seo-feature-icon {
    width: 34px;
    height: 34px;
    background: rgba(26,115,232,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.seo-feature strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.seo-feature p {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.6;
    margin: 0;
}

.seo-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.seo-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
}

.seo-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    margin-top: 9px;
}

.seo-cta-box {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid rgba(255,255,255,.06);
}

.seo-cta-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.45);
    margin-bottom: 12px;
}

.seo-cta-phone {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -.02em;
    margin-bottom: 20px;
    transition: var(--transition);
}

.seo-cta-phone:hover { color: var(--white); }

.seo-cta-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.seo-cta-hours div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.55);
}

.seo-cta-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.seo-cta-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.75);
}

/* ═══════════════════════════════════════════════════
   LOCATIONS
═══════════════════════════════════════════════════ */
@keyframes loc-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.locations-grid .location-card {
    animation: loc-fade-in 0.5s ease both;
}
.locations-grid .location-card:nth-child(1) { animation-delay: 0.05s; }
.locations-grid .location-card:nth-child(2) { animation-delay: 0.10s; }
.locations-grid .location-card:nth-child(3) { animation-delay: 0.15s; }
.locations-grid .location-card:nth-child(4) { animation-delay: 0.20s; }
.locations-grid .location-card:nth-child(5) { animation-delay: 0.25s; }
.locations-grid .location-card:nth-child(6) { animation-delay: 0.30s; }
.locations-grid .location-card:nth-child(7) { animation-delay: 0.35s; }
.locations-grid .location-card:nth-child(8) { animation-delay: 0.40s; }

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.location-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    cursor: default;
}

.location-card:hover {
    background: rgba(26,115,232,.18);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(13,202,240,.12);
}

.location-pin {
    width: 44px;
    height: 44px;
    background: rgba(13,202,240,.12);
    border: 1px solid rgba(13,202,240,.20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.location-card:hover .location-pin {
    background: rgba(13,202,240,.22);
}

.location-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.2;
}

.location-info span {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.location-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    padding: 24px 32px;
}

.location-cta-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-cta-text p {
    font-size: 15px;
    color: rgba(255,255,255,.70);
    margin: 0;
}

/* ═══════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════ */
.steps-track { position: relative; }

.steps-line {
    display: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

/* Connecting line between steps */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    z-index: 0;
}

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

.step-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.step-text {
    display: flex;
    flex-direction: column;
}

.step-number {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    padding: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.step:hover .step-icon {
    border-color: var(--primary);
    box-shadow: 0 0 0 8px rgba(26,115,232,.1);
    transform: scale(1.1);
}

.step-icon svg { width: 100%; height: 100%; }

.step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   BRANDS
═══════════════════════════════════════════════════ */
.brands {
    padding: 64px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.brands .section-header { margin-bottom: 40px; }

.brands-track-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.brands-track:hover { animation-play-state: paused; }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-right: 1px solid var(--border);
    min-width: 160px;
    transition: var(--transition);
}

.brand-item:hover {
    background: var(--light);
}

.brand-item span {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.01em;
    color: #C5CDD8;
    transition: var(--transition);
    text-transform: uppercase;
}

.brand-item:hover span {
    color: var(--primary);
}

/* ═══════════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════════ */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.why-us-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-us-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.why-us-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(26,115,232,.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.why-us-card:hover .why-us-icon {
    background: rgba(26,115,232,.18);
}

.why-us-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-us-card p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.75;
    margin: 0;
    flex-grow: 1;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 24px;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.author-info span {
    font-size: 13px;
    color: var(--text-2);
}

/* ── Odznaka oceny Google (nad siatką opinii) ──────── */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: var(--transition);
}
.google-rating-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.google-rating-score {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
}
.google-rating-stars {
    color: #F59E0B;
    font-size: 15px;
    letter-spacing: 1px;
}
.google-rating-count {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-2);
    border-left: 1px solid var(--border);
    padding-left: 10px;
}

/* ── Pokaż więcej opinii ────────────────────────────── */
.testimonial-extra { display: none; }
.testimonials-grid.expanded .testimonial-extra { display: flex; }
.testimonials-more-wrapper {
    text-align: center;
    margin-top: 40px;
}
.testimonials-more-wrapper .btn.is-hidden { display: none; }

/* ═══════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    background: rgba(26,115,232,.1);
    border-color: rgba(26,115,232,.4);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px;
    cursor: pointer;
    list-style: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

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

.faq-item[open] .faq-question { color: var(--accent); }

.faq-arrow {
    flex-shrink: 0;
    color: rgba(255,255,255,.4);
    transition: transform var(--transition);
}

.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

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

.faq-answer p {
    font-size: 15px;
    color: rgba(255,255,255,.65);
    line-height: 1.75;
}

.faq-answer strong { color: var(--accent); }

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact { background: var(--light); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* Form */
.contact-form-wrapper { }

.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    resize: vertical;
    min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26,115,232,.1);
}

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

/* Alerts */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 24px;
}

.alert-success {
    background: rgba(16,185,129,.1);
    border: 1px solid rgba(16,185,129,.3);
    color: #059669;
}

.alert-error {
    background: rgba(239,68,68,.1);
    border: 1px solid rgba(239,68,68,.3);
    color: #DC2626;
}

.form-rodo { margin-bottom: 8px; }

.rodo-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.rodo-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: auto;
    padding: 0;
    border: none;
    background: none;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
}

.rodo-label span {
    font-size: 12px;
    color: var(--text-2);
    line-height: 1.6;
}

.rodo-label span a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.rodo-label span a:hover { color: var(--accent); }

/* Contact Info */
.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.contact-detail:last-child { border-bottom: none; }

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(26,115,232,.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-2);
    margin-bottom: 4px;
}

.contact-detail a {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.contact-detail a:hover { color: var(--accent); }

.contact-detail span {
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
}

.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.map-wrapper iframe { display: block; }

.map-full {
    margin-top: 32px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.map-full iframe {
    display: block;
    width: 100%;
    height: 360px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer {
    background: var(--dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand {}

.logo-footer {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    transition: var(--transition);
}

.footer-phone:hover { color: var(--white); }

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.4);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-links a:hover::before { opacity: 1; }

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,.35);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-inner {
        padding-top: 80px;
        padding-bottom: 80px;
        min-height: auto;
    }

    .hero-content { max-width: 560px; }
    .hero-visual { order: -1; }

    .fridge-illustration {
        width: 220px;
        height: 300px;
    }

    .fridge-svg { width: 200px; height: 280px; }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-photo-wrapper { aspect-ratio: 16/9; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-photo-banner { height: 260px; }
    .services-photo-content { padding: 0 32px; }
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
    .location-cta { flex-direction: column; align-items: flex-start; gap: 16px; }
    .seo-split { grid-template-columns: 1fr; gap: 40px; }
    .seo-cta-box { position: static; }

    .van-cta-block { grid-template-columns: 1fr; padding: 36px 32px; gap: 32px; }
    .van-illustration-wrapper { order: -1; }
    .van-illustration { width: 340px; height: 260px; }
    .van-svg { width: 320px; }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

    .why-us-grid { grid-template-columns: repeat(2, 1fr); }

    .testimonials-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {

    section { padding: 56px 0; }

    /* ── Nagłówki sekcji: do lewej ─────────────────── */
    .section-header {
        text-align: left;
        margin-bottom: 40px;
    }
    .section-header .section-subtitle {
        margin-left: 0;
        margin-right: 0;
    }
    .section-header-light { text-align: left; }

    /* ── Nav ────────────────────────────────────────── */
    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        box-shadow: 0 20px 40px rgba(0,0,0,.5);
        z-index: 99;
    }
    .nav-toggle-input:checked ~ .nav-links { display: flex; }
    .nav-links a { padding: 14px 16px; font-size: 16px; }
    .nav-hamburger { display: flex; }
    .nav-cta { display: none; }

    /* ── Hero ───────────────────────────────────────── */
    .hero-inner { padding-top: 48px; padding-bottom: 56px; min-height: 92vh; }
    .hero-content { max-width: 100%; }
    .hero-title { font-size: clamp(30px, 9vw, 44px); }
    .hero-subtitle { font-size: 15px; }
    .hero-cta-group { flex-direction: column; gap: 12px; }
    .hero-cta-group .btn { width: 100%; justify-content: center; }
    .hero-trust { gap: 12px; flex-direction: column; }
    .hero-scroll-indicator { display: none; }

    /* ── About / Zaufany serwis ─────────────────────── */
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
    .about-photo-wrapper { aspect-ratio: 4/3; }

    /* ── SEO bloki ──────────────────────────────────── */
    .seo-split { grid-template-columns: 1fr; gap: 32px; }
    .seo-split-right { align-self: auto; }
    .seo-cta-box { position: static; }
    .seo-features { grid-template-columns: 1fr; }

    /* ── Lokalizacje ────────────────────────────────── */
    .locations-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .location-card { padding: 16px 14px; gap: 12px; }
    .location-cta { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px; }

    /* ── Jak działamy ───────────────────────────────── */
    .steps-grid { grid-template-columns: 1fr; gap: 24px; }
    .steps-grid::before { display: none; }

    .step { display: flex; flex-direction: column; text-align: left; gap: 10px; }

    .step-body {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .step-icon { margin: 0; flex-shrink: 0; }

    .step-text { text-align: left; }
    .step-text h3 { margin-bottom: 6px; }

    /* ── Van / Zdjęcie ──────────────────────────────── */
    .van-cta-block { grid-template-columns: 1fr; padding: 28px 20px; gap: 28px; }
    .van-photo-wrapper { height: 220px; order: -1; }

    /* ── Marki ──────────────────────────────────────── */
    .brands-track-wrapper {
        mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    }

    /* ── Why Us ─────────────────────────────────────── */
    .why-us-grid { grid-template-columns: 1fr; }

    /* ── Opinie ─────────────────────────────────────── */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* ── FAQ ────────────────────────────────────────── */
    .faq-list { max-width: 100%; }
    .faq-question { padding: 18px 20px; font-size: 15px; }
    .faq-answer { padding: 0 20px; }

    /* ── Kontakt ────────────────────────────────────── */
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px 20px; }

    /* ── Stopka ─────────────────────────────────────── */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; gap: 8px; }
    .footer-desc { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .location-card { padding: 14px 12px; }
    .hero-title { font-size: clamp(28px, 10vw, 38px); }
    .seo-cta-phone { font-size: 26px; }
}
