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

:root {
    --bg: #F5F4F0;
    --bg-alt: #ECEAE4;
    --bg-dark: #1E2220;
    --accent: #4D7B62;
    --accent-light: #5E9474;
    --text: #1A1918;
    --text-mid: #4A4742;
    --text-light: #8A8580;
    --border: #D4D0CA;
    --border-dark: #2A302E;
    --shadow-sm: 0 2px 12px rgba(26, 25, 24, 0.07);
    --shadow-md: 0 8px 32px rgba(26, 25, 24, 0.12);
}

body {
    font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

/* Loading — usunięty */
.loading {
    display: none;
}

/* ── Navigation ─────────────────────────────────────────────── */
nav {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.logo::before {
    display: none;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted transparent;
    transition: border-color 0.2s, color 0.2s;
}

.contact-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* Linki w hero-area dziedziczą wygląd span (bez podkreślenia, bez zmiany koloru) */
.area-cities a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

.area-cities a:hover span {
    background: rgba(255,255,255,0.1);
    border-color: rgba(240,234,224,0.2);
}

/* Honeypot — niewidoczne dla człowieka, widoczne dla bota */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

/* Sticky mobile CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 0.95rem 1rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
    transition: background 0.2s;
}

.sticky-cta svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.sticky-cta:hover {
    background: var(--accent-light);
}

/* Footer cities */
.footer-cities {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.footer-cities a {
    color: var(--accent-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer-cities a:hover {
    color: var(--bg);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
}

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

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

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

.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: 0.3s;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
    margin-top: 62px;
    padding: 6rem 2rem 5rem;
    background: var(--bg-dark);
    color: var(--bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 18px,
        rgba(255,255,255,0.018) 18px,
        rgba(255,255,255,0.018) 19px
    );
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--bg);
    margin-bottom: 1.5rem;
    animation: none;
}

.hero-text h1 em {
    color: var(--accent-light);
    font-style: normal;
}

.hero-text p {
    font-size: 1.05rem;
    color: rgba(240, 234, 224, 0.65);
    margin-bottom: 2.5rem;
    max-width: 460px;
    animation: none;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: none;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    padding: 0.85rem 1.8rem;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    display: inline-block;
    transition: all 0.2s ease;
    position: relative;
    overflow: visible;
}

.btn::before {
    display: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border: 2px solid var(--accent);
    box-shadow: none;
}

.btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: var(--bg);
    border: 2px solid rgba(240, 234, 224, 0.35);
}

.btn-secondary:hover {
    background: rgba(240, 234, 224, 0.08);
    border-color: rgba(240, 234, 224, 0.7);
    color: var(--bg);
    transform: none;
}

/* Hero visual */
.hero-image {
    animation: none;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(240,234,224,0.12);
    border-radius: 4px;
    overflow: hidden;
}

.stat {
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(240,234,224,0.12);
}

.stat:last-child {
    border-right: none;
}

.stat-num {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(240,234,224,0.5);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-area {
    border-left: 2px solid var(--accent);
    padding-left: 1.25rem;
}

.area-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(240,234,224,0.4);
    margin-bottom: 0.75rem;
}

.area-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.area-cities span {
    font-size: 0.9rem;
    color: rgba(240,234,224,0.7);
    background: rgba(255,255,255,0.06);
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    border: 1px solid rgba(240,234,224,0.1);
}

/* ── Services ───────────────────────────────────────────────── */
.services {
    padding: 6rem 2rem;
    background: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2E5C41; /* przyciemnione z #4D7B62 → kontrast 5.4:1 na jasnym tle */
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.section-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.25rem;
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    display: inline-block;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 2px;
    background: var(--accent);
    animation: none;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg);
    padding: 2rem 1.75rem;
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 3px;
    box-shadow: none;
    transition: box-shadow 0.2s ease, border-left-color 0.2s ease;
    position: relative;
    overflow: visible;
}

.service-card::before {
    display: none;
}

.service-card:hover {
    box-shadow: var(--shadow-sm);
    border-left-color: var(--accent-light);
    transform: none;
}

.service-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--border);
    line-height: 1;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.service-card:hover .service-num {
    color: rgba(184, 101, 12, 0.25);
}

.service-icon {
    display: none;
}

.service-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-mid);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* ── Features ───────────────────────────────────────────────── */
.features {
    padding: 6rem 2rem;
    background: var(--bg-alt);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.feature {
    text-align: center;
    animation: none;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: var(--accent);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    animation: none;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
    letter-spacing: -0.01em;
}

.feature p {
    color: var(--text-mid);
    font-size: 0.95rem;
}

/* ── Brands ─────────────────────────────────────────────────── */
.brands {
    padding: 3.5rem 2rem;
    background: var(--bg-dark);
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.brands h3 {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(240,234,224,0.35);
    margin-bottom: 2rem;
    font-weight: 500;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.brand-item {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(240,234,224,0.25);
    transition: color 0.2s;
    letter-spacing: 0.05em;
}

.brand-item:hover {
    color: var(--accent-light);
    transform: none;
}

/* ── Contact ────────────────────────────────────────────────── */
.contact {
    padding: 6rem 2rem;
    background: var(--bg-alt);
}

.contact-container {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.contact-info > p {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-mid);
}

.contact-item-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
}

.contact-item-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-item strong {
    display: block;
    color: var(--text);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.1rem;
}

.contact-form {
    background: var(--bg);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: 3px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: none;
}

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

.submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--accent);
    color: #fff;
    border: 2px solid var(--accent);
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    position: relative;
    overflow: visible;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: none;
    box-shadow: none;
}

