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

:root {
    --black:        #000000;
    --graphite:     #000000;
    --graphite-2:   #000000;
    --graphite-3:   #000000;
    --line:         #E5E7EB;
    --bg:           #FFFFFF;
    --bg-soft:      #F8F9FA;
    --bg-section:   #F4F5F7;

    /* Akcenty */
    --yellow:       #F7BA03;
    --yellow-soft:  #FFF4CC;
    --red:          #EB0420;
    --red-dark:     #B8021A;
    --red-soft:     #FDE2E5;
    --blue:         #3066E3;
    --blue-dark:    #1F4FC2;

    /* Typografia */
    --font:         'Roboto', 'Segoe UI', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --maxw:         1200px;
    --gutter:       1.25rem;
    --radius:       12px;
    --radius-lg:    18px;
    --radius-sm:    8px;

    /* Cienie */
    --shadow-sm:    0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .08);
    --shadow-md:    0 4px 12px rgba(15, 23, 42, .08), 0 2px 4px rgba(15, 23, 42, .05);
    --shadow-lg:    0 20px 40px rgba(15, 23, 42, .12), 0 8px 16px rgba(15, 23, 42, .06);
    --shadow-cta:   0 12px 24px rgba(235, 4, 32, .25);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--graphite-2);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--red);
    text-decoration: none;
    transition: color .15s ease;
}
a:hover,
a:focus-visible {
    color: var(--black);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4 {
    color: var(--graphite);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

p {
    margin: 0 0 1em;
}
p:last-child {
    margin-bottom: 0;
}

strong { color: var(--graphite); font-weight: 700; }

:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 2px;
    border-radius: 4px;
}

/* --- Layout helpers ----------------------------------------- */
.container {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section {
    padding: 4.5rem 0;
}
.section--alt {
    background: var(--bg-section);
}

.section__header {
    max-width: 780px;
    margin: 0 auto 3rem;
    text-align: center;
}
.section__header--left {
    margin-inline: 0;
    text-align: left;
}

.section__title {
    font-size: clamp(1.75rem, 1.2rem + 2.5vw, 2.6rem);
    margin-bottom: 1rem;
}

.section__lead {
    font-size: 1.0625rem;
    color: var(--graphite-3);
    max-width: 65ch;
    margin-inline: auto;
}
.section__header--left .section__lead {
    margin-inline: 0;
}

.eyebrow {
    display: inline-block;
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    background: var(--red-soft);
    padding: .35rem .75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.hl {
    color: var(--red);
    position: relative;
}

/* --- Buttons ------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .85rem 1.4rem;
    border-radius: var(--radius);
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
    white-space: nowrap;
}
.btn:hover {
    transform: translateY(-1px);
}
.btn:active {
    transform: translateY(0);
}

.btn--xl {
    padding: 1.05rem 1.6rem;
    font-size: 1.0625rem;
}

.btn--primary {
    background: var(--red);
    color: #FFF;
}
.btn--primary:hover,
.btn--primary:focus-visible {
    background: var(--red-dark);
    color: #FFF;
}

.btn--secondary {
    background: transparent;
    color: var(--red);
    border-color: var(--red);
}
.btn--secondary:hover,
.btn--secondary:focus-visible {
    background: var(--red);
    color: #FFF;
    border-color: var(--red);
}

.btn--ghost {
    background: transparent;
    color: var(--black);
    border-color: var(--line);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
    background: var(--black);
    color: #FFF;
    border-color: var(--black);
}

.btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.2em;
    height: 1.2em;
    flex-shrink: 0;
}
.btn__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}
.btn__label {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-align: left;
}
.btn__main { font-size: 1em; }
.btn__sub  { font-size: .8125em; font-weight: 500; opacity: .9; }

/* --- Header -------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--line);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 72px;
    padding-block: .5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--graphite);
    text-decoration: none;
    font-weight: 800;
    flex-shrink: 0;
}
.brand__logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--bg-soft);
    padding: 4px;
}
.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand__name {
    font-size: 1rem;
    color: var(--graphite);
    letter-spacing: -0.01em;
}
.brand__city {
    font-size: .75rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.site-nav {
    margin-left: auto;
}
.site-nav__list {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.site-nav__list a {
    color: var(--graphite-2);
    font-weight: 600;
    font-size: .95rem;
    padding: .35rem 0;
    border-bottom: 2px solid transparent;
}
.site-nav__list a:hover,
.site-nav__list a:focus-visible {
    color: var(--black);
    border-bottom-color: var(--red);
}

.site-header__cta {
    flex-shrink: 0;
}

/* mobile menu toggle (hidden on desktop) */
.nav-toggle { display: none; }
.nav-toggle__btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: auto;
    border-radius: 8px;
    background: var(--bg-soft);
}
.nav-toggle__btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--graphite);
    transition: transform .2s ease, opacity .2s ease;
}

