/* ==========================================================
   ARNI-HOL — STYLE PODSTRON DZIELNIC
   Dopasowany do HTML:
   pomoc-drogowa-krakow-bronowice.html

   Lokalizacja:
   public_html/style-dzielnice.css
========================================================== */


/* ==========================================================
   ZMIENNE
========================================================== */

:root {
    --primary: #ff6600;
    --primary-hover: #e05500;

    --dark: #121212;
    --dark-soft: #1b1b1b;

    --white: #ffffff;

    --text: #555555;
    --text-light: #777777;

    --bg: #f6f7f9;
    --bg-gray: #f0f1f3;

    --border: #e7e7e7;

    --primary-bg: rgba(255, 102, 0, 0.08);
    --primary-border: rgba(255, 102, 0, 0.20);

    --radius: 20px;
    --radius-small: 12px;

    --shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.11);
}


/* ==========================================================
   RESET
========================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    background: var(--bg);
    color: var(--dark);

    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;

    line-height: 1.6;
}

body,
button,
input,
textarea,
select {
    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;
}

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

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


/* ==========================================================
   PRELOADER
========================================================== */

#preloader {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #121212;

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

#preloader div {
    width: 46px;
    height: 46px;

    border: 4px solid rgba(255,255,255,0.15);
    border-top-color: var(--primary);

    border-radius: 50%;

    animation: arniSpin 0.8s linear infinite;
}

@keyframes arniSpin {
    to {
        transform: rotate(360deg);
    }
}


/* ==========================================================
   HEADER
========================================================== */

#header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    width: 100%;

    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 5%;

    background: rgba(18,18,18,0.96);

    border-bottom: 1px solid rgba(255,255,255,0.06);

    box-shadow: 0 4px 20px rgba(0,0,0,0.15);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.logo {
    display: flex;
    flex-direction: column;

    justify-content: center;

    line-height: 1;

    color: #ffffff;

    cursor: pointer;
}

.logo-main {
    font-size: 1.65rem;
    font-weight: 900;

    letter-spacing: -0.5px;
}

.logo-main span {
    color: var(--primary);
}

.logo-sub {
    margin-top: 5px;

    color: rgba(255,255,255,0.65);

    font-size: 0.66rem;
    font-weight: 700;

    letter-spacing: 0.4px;
}


/* ==========================================================
   HAMBURGER
========================================================== */

.hamburger {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    cursor: pointer;

    border-radius: 10px;

    background: rgba(255,255,255,0.06);
}

.hamburger span {
    display: block;

    width: 23px;
    height: 2px;

    background: #ffffff;

    border-radius: 3px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

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

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

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


/* ==========================================================
   NAV
========================================================== */

#menu {
    position: fixed;

    top: 0;
    right: 0;

    z-index: 1001;

    height: 100vh;

    width: 330px;

    display: flex;
    flex-direction: column;

    padding: 105px 25px 30px;

    background: #171717;

    box-shadow: -15px 0 40px rgba(0,0,0,0.25);

    transform: translateX(100%);

    transition: transform 0.3s ease;

    overflow-y: auto;
}

#menu.show {
    transform: translateX(0);
}

#menu > a,
#menu .dropdown-toggle {
    display: flex;
    align-items: center;

    min-height: 48px;

    padding: 12px 14px;

    color: rgba(255,255,255,0.88);

    font-size: 0.95rem;
    font-weight: 700;

    border-radius: 10px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

#menu > a:hover,
#menu .dropdown-toggle:hover {
    background: rgba(255,102,0,0.10);

    color: var(--primary);
}


/* ==========================================================
   DROPDOWN
========================================================== */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    width: 100%;

    cursor: pointer;
}

.dropdown-content {
    display: none;

    margin: 4px 0 8px;

    padding: 7px;

    background: #101010;

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,0.05);
}

.dropdown-content.show {
    display: block;
}