/* ── Footer ─────────────────────────────────────────────────── */
footer {
    background: var(--bg-dark);
    color: rgba(240,234,224,0.7); /* zwiększone z 0.5 → kontrast 5.1:1 */
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--border-dark);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(240,234,224,0.65); /* zwiększone z 0.45 → kontrast 4.6:1 */
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

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

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 1rem 0;
        opacity: 0;
        transform: translateY(-8px);
        transition: all 0.2s ease;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1rem;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-visual {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .sticky-cta {
        display: flex;
    }

    body {
        padding-bottom: 60px;
    }
}

/* ════════════════════════════════════════════════════════════════
   CENNIK PAGE
   ════════════════════════════════════════════════════════════════ */

.pricing-hero {
    margin-top: 62px;
    padding: 5rem 2rem 4rem;
    background: var(--bg-dark);
    color: var(--bg);
    position: relative;
    overflow: hidden;
}

.pricing-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 18px,
        rgba(255,255,255,0.015) 18px,
        rgba(255,255,255,0.015) 19px
    );
    pointer-events: none;
}

.pricing-hero .hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: block;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--bg);
    margin-bottom: 1rem;
}

.pricing-hero p {
    font-size: 1rem;
    color: rgba(245,244,240,0.6);
    max-width: 480px;
    margin: 0 auto;
}

/* Calculator */
.calculator-section {
    padding: 5rem 2rem;
    background: var(--bg);
}

.calculator-container {
    max-width: 900px;
    margin: 0 auto;
}

.calculator {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.calc-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.calc-group {
    display: flex;
    flex-direction: column;
}

.calc-group label {
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.calc-group select,
.calc-group input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 3px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    transition: border-color 0.2s;
    appearance: auto;
}

.calc-group select:focus,
.calc-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: none;
}

.calc-button {
    background: var(--accent);
    color: #fff;
    padding: 0.85rem 2rem;
    border: 2px solid var(--accent);
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    width: 100%;
}

.calc-button:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
}

.calc-result {
    background: var(--bg-dark);
    color: var(--bg);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    margin-top: 1.5rem;
}

.calc-result h3 {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,244,240,0.5);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.calc-result .price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-light);
    margin: 0.25rem 0 0.75rem;
    line-height: 1;
}

.calc-result p {
    font-size: 0.85rem;
    color: rgba(245,244,240,0.5);
    margin-top: 0.4rem;
}

/* Price table */
.price-list {
    padding: 5rem 2rem;
    background: var(--bg-alt);
}

.price-table {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
}

.price-table thead {
    background: var(--bg-dark);
}

.price-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245,244,240,0.55);
    font-weight: 600;
}

.price-table td {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border);
}

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

.price-table tbody tr:hover td {
    background: var(--bg-alt);
}

.price-table td strong {
    color: var(--text);
    font-weight: 600;
}

.price-table .price-cell {
    font-weight: 700;
    color: var(--accent);
    font-size: 1rem;
}

/* Discounts */
.offers-section {
    padding: 5rem 2rem;
    background: var(--bg-dark);
}

.offers-container {
    max-width: 1100px;
    margin: 0 auto;
}

.offers-header {
    text-align: center;
    margin-bottom: 3rem;
}

.offers-header .section-label {
    color: var(--accent-light);
}

.offers-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--bg);
    display: inline-block;
    position: relative;
}

.offers-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 2px;
    background: var(--accent-light);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.offer-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid var(--accent);
    border-radius: 3px;
    padding: 1.75rem;
    transition: background 0.2s;
}

.offer-card:hover {
    background: rgba(255,255,255,0.07);
}

.offer-discount {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.offer-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.offer-card p {
    font-size: 0.88rem;
    color: rgba(245,244,240,0.5);
    line-height: 1.6;
}

/* CTA box */
.cta-section {
    padding: 5rem 2rem;
    background: var(--bg);
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3.5rem 3rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 4px;
    border-top: 3px solid var(--accent);
}

.cta-container h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.cta-container p {
    font-size: 0.95rem;
    color: var(--text-mid);
    margin-bottom: 2rem;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Footer (rozszerzony) */
.footer-content.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    font-size: 0.88rem;
    color: rgba(245,244,240,0.45);
}

.footer-section p {
    font-size: 0.88rem;
    color: rgba(245,244,240,0.45);
    line-height: 1.7;
}

.footer-section a {
    color: rgba(245,244,240,0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-dark);
    font-size: 0.82rem;
    color: rgba(245,244,240,0.3);
}

/* ════════════════════════════════════════════════════════════════
   CITY PAGES (gdynia, rumia, wejherowo, reda)
   ════════════════════════════════════════════════════════════════ */

.city-area {
    padding: 4rem 2rem;
    background: var(--bg);
    text-align: center;
}

.city-area-inner {
    max-width: 760px;
    margin: 0 auto;
}

.city-area-inner h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--text);
}

.city-area-inner p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.8;
}

.city-cta {
    padding: 5rem 2rem;
    background: var(--bg-alt);
    text-align: center;
}

.city-cta-inner {
    max-width: 560px;
    margin: 0 auto;
}

.city-cta-inner h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.85rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.city-cta-inner > p {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.city-phone {
    display: inline-block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    margin: 0.75rem 0 1.5rem;
    transition: color 0.2s;
}

.city-phone:hover {
    color: var(--accent-light);
}

/* City contact form */
.city-contact {
    padding: 5rem 2rem;
    background: var(--bg);
}

.city-contact-inner {
    max-width: 640px;
    margin: 0 auto;
}

.city-contact-inner .section-header {
    margin-bottom: 2.5rem;
}

/* Cennik responsive overrides */
@media (max-width: 768px) {
    .pricing-hero h1 { font-size: 1.85rem; }
    .pricing-hero { padding: 4rem 1.5rem 3rem; }
    .calculator { padding: 1.5rem; }
    .price-table { overflow-x: auto; }
}
