/* Mobile-first styles for Anna's Kleening */

:root {
    --navy: #08234f;
    --blue: #0866d8;
    --light-blue: #eef7ff;
    --white: #ffffff;
    --text: #10264a;
    --radius: 1.25rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
}

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

button,
input,
select,
textarea {
    font: inherit;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* =========================================================
   TYPOGRAPHY
   Adobe Fonts: Inter 18pt
   ========================================================= */

body,
p,
li,
label,
input,
select,
textarea {
    font-family: "sofia-pro", sans-serif;
    font-weight: 300;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero__title,
.hero__eyebrow,
.button,
button,
.site-header__contact {
    font-family: "korolev-compressed", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/* =========================================================
   HEADER
   Centered logo with yellow decorative details
   ========================================================= */

.site-header {
    background: #ffffff;
}

.site-header__container {
    width: 100%;
    padding: 0.75rem 1rem;

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

.site-header__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    text-decoration: none;
}

.site-header__brand::before,
.site-header__brand::after {
    content: "✦";
    color: #fdc74d;
    font-size: 1.25rem;
    line-height: 1;
}

.site-header__logo {
    display: block;
    width: 15rem;
    max-width: 100%;
    height: auto;
}


/* Smaller screens */

@media (max-width: 30rem) {
    .site-header__container {
        padding: 0.65rem 0.75rem;
    }

    .site-header__brand {
        gap: 0.5rem;
    }

    .site-header__brand::before,
    .site-header__brand::after {
        font-size: 1rem;
    }

    .site-header__logo {
        width: 16rem;
    }
}

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

.hero {
    position: relative;
    min-height: 37rem;
    overflow: hidden;
    padding: 3.25rem 2rem;

    background:
        url("../images/hero-background.webp")
        center / cover no-repeat;
}


/* =========================================================
   LEFT CONTENT COLUMN
   ========================================================= */

.hero__content {
    position: relative;
    z-index: 2;
    width: 46%;
}

.hero__title {
    margin: 0;
    color: #082653;

    font-size: clamp(3.2rem, 6.2vw, 5.4rem);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.hero__description {
    margin: 1.35rem 0 0;
    color: #344d70;

    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 400;
    line-height: 1.45;
}


/* =========================================================
   LARGE RIGHT-SIDE ILLUSTRATION
   Independent from the content column
   ========================================================= */

.hero__illustration {
    position: absolute;
    z-index: 1;

    top: 1rem;
    right: 0;

    width: 57%;
    height: 35rem;

    background:
        url("../images/annas-icon.svg")
        top right / contain no-repeat;

    pointer-events: none;
}


/* =========================================================
   BUTTONS
   Stay inside the left column
   ========================================================= */

.hero__buttons {
    width: 100%;
    margin-top: 2rem;

    display: grid;
    gap: 0.85rem;
}

.hero__button {
    min-height: 4.8rem;

    display: grid;
    grid-template-columns: 2.4rem minmax(0, 1fr) 1.4rem;
    align-items: center;
    gap: 0.8rem;

    padding: 0.85rem 1.4rem;

    border: 2px solid transparent;
    border-radius: 50px;

    font-size: clamp(1.05rem, 1.9vw, 1.35rem);
    font-weight: 700;
    line-height: 1;

    text-decoration: none;
}


/* Primary button */

.hero__button--primary {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #1294ff 0%,
            #0874e6 48%,
            #0750b8 100%
        );

    box-shadow:
        0 0.8rem 1.8rem rgba(7, 82, 190, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}


/* Secondary button */

.hero__button--secondary {
    color: #0865d2;
    border-color: #0868df;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fbff 55%,
            #edf6ff 100%
        );

    box-shadow:
        0 0.55rem 1.35rem rgba(24, 103, 190, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero__button-icon {
    display: grid;
    place-items: center;

    font-size: 1.5rem;
}

.hero__button-label {
    justify-self: center;
    text-align: center;
    font-family: "korolev-compressed", sans-serif;
}

.hero__button-arrow {
    justify-self: end;

    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
}


/* =========================================================
   TABLET / MOBILE
   Still keeps two columns like the mockup
   ========================================================= */

@media (max-width: 900px) {
    .hero {
        min-height: 34rem;
        padding: 2.5rem 1.5rem;
    }

    .hero__content {
        width: 48%;
    }

    .hero__title {
        font-size: clamp(2.8rem, 6.5vw, 4rem);
    }

    .hero__description {
        font-size: clamp(1rem, 2.4vw, 1.25rem);
    }

    .hero__illustration {
        top: 1rem;
        right: 0;

        width: 55%;
        height: 29rem;
    }

    .hero__button {
        min-height: 4.25rem;
        font-size: 1.3rem;
    }
}


/* =========================================================
   LARGE MOBILE ONLY
   Makes the hero taller and moves the Nextdoor badge lower.
   Does not affect screens 600px wide or smaller.
   ========================================================= */

@media (min-width: 601px) and (max-width: 900px) {
    .hero {
        min-height: 43rem;
    }

    .hero__nextdoor {
        bottom: 2rem;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {
    .hero {
        min-height: 20rem;
        padding: 2rem 1rem 2rem;
    }

    .hero__content {
        width: 55%;
    }

    .hero__title {
        font-size: 2.7rem;
        line-height: 0.98;
        letter-spacing: 0.02em;
    }

    .hero__description {
        margin-top: 0.9rem;
        font-size: clamp(0.78rem, 3vw, 0.95rem);
    }

    .hero__illustration {
        top: 2rem;
        right: -2rem;

        width: 65%;
        height: 21rem;
    }

    .hero__buttons {
        margin-top: 1.25rem;
        gap: 0.65rem;
    }

    .hero__button {
        min-height: 3.65rem;

        grid-template-columns: 1.6rem minmax(0, 1fr) 1rem;
        gap: 0.45rem;

        padding: 0.65rem 0.8rem;
        border-radius: 50px;

        font-size: 1.3rem;
    }

    .hero__button-icon {
        font-size: 1rem;
    }

    .hero__button-arrow {
        font-size: 1.5rem;
    }
}

/* =========================================================
   TALL MOBILE PHONES
   Applies only to taller phones while preserving the
   existing medium and small-phone layout.
   ========================================================= */

@media (max-width: 600px) and (min-height: 750px) {
    .hero {
        min-height: 25rem;
        padding-bottom: 3rem;
    }

    .hero__nextdoor {
        transform: translateY(0.5rem);
    }
}

/* =========================================================
   NEXTDOOR RECOMMENDATION
   Positioned under the illustration, beside the buttons
   ========================================================= */

.hero__nextdoor {
    position: absolute;
    z-index: 2;
    right: 3%;
    bottom: 2rem;
    width: 38%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__nextdoor img {
    display: block;
    width: 80%;
    height: auto;
}

/* Smaller mobile screens */
@media (max-width: 43.75rem) {
    .hero__nextdoor {
        right: 2%;
        bottom: 2rem;
        width: 42%;
    }
}

/* =========================================================
   SERVICES
   ========================================================= */

.services {
    padding: 2rem 1rem 2.5rem;
    background: #ffffff;
}

.section-container {
    width: 100%;
    margin-inline: auto;
}

.services__title {
    margin: 0 0 1.25rem;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;

    color: var(--navy);

    font-family: "inter-18pt", sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.services__title span {
    color: var(--blue);
    font-size: 1rem;
}

.services__list {
    display: grid;
    gap: 0.5rem;
}


/* Individual accordion card */

.service {
    overflow: hidden;

    border: 0.0625rem solid rgba(8, 102, 216, 0.06);
    border-radius: 1.25rem;

    background: #ffffff;

    box-shadow:
        0 0.5rem 1.5rem rgba(8, 35, 79, 0.07);
}


/* Accordion button */

.service__button {
    width: 100%;
    min-height: 7rem;

    display: grid;
    grid-template-columns: 8rem minmax(0, 1fr) 2rem;
    align-items: center;
    gap: 1rem;

    padding: 0.5rem 1.5rem 0.5rem 0.75rem;

    color: var(--navy);
    background: transparent;
    border: 0;

    text-align: left;
    cursor: pointer;
}

.service__icon {
    display: block;

    width: 7rem;
    height: 6rem;

    object-fit: contain;
    object-position: center;
}

.service__name {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
}

.service__arrow {
    display: grid;
    place-items: center;

    color: var(--blue);

    transition: transform 180ms ease;
}

.service__arrow svg {
    width: 1.75rem;
    height: 1.75rem;
}

.service__button[aria-expanded="true"] .service__arrow {
    transform: rotate(180deg);
}


/* Open accordion content */

.service__content {
    padding: 0 1.5rem 1.5rem 9.75rem;
    color: #344d70;
}

.service__content p {
    margin: 0 0 0.9rem;
    font-size: 1rem;
    line-height: 1.55;
}

.service__content a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}

.service__content a:hover {
    text-decoration: underline;
}


/* Keyboard focus */

.service__button:focus-visible {
    outline: 0.1875rem solid rgba(8, 102, 216, 0.25);
    outline-offset: -0.1875rem;
}


/* Smaller phones */

@media (max-width: 30rem) {
    .services {
        padding-inline: 0.75rem;
    }

    .services__title {
        font-size: 1.5rem;
    }

    .service__button {
        min-height: 6rem;
        grid-template-columns: 6.5rem minmax(0, 1fr) 1.5rem;
        gap: 0.75rem;
        padding: 0.4rem 1rem 0.4rem 0.5rem;
    }

    .service__icon {
        width: 6rem;
        height: 5rem;
    }

    .service__name {
        font-size: 1.6rem;
    }

    .service__arrow svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .service__content {
        padding: 0 1rem 1.25rem;
    }
}

/* =========================================================
   FREE QUOTE BANNER
   ========================================================= */

.quote-banner {
    padding: 1.5rem 1rem;
    background: #ffffff;
}

.quote-banner__inner {
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr);
    align-items: center;
    gap: 1rem;

    padding: 1.5rem;

    border: 0.0625rem solid rgba(8, 102, 216, 0.1);
    border-radius: 1.5rem;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.96),
            rgba(232, 245, 255, 0.92)
        ),
        url("../images/hero-background.webp")
        center / cover no-repeat;
}


/* Quote icon */

.quote-banner__icon {
    display: grid;
    place-items: center;
    color: var(--blue);
}

.quote-banner__icon svg {
    width: 4rem;
    height: 4rem;
}


/* Quote text */

.quote-banner__content h2 {
    margin: 0;

    color: var(--blue);

    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.15;
}

.quote-banner__content p {
    margin: 0.65rem 0 0;

    color: var(--text);

    font-size: 1rem;
    line-height: 1.5;
}


/* Quote banner button */

.quote-banner__button {
    grid-column: 1 / -1;

    width: 100%;
    min-height: 4.8rem;
    margin-top: 0.25rem;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 1.4rem;
    align-items: center;
    gap: 0.8rem;

    padding: 0.85rem 1.4rem;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #1294ff 0%,
            #0874e6 48%,
            #0750b8 100%
        );

    border: 2px solid transparent;
    border-radius: 50px;

    box-shadow:
        0 0.8rem 1.8rem rgba(7, 82, 190, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);

    font-family: "korolev-compressed", sans-serif;
    font-size: clamp(1.05rem, 1.9vw, 1.35rem);
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    text-decoration: none;

    cursor: pointer;
}

.quote-banner__button span:first-child {
    justify-self: center;
    text-align: center;
}

.quote-banner__button-arrow {
    justify-self: end;

    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
}


/* Tablet */

@media (max-width: 900px) {
    .quote-banner__button {
        min-height: 4.25rem;
        font-size: 1.3rem;
    }
}


/* Small mobile */

@media (max-width: 600px) {
    .quote-banner__button {
        min-height: 3.65rem;

        grid-template-columns: minmax(0, 1fr) 1rem;
        gap: 0.45rem;

        padding: 0.65rem 0.8rem;

        font-size: 1.3rem;
    }

    .quote-banner__button-arrow {
        font-size: 1.5rem;
    }
}


/* Larger screens */

@media (min-width: 48rem) {
    .quote-banner__inner {
        grid-template-columns: 6rem minmax(0, 1fr) auto;
        gap: 1.5rem;

        padding: 1.75rem 2rem;
    }

    .quote-banner__button {
        grid-column: auto;

        width: auto;
        min-width: 16rem;
        margin-top: 0;
    }
}

/* =========================================================
   QUOTE FORM POPUP
   ========================================================= */

.quote-modal {
    width: calc(100% - 2rem);
    max-width: 32rem;
    max-height: calc(100vh - 2rem);

    padding: 0;
    overflow-y: auto;

    color: var(--text);
    background: #ffffff;

    border: 0;
    border-radius: 1.5rem;

    box-shadow: 0 1.5rem 4rem rgba(8, 35, 79, 0.25);
}

.quote-modal::backdrop {
    background: rgba(8, 35, 79, 0.7);
    backdrop-filter: blur(0.2rem);
}

.quote-modal__content {
    position: relative;
    padding: 2rem 1.5rem;
}

.quote-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.9rem;

    width: 2.5rem;
    height: 2.5rem;
    padding: 0;

    display: grid;
    place-items: center;

    color: var(--navy);
    background: var(--light-blue);

    border: 0;
    border-radius: 50%;

    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
}

.quote-modal h2 {
    margin: 0;
    padding-right: 2.5rem;

    color: var(--blue);

    font-size: 1.75rem;
    line-height: 1.15;
}

.quote-modal__intro {
    margin: 0.65rem 0 1.5rem;
    line-height: 1.5;
}

.quote-modal form {
    display: grid;
    gap: 0.65rem;
}

.quote-modal label {
    margin-top: 0.35rem;
    font-weight: 700;
}

.quote-modal input,
.quote-modal select,
.quote-modal textarea {
    width: 100%;
    padding: 0.85rem 1rem;

    color: var(--text);
    background: #ffffff;

    border: 0.125rem solid #d6e8f8;
    border-radius: 0.75rem;
}

.quote-modal input:focus,
.quote-modal select:focus,
.quote-modal textarea:focus {
    border-color: var(--blue);
    outline: none;
}

.quote-modal textarea {
    resize: vertical;
}

.quote-modal__submit {
    min-height: 3.75rem;
    margin-top: 0.75rem;
    padding: 0.8rem 1.25rem;

    color: #ffffff;
    background: linear-gradient(
        135deg,
        #1598ff 0%,
        #0875e7 48%,
        #0750b8 100%
    );

    border: 0;
    border-radius: 1rem;

    font-weight: 700;
    cursor: pointer;
}

.form-honeypot {
    position: absolute;
    left: -9999rem;
}

/* =========================================================
   CALL TO BOOK CTA
   ========================================================= */

.call-cta {
    padding: 1.5rem 1rem 2.5rem;
    background: #ffffff;
}

.call-cta__button {
    width: 100%;
    min-height: 8rem;

    display: grid;
    grid-template-columns: 6.5rem minmax(0, 1fr) 2rem;
    align-items: center;
    gap: 1.25rem;

    padding: 1.25rem 1.75rem;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0755bd 0%,
            #0874e6 50%,
            #0750b8 100%
        );

    border: 0.125rem solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;

    box-shadow:
        0 0.8rem 1.8rem rgba(7, 82, 190, 0.22),
        inset 0 0.0625rem 0 rgba(255, 255, 255, 0.25);

    text-decoration: none;
}

.call-cta__icon {
    width: 6rem;
    height: 6rem;

    display: grid;
    place-items: center;

    color: var(--navy);
    background: #ffffff;

    border-radius: 50%;
}

.call-cta__icon svg {
    width: 2.75rem;
    height: 2.75rem;
}

.call-cta__content {
    min-width: 0;

    display: grid;
    gap: 0.35rem;
}

.call-cta__title,
.call-cta__phone {
    display: block;

    font-family: "korolev-compressed", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
}

.call-cta__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.call-cta__phone {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
}

.call-cta__arrow {
    justify-self: end;

    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
}


/* Small mobile */

@media (max-width: 37.5rem) {
    .call-cta {
        padding: 1rem 0.75rem 2rem;
    }

    .call-cta__button {
        min-height: 7rem;

        grid-template-columns: 5rem minmax(0, 1fr) 1.25rem;
        gap: 0.85rem;

        padding: 1rem;

        border-radius: 1.25rem;
    }

    .call-cta__icon {
        width: 4.75rem;
        height: 4.75rem;
    }

    .call-cta__icon svg {
        width: 2.25rem;
        height: 2.25rem;
    }

    .call-cta__title {
        font-size: 1.65rem;
    }

    .call-cta__phone {
        font-size: 1.85rem;
    }

    .call-cta__arrow {
        font-size: 3rem;
    }
}


/* Very small mobile */

@media (max-width: 24rem) {
    .call-cta__button {
        grid-template-columns: 4.25rem minmax(0, 1fr) 1rem;
        gap: 0.65rem;

        padding: 0.85rem;
    }

    .call-cta__icon {
        width: 4rem;
        height: 4rem;
    }

    .call-cta__icon svg {
        width: 1.9rem;
        height: 1.9rem;
    }

    .call-cta__title {
        font-size: 1.4rem;
    }

    .call-cta__phone {
        font-size: 1.55rem;
    }

    .call-cta__arrow {
        font-size: 2.5rem;
    }
}

/* =========================================================
   TRUST AND NEXTDOOR SECTION
   ========================================================= */

.trust-banner {
    padding: 1.5rem 1rem;
    background: #ffffff;
}

.trust-banner__inner {
    position: relative;
    overflow: hidden;

    min-height: 11rem;
    padding: 1.5rem;

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

    border: 0.0625rem solid rgba(8, 102, 216, 0.12);
    border-radius: 1.5rem;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.98),
            rgba(238, 247, 255, 0.88)
        );

    box-shadow:
        0 0.5rem 1.5rem rgba(8, 35, 79, 0.06);
}