.dropdown-content a {
    display: block;

    padding: 10px 12px;

    color: rgba(255,255,255,0.70);

    font-size: 0.88rem;
    font-weight: 600;

    border-radius: 8px;
}

.dropdown-content a:hover {
    background: rgba(255,102,0,0.10);

    color: var(--primary);
}


/* ==========================================================
   OVERLAY
========================================================== */

#overlay {
    position: fixed;

    inset: 0;

    z-index: 999;

    background: rgba(0,0,0,0.55);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

#overlay.show {
    opacity: 1;

    visibility: visible;
}


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

.district-hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding:
        150px 20px
        90px;

    text-align: center;

    color: #ffffff;

    background:
        linear-gradient(
            rgba(12,12,12,0.72),
            rgba(12,12,12,0.78)
        ),
        url("../images/krakow-hero.webp")
        center center / cover no-repeat;

    overflow: hidden;
}

.hero-premium-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        radial-gradient(
            circle at center,
            rgba(255,102,0,0.10),
            transparent 55%
        );
}

.hero-premium-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 900px;

    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;

    padding: 8px 17px;

    margin-bottom: 22px;

    color: var(--primary);

    background: rgba(255,102,0,0.12);

    border: 1px solid rgba(255,102,0,0.30);

    border-radius: 999px;

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-premium-content h1 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: clamp(2.3rem, 6vw, 4.2rem);

    font-weight: 900;

    line-height: 1.08;

    letter-spacing: -1px;
}

.hero-premium-content h1 span {
    display: inline-block;

    color: var(--primary);
}

.hero-premium-content > p {
    max-width: 780px;

    margin:
        0 auto 30px;

    color: rgba(255,255,255,0.90);

    font-size: clamp(1rem, 2vw, 1.15rem);

    line-height: 1.8;
}

.hero-btn-container {
    display: flex;

    justify-content: center;

    margin-top: 10px;
}

.hero-premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 220px;

    padding: 17px 30px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-hover)
        );

    color: #ffffff;

    border-radius: 50px;

    font-size: 1.1rem;
    font-weight: 900;

    box-shadow:
        0 12px 32px rgba(255,102,0,0.30);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.hero-premium-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 42px rgba(255,102,0,0.40);
}

.hero-premium-note {
    margin-top: 17px !important;

    color: rgba(255,255,255,0.62) !important;

    font-size: 0.87rem !important;
}


/* ==========================================================
   STATYSTYKI
========================================================== */

.hero-stats {
    position: relative;

    z-index: 5;

    padding: 28px 20px;

    background: #151515;

    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    width: 100%;
    max-width: 1150px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.stat-card {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 20px;

    background: #1d1d1d;

    border:
        1px solid
        rgba(255,255,255,0.05);

    border-radius: 15px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(255,102,0,0.30);
}

.stat-card-icon {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);

    background:
        rgba(255,102,0,0.10);

    border-radius: 12px;

    font-size: 1.15rem;
}

.stat-card-info h3 {
    margin: 0;

    color: #ffffff;

    font-size: 1.08rem;

    font-weight: 900;

    line-height: 1.2;
}

.stat-card-info p {
    margin: 4px 0 0;

    color: #9c9c9c;

    font-size: 0.80rem;

    line-height: 1.4;
}


/* ==========================================================
   SEKCJE
========================================================== */

.section-wrap {
    width: 100%;

    padding: 85px 20px;

    background: var(--bg);
}

.section-wrap--gray {
    background: var(--bg-gray);
}

.section-inner {
    width: 100%;
    max-width: 1150px;

    margin: 0 auto;
}

.section-header {
    max-width: 800px;

    margin:
        0 auto 45px;

    text-align: center;
}

