@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   KOBINSTAL V3 - Kompletny System Designu
   Mobile-first, wycentrowany, premium feel
   ============================================ */

:root {
    --primary: #1d1d1f;
    --primary-light: #2d2d2f;
    --background: #f7f8fa;
    --white: #ffffff;
    --accent: #ff4b2b;
    --accent-2: #ff416c;
    --accent-gradient: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
    --accent-glow: rgba(255, 75, 43, 0.25);
    --text-main: #1d1d1f;
    --text-muted: #6e6e73;
    --text-on-dark: #f5f5f7;
    --border-light: rgba(0, 0, 0, 0.08);

    --max-width: 1200px;
    --navbar-height: 80px;
    --radius-pill: 9999px;
    --radius-lg: 28px;
    --radius-md: 16px;
    --radius-sm: 10px;

    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
}

/* =====================
   RESET & BASE
   ===================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Kluczowe: brak overflow-x na html/body który mógł powodować problemy z centered fixed navbar */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* USUNIĘTO overflow-x: hidden z body — powodował to że fixed navbar liczona była od krawędzi body */
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--background);
}

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

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

ul {
    list-style: none;
}

/* =====================
   LAYOUT
   ===================== */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

section.section--dark {
    background-color: var(--primary);
    color: var(--text-on-dark);
}

/* =====================
   TYPOGRAFIA
   ===================== */

h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.h1-mega {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    color: var(--text-main);
}

.h2-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 40px;
}

.section--dark .subtitle {
    color: rgba(255, 255, 255, 0.55);
}

/* =====================
   TEKA I DEKORACJE
   ===================== */

.bg-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--accent-glow);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.08) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.18;
    z-index: 0;
}

/* Upewnij się, że kontener wewnątrz sekcji z dekoracjami jest nad nimi */
section > .container,
section > .hero-content.container {
    position: relative;
    z-index: 2;
}

/* =====================
   PRZYCISKI
   ===================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    border: 2px solid transparent;
    white-space: nowrap;
    gap: 8px;
    line-height: 1;
}

.btn--sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn--primary:hover {
    background: #000000;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.btn--accent {
    background: var(--accent-gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn--accent:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 28px var(--accent-glow);
    color: var(--white);
}

.btn--outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.btn--outline-light:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    border-color: var(--white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* =====================
   NAVBAR (PŁYWAJĄCY)
   ===================== */

.navbar {
    position: fixed;
    /* Wyśrodkowanie: left+transform zamiast left:0 */
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    /* Szerokość responsywna */
    width: calc(100% - 48px);
    max-width: 1100px;
    height: 68px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    z-index: 9999;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    top: 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px) saturate(200%);
    box-shadow: var(--shadow-premium);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.25s ease;
}

.logo:hover {
    opacity: 0.78;
}

/* Logo image – navbar */
.logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Logo image – footer (slightly smaller, inverted to white) */
.footer .logo-img {
    height: 36px;
    filter: brightness(0) invert(1);
}

/* Fallback dot – keep for back-compat, hidden by default */
.logo-dot {
    display: none;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.25s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Burger (mobile) */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

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

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =====================
   HERO SECTION
   ===================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Padding top uwzględnia navbar */
    padding-top: calc(var(--navbar-height) + 80px);
    padding-bottom: 60px;
    overflow: hidden;
}

/* Kontener treści hero */
.hero-content {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content .h1-mega {
    text-align: center;
}

.hero-content .subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Hero badge */
.hero-badge {
    display: inline-block;
    padding: 7px 18px;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

/* Hero CTA grup */
.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* =====================
   TRUST BAR
   ===================== */

.trust-bar {
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 28px 32px;
}

.trust-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-logo {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.trust-logo:hover {
    color: var(--primary);
}

/* =====================
   KARTY USŁUG
   ===================== */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.premium-card {
    background: var(--white);
    padding: 44px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-gradient);
    transition: height 0.4s ease;
    border-radius: 4px 0 0 4px;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(255, 75, 43, 0.15);
}

.premium-card:hover::before {
    height: 100%;
}

.card-icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
    display: inline-block;
    /* Gradient na emoji - działaj tylko na niektórych browserach */
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-card h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
    color: var(--primary);
}

.premium-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =====================
   FEATURE SPLIT (2 KOLUMNY)
   ===================== */

.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.feature-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    display: block;
}

/* Lista z checkmark */
.feature-list {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-list li .check-dot {
    width: 22px;
    height: 22px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* =====================
   FAQ
   ===================== */

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-trigger {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-main);
    transition: color 0.25s ease;
    gap: 16px;
}

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

.faq-trigger span {
    font-size: 1.5rem;
    font-weight: 300;
    flex-shrink: 0;
    color: var(--accent);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-trigger span {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-body-inner {
    padding-bottom: 24px;
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.75;
}

/* =====================
   FORMULARZ
   ===================== */

.form-container {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-light);
}

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

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8ed;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    background: var(--background);
    transition: all 0.25s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 75, 43, 0.08);
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

/* =====================
   SEKCJA KONTAKTOWA (DARK)
   ===================== */

.contact-info {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info p {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.contact-info strong {
    color: var(--white);
}

.contact-info a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* =====================
   FOOTER
   ===================== */

.footer {
    background: #0f0f11;
    color: var(--text-on-dark);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

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

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.82rem;
}

/* =====================
   ANIMACJE (REVEAL)
   ===================== */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Opóźnienia animacji */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* =====================
   CSS SLIDESHOW 
   ===================== */

.css-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--background);
}

.css-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeSlide 20s infinite;
}