/* --- Hero ---------------------------------------------------- */
.hero {
    position: relative;
    padding: 3rem 0 4.5rem;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.hero__inner {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .85rem;
    font-weight: 700;
    color: var(--graphite-2);
    background: #FFF;
    padding: .5rem .9rem;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.25rem;
    letter-spacing: .02em;
}
.hero__dot {
    width: 10px;
    height: 10px;
    background: #16A34A;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, .18);
}

.hero__title {
    font-size: clamp(2rem, 1.1rem + 4.2vw, 3.5rem);
    margin-bottom: 1.1rem;
    color: var(--black);
}

.hero__lead {
    font-size: 1.0625rem;
    color: var(--graphite-2);
    max-width: 56ch;
    margin-bottom: 1.5rem;
}

.hero__bullets {
    display: grid;
    gap: .6rem;
    margin-bottom: 2rem;
}
.hero__bullets li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--graphite-2);
}
.hero__bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--blue);
    color: #FFFFFF;
    font-weight: 800;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-bottom: 1.75rem;
}

.hero__areas {
    font-size: .95rem;
    color: var(--graphite-3);
    padding-top: 1.25rem;
    border-top: 1px dashed var(--line);
}
.hero__areas strong { color: var(--graphite); }

.hero__visual {
    position: relative;
}
.hero__image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.hero__badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--blue);
    color: #FFF;
    padding: 1rem 1.2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: .8rem;
}
.hero__badge-big {
    font-size: 1.85rem;
    font-weight: 800;
    color: #FFF;
    line-height: 1;
}
.hero__badge-small {
    font-size: .75rem;
    font-weight: 600;
    color: #FFF;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* --- Trust strip --------------------------------------------- */
.trust {
    background: var(--blue);
    color: #FFF;
    padding: 1.75rem 0;
}
.trust__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1.5rem;
    text-align: center;
}
.trust__item {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.trust__num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFF;
    line-height: 1.1;
}
.trust__txt {
    font-size: .85rem;
    color: rgba(255, 255, 255, .9);
    letter-spacing: .01em;
}

/* --- About --------------------------------------------------- */
.about__inner {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
.about__image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.about__content .section__title {
    text-align: left;
    margin-bottom: 1.25rem;
}
.about__content p {
    margin-bottom: 1rem;
}
.about__content .btn {
    margin-top: .75rem;
}

/* --- Services ------------------------------------------------ */
.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.service-card {
    background: #FFF;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: transform .15s ease, box-shadow .2s ease, border-color .15s ease;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}
.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--blue);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}
.service-card__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.service-card__title {
    font-size: 1.2rem;
    margin-bottom: .6rem;
}
.service-card p {
    color: var(--graphite-2);
    flex-grow: 1;
}
.service-card__link {
    display: inline-flex;
    align-items: center;
    margin-top: 1.1rem;
    font-weight: 700;
    font-size: .95rem;
    color: var(--red);
}
.service-card__link:hover {
    color: var(--black);
}

/* --- Process ------------------------------------------------- */
.process__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    counter-reset: process;
}
.process__step {
    position: relative;
    background: #FFF;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem 1.5rem;
    padding-top: 2.5rem;
}
.process__num {
    position: absolute;
    top: -22px;
    left: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--blue);
    color: #FFF;
    font-size: 1.35rem;
    font-weight: 800;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}
.process__title {
    font-size: 1.15rem;
    margin-bottom: .5rem;
}
.process__step p {
    color: var(--graphite-2);
    font-size: .98rem;
}

/* --- Emergency CTA ------------------------------------------ */
.emergency {
    background: var(--red);
    color: #FFFFFF;
    padding: 3rem 0;
}
.emergency__inner {
    display: grid;
    gap: 2rem;
    align-items: center;
}
.emergency__tag {
    display: inline-block;
    background: #FFFFFF;
    color: var(--red);
    font-size: .8rem;
    font-weight: 700;
    padding: .35rem .75rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .9rem;
}
.emergency__title {
    font-size: clamp(1.5rem, 1rem + 2vw, 2.25rem);
    color: #FFFFFF;
    margin-bottom: .75rem;
}
.emergency__content p {
    color: #FFFFFF;
    font-size: 1.05rem;
    max-width: 60ch;
}
.emergency__cta {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}
.emergency .btn--primary {
    background: #FFFFFF;
    color: var(--red);
    border-color: #FFFFFF;
}
.emergency .btn--primary:hover,
.emergency .btn--primary:focus-visible {
    background: var(--red-dark);
    color: #FFFFFF;
    border-color: #FFFFFF;
}
.emergency .btn--ghost {
    background: transparent;
    border-color: #FFFFFF;
    color: #FFFFFF;
}
.emergency .btn--ghost:hover,
.emergency .btn--ghost:focus-visible {
    background: #FFFFFF;
    color: var(--red);
    border-color: #FFFFFF;
}