/* Five stars */

.trust-banner__stars {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;

    color: #fbc657;

    font-size: 2.5rem;
    line-height: 1;
}


/* Main rating text */

.trust-banner__rating {
    position: relative;
    z-index: 2;

    margin: 0.75rem 0 0;

    color: var(--navy);

    font-family: "korolev-compressed", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
}

.trust-banner__rating strong {
    color: #198b3a;
    font-weight: 700;
}


/* Trust details */

.trust-banner__details {
    position: relative;
    z-index: 2;

    margin: 0.45rem 0 0;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;

    color: var(--navy);

    font-size: 1.25rem;
    line-height: 1.3;
    text-align: center;
}


/* Large decorative bubbles */

.trust-banner__bubble {
    position: absolute;

    width: 3.6rem;
    height: 3.6rem;

    border: 0.15rem solid rgba(82, 158, 245, 0.25);
    border-radius: 50%;

    background:
        radial-gradient(
            circle at 34% 28%,
            rgba(255, 255, 255, 1) 0 10%,
            rgba(190, 225, 255, 0.6) 12%,
            rgba(255, 255, 255, 0.28) 52%,
            rgba(93, 169, 255, 0.1) 100%
        );

    box-shadow:
        inset 0 0 0.75rem rgba(82, 158, 245, 0.12),
        0 0.2rem 0.5rem rgba(82, 158, 245, 0.08);
}