.section-badge {
    display: inline-block;

    margin-bottom: 13px;

    padding: 6px 14px;

    color: var(--primary);

    background:
        var(--primary-bg);

    border:
        1px solid
        var(--primary-border);

    border-radius: 999px;

    font-size: 0.73rem;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.section-header h2 {
    margin: 0 0 13px;

    color: var(--dark);

    font-size:
        clamp(1.85rem, 4vw, 2.75rem);

    font-weight: 850;

    line-height: 1.18;

    letter-spacing: -0.5px;
}

.section-subtitle {
    max-width: 720px;

    margin: 0 auto;

    color: var(--text-light);

    font-size: 1rem;

    line-height: 1.8;
}


/* ==========================================================
   INTRO / ABOUT
========================================================== */

.about-grid {
    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    gap: 30px;

    align-items: start;
}

.about-content-box {
    padding: 35px;

    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.about-content-box p {
    margin:
        0 0 18px;

    color: var(--text);

    font-size: 0.97rem;

    line-height: 1.85;
}

.about-content-box p:last-child {
    margin-bottom: 0;
}

.about-content-box strong {
    color: var(--dark);

    font-weight: 800;
}


/* ==========================================================
   ADVANTAGES
========================================================== */

.advantages-col {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.advantage-card {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 20px;

    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: 15px;

    box-shadow:
        0 5px 22px
        rgba(0,0,0,0.045);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.advantage-card:hover {
    transform: translateY(-3px);

    box-shadow: var(--shadow-hover);
}

.advantage-icon {
    flex-shrink: 0;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);

    background:
        var(--primary-bg);

    border:
        1px solid
        var(--primary-border);

    border-radius: 12px;
}

.advantage-card h3 {
    margin: 0 0 5px;

    color: var(--dark);

    font-size: 1rem;

    font-weight: 800;
}

.advantage-card p {
    margin: 0;

    color: var(--text);

    font-size: 0.88rem;

    line-height: 1.65;
}


/* ==========================================================
   GRID 2
========================================================== */

.grid-2 {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 22px;
}


/* ==========================================================
   OGÓLNE KARTY
========================================================== */

.card {
    padding: 30px;

    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(255,102,0,0.20);

    box-shadow: var(--shadow-hover);
}

.card h3 {
    margin: 0 0 11px;

    color: var(--dark);

    font-size: 1.08rem;

    font-weight: 800;

    line-height: 1.35;
}

.card p {
    margin: 0;

    color: var(--text);

    font-size: 0.93rem;

    line-height: 1.8;
}


/* ==========================================================
   USŁUGI
========================================================== */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.service-card {
    position: relative;

    padding: 29px 25px;

    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--primary-hover)
        );

    opacity: 0;

    transition: opacity 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(255,102,0,0.20);

    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrap {
    width: 53px;
    height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    color: var(--primary);

    background:
        var(--primary-bg);

    border:
        1px solid
        var(--primary-border);

    border-radius: 14px;

    font-size: 1.25rem;
}

.service-card h3 {
    margin: 0 0 9px;

    color: var(--dark);

    font-size: 1.03rem;

    font-weight: 800;
}

.service-card p {
    margin: 0;

    color: var(--text);

    font-size: 0.91rem;

    line-height: 1.75;
}


/* ==========================================================
   OBSZAR DZIAŁANIA
========================================================== */

.area-towns {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 22px;
}

.area-towns span {
    display: inline-flex;

    align-items: center;

    padding: 7px 13px;

    color: var(--primary);

    background: #fff4e8;

    border:
        1px solid
        rgba(255,102,0,0.12);

    border-radius: 999px;

    font-size: 0.84rem;

    font-weight: 700;
}


/* ==========================================================
   CENNIK
========================================================== */

.pricing-wrapper {
    padding: 30px;

    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    overflow-x: auto;
}

.pricing-table {
    width: 100%;

    min-width: 650px;

    border-collapse: collapse;

    border-spacing: 0;
}

.pricing-table th {
    padding: 16px 17px;

    background: var(--dark);

    color: #ffffff;

    text-align: left;

    font-size: 0.88rem;

    font-weight: 800;
}

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

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

.pricing-table td {
    padding: 16px 17px;

    color: var(--text);

    border-bottom:
        1px solid
        #eeeeee;

    font-size: 0.90rem;

    vertical-align: middle;
}

.pricing-table tbody tr:last-child td {
    border-bottom: 0;
}

.pricing-table tbody tr:hover td {
    background: #fffaf6;
}

.price-value {
    color: var(--primary) !important;

    font-weight: 900 !important;

    white-space: nowrap;
}

.pricing-note {
    margin: 20px 0 0;

    color: var(--text-light);

    font-size: 0.82rem;

    line-height: 1.7;
}


/* ==========================================================
   BEZPIECZEŃSTWO
========================================================== */

.safety-box {
    max-width: 950px;

    margin: 0 auto;

    padding: 35px;

    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.safety-box > p {
    margin: 0 0 22px;

    color: var(--text);

    font-size: 0.97rem;

    line-height: 1.85;
}

.safety-list {
    margin: 0;

    padding: 0;

    list-style: none;
}

.safety-list li {
    position: relative;

    padding:
        8px 0
        8px 32px;

    color: var(--text);

    font-size: 0.93rem;

    line-height: 1.7;
}

.safety-list li::before {
    content: "✓";

    position: absolute;

    top: 8px;
    left: 0;

    width: 21px;
    height: 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);

    background:
        var(--primary-bg);

    border-radius: 50%;

    font-size: 0.72rem;

    font-weight: 900;
}

.seo-blockquote {
    margin-top: 25px;

    padding: 20px 22px;

    color: #555555;

    background: #fff7f0;

    border-left:
        4px solid
        var(--primary);

    border-radius:
        0 10px 10px 0;

    font-size: 0.92rem;

    font-style: italic;

    line-height: 1.75;
}


/* ==========================================================
   CTA
========================================================== */

.cta-block {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 38px 40px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-hover)
        );

    border-radius: var(--radius);

    box-shadow:
        0 15px 42px
        rgba(255,102,0,0.20);
}