/* --- Benefits ------------------------------------------------ */
.benefits__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.benefit {
    background: #FFF;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform .15s ease, box-shadow .2s ease;
}
.benefit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.benefit__icon {
    width: 48px;
    height: 48px;
    background: var(--blue);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.benefit__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.benefit__title {
    font-size: 1.05rem;
    margin-bottom: .4rem;
}
.benefit p {
    font-size: .95rem;
    color: var(--graphite-2);
}

/* --- Areas --------------------------------------------------- */
.areas__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.area-card {
    background: #FFF;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: border-color .15s ease, transform .15s ease;
}
.area-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
}
.area-card--primary {
    background: rgb(245, 245, 245);
    border: 2px solid var(--red);
}
.area-card--primary:hover {
    border-color: var(--red-dark);
}
.area-card__title {
    font-size: 1.25rem;
    margin-bottom: .5rem;
    color: var(--graphite);
}
.area-card p {
    color: var(--graphite-2);
    font-size: .95rem;
}

.areas__extra {
    background: var(--blue);
    color: #FFF;
    padding: 1.75rem 1.75rem;
    border-radius: var(--radius-lg);
}
.areas__extra-title {
    color: #FFF;
    font-size: 1.15rem;
    margin-bottom: .5rem;
}
.areas__extra p {
    color: rgba(255, 255, 255, .92);
}
.areas__extra strong { color: #FFF; font-weight: 700; }

/* --- FAQ ----------------------------------------------------- */
.faq__inner {
    display: grid;
    gap: 2.5rem;
}
.faq__list {
    display: grid;
    gap: .85rem;
}
.faq__item {
    background: #FFF;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .15s ease, box-shadow .2s ease;
}
.faq__item[open] {
    border-color: var(--blue);
    box-shadow: var(--shadow-sm);
}
.faq__q {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 3rem 1.1rem 1.25rem;
    font-weight: 700;
    color: var(--graphite);
    position: relative;
    font-size: 1.02rem;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
    content: "+";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--blue);
    color: #FFF;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
    transition: transform .2s ease, background .15s ease;
}
.faq__item[open] .faq__q::after {
    content: "−";
    background: var(--blue-dark);
    color: #FFF;
}
.faq__a {
    padding: 0 1.25rem 1.25rem;
    color: var(--graphite-2);
}
.faq__a p { font-size: .98rem; }

/* --- Final CTA ----------------------------------------------- */
.final-cta {
    background: var(--black);
    color: #FFF;
    padding: 4rem 0;
    text-align: center;
}
.final-cta__title {
    color: #FFF;
    font-size: clamp(1.5rem, 1rem + 2.2vw, 2.4rem);
    max-width: 22ch;
    margin: 0 auto 1rem;
}
.final-cta__lead {
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 2rem;
}
.final-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    justify-content: center;
}
.final-cta .btn--ghost {
    color: #FFF;
    border-color: rgba(255,255,255,.3);
}
.final-cta .btn--ghost:hover {
    background: #FFF;
    color: var(--black);
}

/* --- Footer -------------------------------------------------- */
.site-footer {
    background: rgb(245, 245, 245);
    color: var(--black);
    padding: 3.5rem 0 1.5rem;
    position: relative;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin-bottom: 2.5rem;
}
.site-footer__col--brand {
    max-width: 480px;
}
.brand--footer .brand__name { color: var(--black); }
.brand--footer .brand__city { color: var(--red); }
.brand--footer .brand__logo {
    background: #FFFFFF;
}
.site-footer__about {
    margin-top: 1rem;
    color: var(--black);
    font-size: .95rem;
}
.site-footer__title {
    color: var(--black);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1rem;
    font-weight: 700;
}
.site-footer__list { display: grid; gap: .5rem; }
.site-footer__list--cols {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
}
.site-footer__list li {
    color: var(--black);
    font-size: .92rem;
}
.site-footer__label {
    display: inline-block;
    min-width: 70px;
    color: var(--black);
    font-size: .85rem;
    margin-right: .35rem;
    opacity: .7;
}
.site-footer__link {
    color: var(--black);
}
.site-footer__link:hover { color: var(--red); }
.site-footer__link--strong {
    color: var(--red);
    font-weight: 700;
    font-size: 1.05rem;
}

.site-footer__bottom {
    border-top: 1px solid rgba(0,0,0,.15);
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    align-items: flex-start;
}
.site-footer__copy { color: var(--black); font-size: .88rem; }
.site-footer__legal { color: var(--black); font-size: .82rem; opacity: .7; }