.css-slideshow img:nth-child(1) { animation-delay: 0s; }
.css-slideshow img:nth-child(2) { animation-delay: 5s; }
.css-slideshow img:nth-child(3) { animation-delay: 10s; }
.css-slideshow img:nth-child(4) { animation-delay: 15s; }

@keyframes fadeSlide {
    0%, 20% { opacity: 1; transform: scale(1); }
    25%, 95% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

/* =====================
   RESPONSIVE
   ===================== */

@media (max-width: 1100px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 68px;
    }
    
    .navbar {
        width: calc(100% - 32px);
        padding: 0 20px;
        height: 60px;
    }
    
    .nav-links {
        display: none;
        /* Zostaną pokazane przez JS dla mobile */
    }

    .burger {
        display: flex;
    }

    /* Ukryj przycisk "Zadzwoń" w navbarze na mobile */
    .navbar > .btn--primary {
        display: none;
    }
    
    .hero {
        padding-top: calc(var(--navbar-height) + 60px);
        padding-bottom: 40px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-split .feature-image {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    section {
        padding: 72px 0;
    }
    
    .form-container {
        padding: 32px 24px;
    }
    
    .trust-bar-inner {
        gap: 28px;
    }

    .h1-mega {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }
}

/* Pływający przycisk "Zadzwoń" na dole ekranu – tylko mobile */
.fab-call {
    display: none;
}

@media (max-width: 768px) {
    .fab-call {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999;
        background: var(--primary);
        color: var(--white);
        font-weight: 700;
        font-size: 1rem;
        padding: 14px 32px;
        border-radius: var(--radius-pill);
        text-decoration: none;
        box-shadow: 0 6px 24px rgba(0,0,0,0.25);
        white-space: nowrap;
        transition: background 0.2s, box-shadow 0.2s;
    }

    .fab-call:hover {
        background: #000;
        box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    }
}

@media (max-width: 480px) {
    .navbar {
        width: calc(100% - 24px);
    }
    
    .premium-card {
        padding: 32px 28px;
    }
    
    .hero-badge {
        font-size: 0.72rem;
    }
}

/* =====================
   HOME PAGE — Sekcja kafelków miast (Obszary obsługi)
   ===================== */
.home-cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.home-city-card {
    position: relative;
    padding: 24px;
    background: var(--white, #fff);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    display: block;
    overflow: hidden;
}

.home-city-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.home-city-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255, 65, 108, 0.08);
    color: var(--accent);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-city-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.home-city-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-secondary, #555);
    margin-bottom: 0;
}

.home-city-arrow {
    position: absolute;
    bottom: 20px;
    right: 22px;
    font-size: 1.2rem;
    color: var(--accent);
    transition: transform 0.2s ease;
}

.home-city-card:hover .home-city-arrow {
    transform: translateX(4px);
}

@media (max-width: 1100px) {
    .home-cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .home-cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .home-city-card { padding: 20px; }
    .home-city-card h3 { font-size: 1.15rem; }
}

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

/* =====================
   CITY LANDING PAGES (/uslugi/*) — responsywność mobile
   ===================== */
@media (max-width: 768px) {
    .city-hero { padding: 100px 0 40px !important; }
    .city-hero h1 { font-size: clamp(1.7rem, 7vw, 2.2rem) !important; }
    .city-hero p.lead { font-size: 1rem !important; }
    .city-section { padding: 48px 0 !important; }
    .city-section h2 { font-size: clamp(1.4rem, 5vw, 1.8rem) !important; }
    .areas-hero { padding: 100px 0 40px !important; }
    .areas-hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem) !important; }
    .services-grid,
    .why-grid,
    .cities-grid {
        gap: 16px !important;
    }
    .service-card { padding: 22px !important; }
    .city-tile { padding: 22px !important; }
    .pricing-table { font-size: 0.88rem; }
    .pricing-table th,
    .pricing-table td { padding: 10px 12px !important; }
    .city-cta { padding: 48px 0 !important; }
    .city-cta h2 { font-size: clamp(1.4rem, 5vw, 1.8rem) !important; }
    .city-faq details { padding: 14px 16px !important; }
    .city-faq summary { font-size: 0.95rem !important; }
}

@media (max-width: 480px) {
    .city-hero { padding: 90px 0 32px !important; }
    .city-hero h1 { font-size: 1.6rem !important; }
    .city-section { padding: 40px 0 !important; }
    .pricing-table { font-size: 0.8rem; }
    .pricing-table th,
    .pricing-table td { padding: 8px 10px !important; }
    .city-hero .hero-cta a,
    .city-cta .cta-buttons a { width: 100%; justify-content: center; }
    .areas-list { gap: 6px; }
    .areas-list span { font-size: 0.82rem; padding: 6px 12px; }
    .why-card .num { font-size: 2rem !important; }
}

/* Footer 4 kolumny → 2 kolumny na tabletach */
@media (max-width: 1100px) and (min-width: 769px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}