.cta-text h2 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 1.65rem;

    font-weight: 900;

    line-height: 1.25;
}

.cta-text p {
    max-width: 700px;

    margin: 0;

    color: rgba(255,255,255,0.90);

    font-size: 0.94rem;

    line-height: 1.7;
}

.btn-white {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 15px 27px;

    color: var(--primary);

    background: #ffffff;

    border-radius: 12px;

    font-size: 0.98rem;

    font-weight: 900;

    white-space: nowrap;

    box-shadow:
        0 7px 20px
        rgba(0,0,0,0.12);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.btn-white:hover {
    transform: translateY(-2px);

    box-shadow:
        0 11px 28px
        rgba(0,0,0,0.17);
}


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

.footer {
    padding:
        45px 20px;

    background: #e8e7e5;

    text-align: center;
}

.footer-inner {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
}

.footer-title {
    margin-bottom: 18px;

    color: #444444;

    font-size: 0.95rem;

    font-weight: 800;
}

.footer-links {
    display: flex;

    flex-wrap: wrap;

    align-items: center;
    justify-content: center;

    gap: 10px 20px;
}

.footer-links a {
    color: var(--primary);

    font-size: 0.87rem;

    font-weight: 700;

    transition: color 0.2s ease;
}

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

.footer-copy {
    margin-top: 22px;

    color: #777777;

    font-size: 0.79rem;
}


/* ==========================================================
   STICKY CALL
========================================================== */

.sticky-call {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-hover)
        );

    border-radius: 50%;

    box-shadow:
        0 8px 25px
        rgba(255,102,0,0.35);

    font-size: 1.25rem;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.sticky-call:hover {
    transform: scale(1.07);

    box-shadow:
        0 12px 32px
        rgba(255,102,0,0.45);
}


/* ==========================================================
   RESPONSIVE — 1000 PX
========================================================== */

@media (max-width: 1000px) {

    #header {
        padding-left: 25px;
        padding-right: 25px;
    }

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

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

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

}