/* --- Floating mobile call button ---------------------------- */
.floating-call {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 90;
    display: none;
    align-items: center;
    gap: .5rem;
    background: var(--red);
    color: #FFF;
    padding: .9rem 1.1rem;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}
.floating-call:hover { color: #FFF; background: var(--red-dark); }
.floating-call__icon {
    display: inline-flex;
    width: 1.1rem;
    height: 1.1rem;
}
.floating-call__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}
.floating-call__label { font-size: .95rem; }

/* =============================================================
   Responsive
   ============================================================= */

/* Tablet --------------------------------------------------- */
@media (min-width: 640px) {
    .trust__grid { grid-template-columns: repeat(4, 1fr); }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .process__list { grid-template-columns: repeat(2, 1fr); }
    .benefits__grid { grid-template-columns: repeat(2, 1fr); }
    .areas__grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* Small desktop -------------------------------------------- */
@media (min-width: 880px) {
    .services__grid { grid-template-columns: repeat(3, 1fr); }
    .benefits__grid { grid-template-columns: repeat(4, 1fr); }
    .areas__grid { grid-template-columns: repeat(3, 1fr); }
    .process__list { grid-template-columns: repeat(4, 1fr); }

    .hero__inner { grid-template-columns: 1.1fr 1fr; }
    .about__inner { grid-template-columns: 1fr 1.1fr; }
    .emergency__inner { grid-template-columns: 1.4fr 1fr; }
    .faq__inner { grid-template-columns: 1fr 1.4fr; align-items: start; }

    .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
    .site-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .section { padding: 5.5rem 0; }
    .hero { padding: 4.5rem 0 6rem; }

    .floating-call { display: none !important; }
}

/* Large desktop ------------------------------------------- */
@media (min-width: 1100px) {
    :root { --gutter: 2rem; }
}

/* --- Mobile menu (below 880px) ------------------------------ */
@media (max-width: 879px) {
    .site-header__inner {
        gap: .5rem;
        min-height: 64px;
        flex-wrap: nowrap;
    }
    .brand {
        flex: 1 1 auto;
        min-width: 0;
        gap: .5rem;
    }
    .brand__logo {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }
    .brand__text {
        min-width: 0;
        overflow: hidden;
    }
    .brand__name {
        font-size: .9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFF;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md);
        transform: translateY(-200%);
        transition: transform .25s ease;
        margin: 0;
        padding: .5rem 0;
        z-index: 90;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }
    .site-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 var(--gutter);
    }
    .site-nav__list a {
        display: block;
        padding: .9rem 0;
        border-bottom: 1px solid var(--line);
    }
    .site-nav__list li:last-child a { border-bottom: none; }

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

    .nav-toggle__btn {
        display: flex;
        order: 3;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        margin-left: 0;
    }
    .site-header__cta {
        order: 2;
        padding: .55rem .85rem;
        flex-shrink: 0;
    }
    .site-header__cta .btn__sub { display: none; }
    .site-header__cta .btn__icon { width: 1rem; height: 1rem; }
    .site-header__cta .btn__main { font-size: .85rem; }

    .floating-call { display: inline-flex; }
}

/* --- Small phones (<= 480px) -------------------------------- */
@media (max-width: 480px) {
    .site-header__inner {
        gap: .4rem;
        min-height: 60px;
    }
    .brand__text { display: none; }
    .brand__logo { width: 38px; height: 38px; padding: 3px; }
    .site-header__cta { padding: .5rem .75rem; }
    .site-header__cta .btn__main { font-size: .8rem; }

    .hero { padding: 2rem 0 3rem; }
    .hero__cta .btn { width: 100%; }
    .hero__badge { left: 0; bottom: -16px; padding: .75rem 1rem; }
    .hero__badge-big { font-size: 1.5rem; }
    .emergency__cta .btn { width: 100%; }
    .final-cta__buttons .btn { width: 100%; }
    .section { padding: 3rem 0; }
}

/* --- Very small phones (<= 360px) --------------------------- */
@media (max-width: 360px) {
    :root { --gutter: .85rem; }
    .site-header__inner { gap: .35rem; min-height: 56px; }
    .brand__logo { width: 34px; height: 34px; }
    .site-header__cta { padding: .45rem .55rem; gap: .35rem; }
    .site-header__cta .btn__icon { width: .95rem; height: .95rem; }
    .site-header__cta .btn__main { font-size: .75rem; }
    .nav-toggle__btn { width: 36px; height: 36px; }

    .hero__title { font-size: 1.65rem; }
    .hero__bullets li { padding-left: 1.6rem; font-size: .92rem; }
    .hero__badge-big { font-size: 1.3rem; }
    .hero__badge-small { font-size: .65rem; }
    .section__title { font-size: 1.5rem; }
    .trust__num { font-size: 1.25rem; }
    .service-card, .benefit, .area-card, .process__step { padding: 1.25rem; }
}

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