.trust-banner__bubble::before {
    content: "";

    position: absolute;
    top: 20%;
    left: 27%;

    width: 0.7rem;
    height: 0.7rem;

    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
}


/* Left large bubble */

.trust-banner__bubble--left {
    top: 1.25rem;
    left: 2rem;
}


/* Left small bubble */

.trust-banner__bubble--left::after {
    content: "";

    position: absolute;
    top: 4.45rem;
    left: 0.7rem;

    width: 1.35rem;
    height: 1.35rem;

    border: 0.1rem solid rgba(82, 158, 245, 0.32);
    border-radius: 50%;

    background:
        radial-gradient(
            circle at 34% 28%,
            rgba(255, 255, 255, 1) 0 12%,
            rgba(190, 225, 255, 0.55) 14%,
            rgba(255, 255, 255, 0.25) 56%,
            rgba(93, 169, 255, 0.12) 100%
        );
}


/* Right large bubble */

.trust-banner__bubble--right {
    top: 1.25rem;
    right: 2rem;
}


/* Right small bubble */

.trust-banner__bubble--right::after {
    content: "";

    position: absolute;
    top: 4.45rem;
    right: 0.7rem;

    width: 1.35rem;
    height: 1.35rem;

    border: 0.1rem solid rgba(82, 158, 245, 0.32);
    border-radius: 50%;

    background:
        radial-gradient(
            circle at 34% 28%,
            rgba(255, 255, 255, 1) 0 12%,
            rgba(190, 225, 255, 0.55) 14%,
            rgba(255, 255, 255, 0.25) 56%,
            rgba(93, 169, 255, 0.12) 100%
        );
}