/* ==========================================================
   RESPONSIVE — 750 PX
========================================================== */

@media (max-width: 750px) {

    #header {
        min-height: 70px;

        padding:
            10px 18px;
    }

    .logo-main {
        font-size: 1.45rem;
    }

    .logo-sub {
        font-size: 0.58rem;
    }

    .hamburger {
        display: flex;
    }

    #menu {
        width: min(330px, 86vw);
    }

    .district-hero {
        min-height: 650px;

        padding:
            130px 18px
            70px;
    }

    .hero-premium-content h1 {
        font-size:
            clamp(2rem, 9vw, 3rem);
    }

    .hero-premium-content > p {
        font-size: 0.96rem;

        line-height: 1.7;
    }

    .section-wrap {
        padding:
            65px 18px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 1.85rem;
    }

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

    .cta-block {
        flex-direction: column;

        text-align: center;

        padding:
            30px 22px;
    }

    .cta-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-white {
        width: 100%;
    }

}


/* ==========================================================
   RESPONSIVE — 600 PX
========================================================== */

@media (max-width: 600px) {

    .hero-stats {
        padding:
            16px 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-card-icon {
        width: 43px;
        height: 43px;
    }

    .stat-card-info h3 {
        font-size: 1rem;
    }

    .district-hero {
        min-height: 610px;

        padding:
            120px 15px
            60px;
    }

    .hero-badge {
        font-size: 0.70rem;

        padding:
            7px 13px;
    }

    .hero-premium-content h1 {
        font-size: 2rem;

        letter-spacing: -0.5px;
    }

    .hero-premium-content > p {
        font-size: 0.91rem;
    }

    .hero-premium-btn {
        width: 100%;

        min-width: 0;

        padding:
            16px 20px;
    }

    .section-wrap {
        padding:
            55px 15px;
    }

    .section-header h2 {
        font-size: 1.65rem;
    }

    .section-subtitle {
        font-size: 0.92rem;
    }

    .about-content-box {
        padding:
            24px 20px;
    }

    .about-content-box p {
        font-size: 0.91rem;

        line-height: 1.78;
    }

    .advantage-card {
        padding:
            17px;
    }

    .services-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .service-card {
        padding:
            24px 20px;
    }

    .card {
        padding:
            23px 20px;
    }

    .pricing-wrapper {
        padding:
            18px;
    }

    .pricing-table {
        min-width: 600px;
    }

    .pricing-table th,
    .pricing-table td {
        padding:
            13px 12px;
    }

    .safety-box {
        padding:
            24px 20px;
    }

    .safety-list li {
        padding-left: 29px;

        font-size: 0.89rem;
    }

    .seo-blockquote {
        padding:
            17px 18px;
    }

    .cta-text h2 {
        font-size: 1.4rem;
    }

    .footer {
        padding:
            38px 16px;
    }

    .footer-links {
        gap:
            9px 14px;
    }

    .sticky-call {
        right: 16px;
        bottom: 16px;

        width: 54px;
        height: 54px;
    }

}


/* ==========================================================
   RESPONSIVE — 400 PX
========================================================== */

@media (max-width: 400px) {

    #menu {
        width: 90vw;
    }

    .logo-main {
        font-size: 1.3rem;
    }

    .district-hero {
        padding-top: 110px;
    }

    .hero-premium-content h1 {
        font-size: 1.8rem;
    }

    .hero-premium-note {
        font-size: 0.80rem !important;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .stat-card {
        gap: 10px;
    }

    .stat-card-info p {
        font-size: 0.75rem;
    }

}


/* ==========================================================
   DODATKOWE ZABEZPIECZENIE LINKÓW
========================================================== */

#header a,
#menu a,
.footer a {
    text-decoration: none;
}

#menu a {
    color: inherit;
}


/* ==========================================================
   FONT AWESOME — ZACHOWANIE IKON
========================================================== */

.fa,
.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands {
    line-height: 1;
}