/* Tiny blue sparkles */

.trust-banner__sparkle {
    position: absolute;
    z-index: 1;

    color: rgba(93, 169, 255, 0.28);

    font-size: 1.75rem;
    line-height: 1;
}

.trust-banner__sparkle--left {
    top: 2.5rem;
    left: 17%;
}

.trust-banner__sparkle--right {
    top: 2.5rem;
    right: 17%;
}


/* Small mobile */

@media (max-width: 37.5rem) {
    .trust-banner {
        padding: 1rem 0.75rem;
    }

    .trust-banner__inner {
        min-height: 9.5rem;
        padding: 1.25rem 1rem;
    }

    .trust-banner__stars {
        gap: 0.25rem;
        font-size: 1.9rem;
    }

    .trust-banner__rating {
        margin-top: 0.55rem;
        font-size: 1.8rem;
    }

    .trust-banner__details {
        margin-top: 0.35rem;
        gap: 0.4rem;

        font-size: 1rem;
    }

    .trust-banner__bubble {
        width: 2.6rem;
        height: 2.6rem;
    }

    .trust-banner__bubble--left {
        top: 0.85rem;
        left: 0.8rem;
    }

    .trust-banner__bubble--right {
        top: 0.85rem;
        right: 0.8rem;
    }

    .trust-banner__bubble--left::after {
        top: 3.15rem;
        left: 0.45rem;

        width: 1rem;
        height: 1rem;
    }

    .trust-banner__bubble--right::after {
        top: 3.15rem;
        right: 0.45rem;

        width: 1rem;
        height: 1rem;
    }

    .trust-banner__sparkle {
        font-size: 1.25rem;
    }

    .trust-banner__sparkle--left {
        top: 1.8rem;
        left: 18%;
    }

    .trust-banner__sparkle--right {
        top: 1.8rem;
        right: 18%;
    }
}


/* Very small mobile */

@media (max-width: 24rem) {
    .trust-banner__details {
        gap: 0.3rem;
        font-size: 0.9rem;
    }

    .trust-banner__sparkle {
        display: none;
    }
}

/* =========================================================
   TRUST BANNER LINK RESET
   Keeps the entire Nextdoor banner clickable without
   underlines or inline-anchor layout artifacts.
   ========================================================= */

.trust-banner {
    display: block;
    color: inherit;
    text-decoration: none;
}

.trust-banner:visited,
.trust-banner:hover,
.trust-banner:focus,
.trust-banner:active {
    color: inherit;
    text-decoration: none;
}

.trust-banner * {
    text-decoration: none;
}

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

.site-footer {
    padding: 1.5rem 1rem;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #061b3d 0%,
            #082a5c 55%,
            #061b3d 100%
        );

    border-bottom: 0.125rem solid #ffffff;
    border-radius: 0 0 0.75rem 0.75rem;
}

.site-footer__container {
    width: 100%;
    margin-inline: auto;
}

.site-footer__container > p {
    margin: 0;

    font-size: 1.25rem;
    line-height: 1.4;
    text-align: center;
}

.site-footer__bottom {
    margin-top: 1.25rem;
    padding-top: 1.25rem;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;

    border-top: 0.0625rem solid rgba(255, 255, 255, 0.18);
}

.site-footer__bottom p {
    margin: 0;

    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
}

.site-footer__links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.site-footer__links a {
    position: relative;

    padding: 0 1.5rem;

    color: #ffffff;

    font-size: 1rem;
    line-height: 1.4;
    text-decoration: none;
}

.site-footer__links a + a::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 0;

    width: 0.0625rem;
    height: 1.4rem;

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

    transform: translateY(-50%);
}

.site-footer__links a:hover {
    text-decoration: underline;
}


/* Small mobile */

@media (max-width: 37.5rem) {
    .site-footer {
        padding: 1.25rem 0.75rem;
    }

    .site-footer__container > p {
        font-size: 1rem;
    }

    .site-footer__bottom {
        margin-top: 1rem;
        padding-top: 1rem;

        flex-direction: column;
        gap: 0.75rem;
    }

    .site-footer__bottom p {
        font-size: 0.9rem;
    }

    .site-footer__links a {
        padding: 0 1rem;
        font-size: 0.9rem;
    }
}


/* Very small mobile */

@media (max-width: 24rem) {
    .site-footer__links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .site-footer__links a {
        padding: 0;
    }

    .site-footer__links a + a::before {
        display: none;
    }
}

/* =========================================================
   PRIVACY POLICY PAGE
   ========================================================= */

.privacy-policy {
    padding: 2rem 1rem 3rem;

    background:
        linear-gradient(
            180deg,
            #f4faff 0%,
            #ffffff 30%,
            #ffffff 100%
        );
}

.privacy-policy__container {
    width: 100%;
    max-width: 52rem;
    margin-inline: auto;
    padding: 2rem 1.5rem;

    color: var(--text);
    background: #ffffff;

    border: 0.0625rem solid rgba(8, 102, 216, 0.1);
    border-radius: 1.5rem;

    box-shadow:
        0 0.75rem 2rem rgba(8, 35, 79, 0.08);
}

.privacy-policy h1 {
    margin: 0;

    color: var(--navy);

    font-family: "korolev-compressed", sans-serif;
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.privacy-policy__updated {
    margin: 0.75rem 0 2rem;

    color: #5b6f8e;

    font-size: 0.95rem;
    line-height: 1.4;
    text-align: center;
}

.privacy-policy h2 {
    margin: 2rem 0 0.75rem;

    color: var(--blue);

    font-family: "korolev-compressed", sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.15;
}

.privacy-policy p,
.privacy-policy li {
    color: #344d70;

    font-size: 1rem;
    line-height: 1.7;
}

.privacy-policy p {
    margin: 0 0 1rem;
}

.privacy-policy ul {
    margin: 0 0 1.25rem;
    padding-left: 1.4rem;
}

.privacy-policy li {
    margin-bottom: 0.45rem;
}

.privacy-policy a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

.privacy-policy address {
    margin-top: 1rem;
    padding: 1.25rem;

    color: #344d70;
    background: var(--light-blue);

    border-left: 0.25rem solid var(--blue);
    border-radius: 0.75rem;

    font-style: normal;
    line-height: 1.7;
}


/* Small mobile */

@media (max-width: 37.5rem) {
    .privacy-policy {
        padding: 1rem 0.75rem 2rem;
    }

    .privacy-policy__container {
        padding: 1.5rem 1rem;

        border-radius: 1.25rem;
    }

    .privacy-policy h1 {
        font-size: 3rem;
    }

    .privacy-policy h2 {
        margin-top: 1.75rem;
        font-size: 1.65rem;
    }

    .privacy-policy p,
    .privacy-policy li {
        font-size: 0.95rem;
        line-height: 1.65;
    }
}

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

.site-footer__brand {
    width: 100%;
    margin: 0 auto 1rem;

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

.site-footer__logo {
    display: block;
    width: 9rem;
    max-width: 100%;
    height: auto;
}

@media (max-width: 37.5rem) {
    .site-footer__container > p {
        padding-inline: 2.5rem;
    }
}

/* =========================================================
   DESKTOP LAYOUT OVERRIDES
   Mobile styles above remain unchanged
   ========================================================= */

@media (min-width: 64rem) {

    /* =====================================================
       DESKTOP CONTAINERS
       ===================================================== */

    .site-header__container,
    .hero,
    .section-container,
    .site-footer__container {
        width: calc(100% - 4rem);
        max-width: 90rem;
        margin-inline: auto;
    }


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

    .hero {
        min-height: 38rem;
        padding: 4rem 3rem;

        border-radius: 0 0 1.5rem 1.5rem;
    }

    .hero__content {
        width: 52%;
        max-width: 46rem;
    }

    .hero__title {
        font-size: clamp(3.5rem, 5vw, 5rem);
    }

    .hero__description {
        font-size: 1.35rem;
    }

    .hero__buttons {
        width: 100%;
        max-width: 38rem;
        margin-top: 2rem;

        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .hero__button {
        min-height: 4rem;

        grid-template-columns: 1.75rem minmax(0, 1fr) 1rem;
        gap: 0.5rem;

        padding: 0.75rem 1rem;

        font-size: 1.15rem;
    }

    .hero__button-icon {
        font-size: 1.2rem;
    }

    .hero__button-arrow {
        font-size: 1.6rem;
    }

    .hero__illustration {
        top: 1.5rem;
        right: 2rem;

        width: 48%;
        height: 34rem;
    }

    .hero__nextdoor {
        right: auto;
        bottom: 2rem;
        left: 3rem;

        width: 18rem;

        justify-content: flex-start;
    }

    .hero__nextdoor img {
        width: 100%;
    }


/* =====================================================
   DESKTOP SERVICES
   Five static cards with descriptions
   ===================================================== */

.services {
    padding: 3rem 0;
}

.services__title {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.services__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    gap: 1rem;
}

.service {
    min-width: 0;
    height: 100%;

    display: flex;
    flex-direction: column;

    border-radius: 1.25rem;

    box-shadow:
        0 0.65rem 1.75rem rgba(8, 35, 79, 0.08);
}

.service__button {
    width: 100%;
    min-height: auto;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 7rem auto;
    justify-items: center;
    align-content: start;
    gap: 0.75rem;

    padding: 1.25rem 1.25rem 0.75rem;

    text-align: center;
    cursor: default;
    pointer-events: none;
}

.service__icon {
    width: 7rem;
    height: 7rem;
}

.service__name {
    font-size: 1.45rem;
    line-height: 1.15;
    text-align: center;
}

.service__arrow {
    display: none;
}

.service__content,
.service__content[hidden] {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 0 1.25rem 1.5rem;

    color: #344d70;
    text-align: center;
}

.service__content p {
    margin: 0;

    font-size: 0.95rem;
    line-height: 1.55;
}

.service__content a,
.service__quote-button {
    display: none;
}


    /* =====================================================
       DESKTOP FINAL BANNERS
       Centered and stacked
       ===================================================== */

    .quote-banner,
    .call-cta,
    .trust-banner {
        width: 40%;
        min-width: 32rem;
        max-width: 38rem;
        margin-inline: auto;
    }

    .quote-banner {
        padding: 1.5rem 0;
    }

    .quote-banner__inner {
        width: 100%;

        grid-template-columns: 4rem minmax(0, 1fr);
        gap: 1rem;

        padding: 1.5rem;
    }

    .quote-banner__icon svg {
        width: 3.25rem;
        height: 3.25rem;
    }

    .quote-banner__button {
        grid-column: 1 / -1;

        width: 100%;
        min-width: 0;
        min-height: 4rem;
        margin-top: 0.5rem;
    }

    .call-cta {
        padding: 1.5rem 0;
    }

    .call-cta__button {
        min-height: 7rem;

        grid-template-columns: 5rem minmax(0, 1fr) 1.5rem;
        gap: 1rem;

        padding: 1rem 1.25rem;
    }

    .call-cta__icon {
        width: 4.5rem;
        height: 4.5rem;
    }

    .call-cta__icon svg {
        width: 2rem;
        height: 2rem;
    }

    .call-cta__title {
        font-size: 1.85rem;
    }

    .call-cta__phone {
        font-size: 2rem;
    }

    .call-cta__arrow {
        font-size: 3rem;
    }

    .trust-banner {
        padding: 1.5rem 0 3rem;
    }

    .trust-banner__inner {
        width: 100%;
        min-height: 10rem;
    }

    .trust-banner__stars {
        font-size: 2rem;
    }

    .trust-banner__rating {
        font-size: 1.75rem;
    }

    .trust-banner__details {
        font-size: 1rem;
    }


}
