/*
 * SOS Encanador: layout inspired by modern service marketplaces.
 * This stylesheet only changes presentation. It deliberately keeps the
 * project's navy/cyan palette and the existing WhatsApp treatment.
 * Fonts are bundled locally by the bootstrap generator; no remote font
 * request is required.
 */
@font-face {
    font-family: "SOS Inter";
    src: url("fonts/inter-400.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SOS DM Sans";
    src: url("fonts/dm-sans-400.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --sos-navy: #0e2745;
    --sos-navy-deep: #091c34;
    --sos-blue: #163f6e;
    --sos-cyan: #21b7c9;
    --sos-green: #25d366;
    --sos-ink: #172b43;
    --sos-muted: #61728a;
    --sos-line: #dce5ee;
    --sos-background: #f4f7fb;
    --sos-card: #ffffff;
}

html {
    background: var(--sos-background);
}

body.starter2-body {
    font-family: "SOS Inter", Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
    color: var(--sos-ink);
    background: var(--sos-background);
    line-height: 1.65;
}

body.starter2-body h1,
body.starter2-body h2,
body.starter2-body h3,
body.starter2-body h4,
body.starter2-body h5,
body.starter2-body h6,
body.starter2-body .s2-nav-link,
body.starter2-body .s2-header-cta {
    font-family: "SOS DM Sans", "SOS Inter", Inter, system-ui, sans-serif;
}

.s2-container {
    width: min(1180px, calc(100% - 40px));
    max-width: 1180px;
    padding-left: 0;
    padding-right: 0;
}

/* Compact marketplace-style utility bar and header. */
.topbar {
    min-height: 34px;
    background: var(--sos-navy-deep) !important;
    color: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(33, 183, 201, 0.24);
}

.topbar-inner,
.topbar > .s2-container,
.topbar > div {
    width: min(1180px, calc(100% - 40px));
    min-height: 34px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 0.75rem;
    letter-spacing: 0.01em;
}

.topbar--centered .topbar-inner {
    justify-content: center;
    text-align: center;
}

.s2-header {
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 0;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.s2-header.is-scrolled {
    border-bottom: 1px solid var(--sos-line);
    box-shadow: 0 5px 20px rgba(14, 39, 69, 0.06);
}

.s2-header-inner {
    min-height: 82px;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 24px;
}

@media (min-width: 769px) {
    body.city-local-mode .s2-header-inner {
        justify-content: flex-start;
    }

    body.city-local-mode .s2-nav {
        margin-left: auto;
    }

    body.city-local-mode .s2-header-cta {
        margin-left: 28px;
    }
}

@media (max-width: 768px) {
    /* No mobile, a marca fica ancorada à esquerda e o menu à direita. */
    body.city-local-mode .s2-header-inner {
        width: calc(100% - 28px);
        max-width: none;
        min-height: 104px;
        justify-content: space-between;
        gap: 20px;
    }

    body.city-local-mode .s2-logo {
        flex: 0 1 auto;
        min-width: 0;
    }

    body.city-local-mode .s2-logo-img {
        width: auto;
        height: 75px;
        max-width: min(260px, 70vw);
        max-height: 75px;
    }

    body.city-local-mode .s2-menu-btn {
        display: block;
        flex: 0 0 auto;
        margin-left: auto;
    }
}

.s2-logo-img {
    max-height: 75px;
}

.s2-nav-list {
    gap: 4px;
    align-items: center;
}

.s2-nav-link {
    padding: 9px 13px;
    color: var(--sos-ink);
    font-family: "SOS DM Sans", "SOS Inter", Inter, system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    border-radius: 8px;
    text-transform: none;
}

.s2-nav-link:hover,
.s2-nav-link.active {
    color: var(--sos-navy);
    background: #eef8fa;
}

/* Submenu desktop: a clearer, lighter surface with a stronger interaction state. */
@media (min-width: 769px) {
    .s2-has-dropdown > .s2-nav-link {
        position: relative;
        z-index: 2;
    }

    .s2-has-dropdown::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 10px;
    }

    .s2-dropdown-menu {
        top: calc(100% + 10px);
        left: 50%;
        min-width: 278px;
        padding: 8px;
        overflow: visible;
        background: #ffffff;
        border: 1px solid #d8e4ed;
        border-radius: 14px;
        box-shadow: 0 18px 42px rgba(14, 39, 69, .14), 0 4px 12px rgba(14, 39, 69, .06);
        transform: translate(-50%, 8px);
        transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    }

    .s2-dropdown-menu::before {
        content: "";
        position: absolute;
        top: -6px;
        left: 50%;
        width: 11px;
        height: 11px;
        background: #ffffff;
        border-top: 1px solid #d8e4ed;
        border-left: 1px solid #d8e4ed;
        transform: translateX(-50%) rotate(45deg);
    }

    .s2-has-dropdown:hover > .s2-dropdown-menu,
    .s2-has-dropdown:focus-within > .s2-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }

    .s2-dropdown-menu li + li {
        border-top: 1px solid #edf2f6;
    }

    .s2-dropdown-menu a {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 44px;
        box-sizing: border-box;
        padding: 10px 12px 10px 16px;
        border-radius: 9px;
        color: var(--sos-ink);
        font-family: "SOS DM Sans", "SOS Inter", Inter, system-ui, sans-serif;
        font-size: .92rem;
        font-weight: 650;
        line-height: 1.25;
        transition: background-color .18s ease, color .18s ease, transform .18s ease;
    }

    .s2-dropdown-menu a::before {
        content: "";
        width: 5px;
        height: 5px;
        margin-right: 10px;
        border-radius: 50%;
        background: #22b8c9;
        opacity: .45;
        transition: opacity .18s ease, transform .18s ease;
    }

    .s2-dropdown-menu a::after {
        content: "\203A";
        margin-left: auto;
        color: #22b8c9;
        font-size: 1.15rem;
        line-height: 1;
        opacity: 0;
        transform: translateX(-5px);
        transition: opacity .18s ease, transform .18s ease;
    }

    .s2-dropdown-menu a:hover,
    .s2-dropdown-menu a:focus-visible {
        color: var(--sos-navy);
        background: #eef9fb;
        outline: none;
        transform: translateX(2px);
    }

    .s2-dropdown-menu a:hover::before,
    .s2-dropdown-menu a:focus-visible::before {
        opacity: 1;
        transform: scale(1.35);
    }

    .s2-dropdown-menu a:hover::after,
    .s2-dropdown-menu a:focus-visible::after {
        opacity: 1;
        transform: translateX(0);
    }
}

.s2-header-cta {
    box-sizing: border-box;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 28px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35) !important;
    border-radius: 50px;
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    transition: filter .2s ease, transform .2s ease, box-shadow .2s ease;
}

.s2-header-cta svg {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-right: 0 !important;
    vertical-align: middle !important;
}

.s2-header-cta:hover {
    color: #fff !important;
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4) !important;
}

.s2-wa-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 12px;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: #fff;
    transition: opacity .3s ease, transform .3s ease;
}

.s2-wa-float-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    cursor: pointer;
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s;
}

.s2-wa-float-btn svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    position: relative;
    z-index: 2;
}

.s2-wa-float-btn::before,
.s2-wa-float-btn::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(37, 211, 102, .35);
    border-radius: 50%;
    pointer-events: none;
    animation: sos-float-wa-pulse 2.2s ease-out infinite;
}

.s2-wa-float-btn::after {
    border-color: rgba(37, 211, 102, .2);
    animation-delay: 1.1s;
}

.s2-wa-float:hover .s2-wa-float-btn {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, .55);
}

.s2-wa-float:hover .s2-wa-float-btn::before,
.s2-wa-float:hover .s2-wa-float-btn::after {
    border-color: rgba(37, 211, 102, .6);
    animation-duration: 1.6s;
}

.s2-wa-float-tooltip {
    position: relative;
    padding: 10px 16px;
    border-radius: 10px;
    background: #fff;
    color: var(--sos-ink);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .12);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
}

.s2-wa-float-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #fff;
    border-right: 0;
}

.s2-wa-float:hover .s2-wa-float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes sos-float-wa-pulse {
    0% {
        opacity: .9;
        transform: scale(.86);
    }
    100% {
        opacity: 0;
        transform: scale(1.38);
    }
}

@media (max-width: 768px) {
    .s2-wa-float,
    a.s2-wa-float {
        display: none !important;
    }
}

/* Hero: a focused value proposition instead of a full-screen splash. */
.s2-section.page-hero,
.page-hero {
    min-height: 420px;
    padding: 66px 0 54px !important;
    display: flex;
    align-items: center;
}

.page-hero-block .container {
    width: min(820px, 100%);
}

.page-hero-block .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
}

.page-hero .hero-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--sos-cyan);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-hero h1 {
    max-width: 860px;
    margin: 0 auto 18px;
    font-size: clamp(2rem, 4.2vw, 3.45rem) !important;
    line-height: 1.08;
    letter-spacing: -0.045em;
    text-transform: none;
}

.page-hero .page-hero-subtitle {
    max-width: 760px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.7;
}

.page-hero .hero-actions {
    margin-bottom: 28px;
}

.page-hero .cta-buttons-wrapper {
    gap: 12px;
}

.page-hero .cta-buttons-wrapper .btn,
.page-hero .hero-actions .btn {
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.page-hero .cta-buttons-wrapper .btn-whatsapp,
.page-hero .hero-actions .btn-whatsapp {
    background: var(--sos-green) !important;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.25) !important;
}

.page-hero .trust-badges {
    gap: 10px;
    padding-top: 8px;
}

.page-hero .trust-badge {
    min-height: 36px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
}

.page-hero .trust-badge-label {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.75rem;
}

/* SOS Encanador information rhythm: broad sections and compact cards. */
.s2-main > .s2-section:not(.page-hero):not(.s2-cta-fullwidth) {
    padding-top: 66px;
    padding-bottom: 66px;
}

.s2-content {
    max-width: 980px;
}

.s2-block .heading,
.s2-block h2.heading {
    margin-bottom: 14px;
    font-size: clamp(1.45rem, 2.6vw, 2.1rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
    text-transform: none;
}

.s2-block-heading > p,
.s2-block-richtext p,
.richtext-content p {
    color: var(--sos-muted) !important;
}

.s2-services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px !important;
    align-items: stretch;
}

.s2-service-card {
    min-height: 190px;
    padding: 24px !important;
    background: var(--sos-card) !important;
    border: 1px solid var(--sos-line);
    border-radius: 16px !important;
    box-shadow: 0 8px 26px rgba(14, 39, 69, 0.06) !important;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.s2-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(33, 183, 201, 0.55);
    box-shadow: 0 14px 34px rgba(14, 39, 69, 0.12) !important;
}

.s2-service-card img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    margin: -24px -24px 20px;
    width: calc(100% + 48px);
    border-radius: 16px 16px 0 0;
}

.s2-service-card h3 {
    margin-bottom: 8px;
    color: var(--sos-navy) !important;
    font-size: 1.05rem;
    line-height: 1.25;
    text-transform: none;
}

.s2-service-card h3 a {
    color: inherit;
}

.s2-service-card p {
    color: var(--sos-muted);
    font-size: 0.92rem;
    line-height: 1.62;
}

.s2-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin-top: 24px !important;
}

.s2-list li {
    margin: 0 !important;
    padding: 14px 16px;
    list-style: none;
    border: 1px solid var(--sos-line);
    border-radius: 12px;
    background: #fff;
}

.s2-list li::before {
    display: none;
}

.s2-list li a {
    display: block;
    color: var(--sos-navy);
    font-weight: 700;
}

.s2-list li a:hover {
    color: var(--sos-cyan);
}

.s2-cta-fullwidth {
    padding: 64px 0 !important;
    background: linear-gradient(135deg, var(--sos-navy-deep), var(--sos-navy)) !important;
}

.s2-cta-fullwidth h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    text-transform: none;
}

.s2-cta-fullwidth .btn-primary {
    box-sizing: border-box;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 28px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .35) !important;
    color: #fff !important;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 700;
}

.s2-cta-fullwidth .btn-primary svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.s2-cta-fullwidth .btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, .4) !important;
}

/* Keep the complete base footer, but give it the marketplace's clear columns. */
.s2-footer {
    padding: 58px 0 0 !important;
    background: var(--sos-navy-deep) !important;
    color: rgba(255, 255, 255, 0.76);
}

.s2-footer-grid {
    grid-template-columns: 1.15fr 1fr 1.25fr 0.8fr !important;
    gap: 28px !important;
    margin-bottom: 34px;
}

.s2-footer-heading {
    margin-bottom: 14px;
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.s2-footer-links li {
    margin-bottom: 8px;
}

.s2-footer-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
}

.s2-footer-links a:hover {
    color: var(--sos-cyan);
}

.s2-footer-disclaimer {
    width: auto;
    margin: 14px auto 0;
    padding: 0;
    border: 0;
    color: var(--sos-navy) !important;
    font-size: .76rem;
    line-height: 1.7;
    text-align: center;
}

.s2-footer-disclaimer p {
    max-width: 920px;
    margin: 0 auto;
    color: var(--sos-navy) !important;
}

.s2-footer-disclaimer strong {
    color: var(--sos-navy);
}

.s2-footer-bottom {
    margin-top: 26px;
    padding: 22px 0 !important;
    border-top: 1px solid var(--sos-line);
    background: #fff !important;
    color: var(--sos-navy) !important;
}

.s2-footer-bottom p,
.s2-footer-bottom a {
    color: var(--sos-navy) !important;
}

.sos-footer-map {
    position: relative;
    margin-top: 18px;
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: #081c36;
}

.sos-footer-map iframe {
    display: block;
    width: 100%;
    height: 150px;
    min-height: 150px;
    border: 0;
    border-radius: 7px;
}

@media (max-width: 900px) {
    .s2-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .s2-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 700px) {
    .s2-container,
    .topbar-inner,
    .topbar > .s2-container,
    .topbar > div {
        width: min(100% - 28px, 560px);
    }

    .topbar-inner,
    .topbar > .s2-container,
    .topbar > div {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        padding: 5px 0;
    }

    .s2-header-inner {
        min-height: 104px;
        height: auto;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .s2-logo-img {
        max-height: 75px;
    }

    .s2-section.page-hero,
    .page-hero {
        min-height: 470px;
        padding: 52px 0 42px !important;
    }

    .page-hero h1 {
        font-size: clamp(1.85rem, 9vw, 2.65rem) !important;
    }

    .page-hero .cta-buttons-wrapper {
        flex-direction: column;
    }

    .page-hero .cta-buttons-wrapper .btn {
        width: 100%;
    }

    .s2-services-grid,
    .s2-list,
    .s2-footer-grid {
        grid-template-columns: 1fr !important;
    }

    .s2-main > .s2-section:not(.page-hero):not(.s2-cta-fullwidth) {
        padding-top: 48px;
        padding-bottom: 48px;
    }
}

/* Home composition: a service-marketplace structure with SOS visual identity. */
.sos-home {
    background: #fff;
}

.sos-home-hero {
    padding: 72px 0 54px;
    background: #fff;
}

.sos-home-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.sos-home-copy h1 {
    max-width: 700px;
    margin: 10px 0 18px;
    color: var(--sos-navy);
    font-size: clamp(2.2rem, 4.6vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    text-transform: none;
}

.sos-home-copy h1 strong {
    color: var(--sos-cyan);
}

.sos-detail > .sos-home-hero:first-child .sos-detail-actions .btn-primary {
    box-sizing: border-box;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .35) !important;
    color: #fff !important;
    font-size: .95rem;
    font-weight: 700;
}

.sos-detail > .sos-home-hero:first-child .sos-detail-actions .btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, .4) !important;
}

.sos-home-hero--reverse {
    padding: 68px 0 72px;
    background: #fff;
}

.sos-home-hero--reverse .sos-home-hero-inner {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 52px;
}

.sos-home-hero--reverse .sos-home-copy {
    grid-column: 2;
}

.sos-home-hero--reverse .sos-home-visual {
    order: -1;
    grid-column: 1;
}

.sos-home-hero--reverse .sos-home-visual-shape {
    inset: 28px 30px 0 0;
}

.sos-home-hero--followup {
    margin-top: 72px;
    padding: 68px 0 72px;
    background: #f6fbfc;
}

.sos-home-hero--followup .sos-home-copy {
    grid-column: 1;
    order: 0;
}

.sos-home-hero--followup .sos-home-visual {
    grid-column: 2;
    order: 0;
}

.sos-home-secondary-title {
    max-width: 650px;
    margin: 10px 0 18px;
    color: var(--sos-navy);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
    text-transform: none;
}

.sos-home-hero .sos-home-secondary-title {
    color: var(--sos-navy);
}

.sos-home-secondary-title strong {
    color: var(--sos-cyan);
}

.sos-home-hero .sos-home-secondary-title strong {
    color: var(--sos-cyan);
}

.sos-home-copy > p {
    max-width: 620px;
    color: var(--sos-muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.sos-home-hero .sos-home-copy > p {
    color: var(--sos-muted);
}

.sos-detail-intro + .sos-home-hero {
    margin-top: 56px;
}

.sos-home-hero--reverse + .sos-home-hero--followup {
    margin-top: 72px;
}

.sos-home-kicker {
    display: inline-block;
    color: var(--sos-cyan);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.sos-home-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
    padding: 8px 17px;
    border: 1px solid rgba(33, 183, 201, 0.42);
    border-radius: 999px;
    background: rgba(33, 183, 201, 0.06);
    color: var(--sos-cyan);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.sos-home-location-badge svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.sos-search-card {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 560px;
    margin-top: 28px;
    padding: 10px;
    border: 1px solid var(--sos-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(14, 39, 69, 0.1);
}

.sos-search-placeholder {
    flex: 1;
    padding: 14px;
    color: #8291a5;
}

.sos-search-button {
    padding: 13px 20px;
    border-radius: 10px;
    background: var(--sos-cyan);
    color: #fff !important;
    font-weight: 800;
    white-space: nowrap;
}

.sos-home-visual {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
}

.sos-home-visual-shape {
    position: absolute;
    inset: 28px 0 0 30px;
    border-radius: 45% 55% 44% 56%;
    background: linear-gradient(135deg, #e2f8fb, #f8fcfd);
}

.sos-home-visual img {
    position: relative;
    z-index: 1;
    width: min(100%, 540px);
    height: 360px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(14, 39, 69, 0.18);
}

.sos-home-badge {
    position: absolute;
    z-index: 2;
    right: 4%;
    bottom: 7%;
    padding: 12px 16px;
    border-radius: 12px;
    background: #fff;
    color: var(--sos-navy);
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(14, 39, 69, 0.16);
}

.sos-home-stats {
    background: var(--sos-navy-deep);
    color: #fff;
}

.sos-home-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sos-home-stat {
    min-height: 126px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 18px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sos-home-stat:first-child {
    border-left: 0;
}

.sos-home-stat-icon {
    display: grid;
    width: 30px;
    height: 30px;
    margin-bottom: 9px;
    place-items: center;
    color: var(--sos-cyan);
}

.sos-home-stat-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.sos-home-stat strong {
    color: var(--sos-cyan);
    font-family: "SOS DM Sans", "SOS Inter", Inter, system-ui, sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.sos-home-stat > span:not(.sos-home-stat-icon) {
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sos-home-categories {
    padding: 28px 0 72px;
    background: #fff;
}

.sos-detail .sos-home-categories {
    margin-top: 72px;
}

.sos-home-section-heading {
    margin-bottom: 22px;
}

.sos-home-section-heading h2 {
    margin: 8px 0 0;
    color: var(--sos-navy);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    text-transform: none;
}

.sos-category-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.sos-category-card {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--sos-line);
    border-radius: 14px;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 22px rgba(14, 39, 69, 0.07);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.sos-category-card:hover {
    border-color: var(--sos-cyan);
    box-shadow: 0 14px 28px rgba(14, 39, 69, 0.12);
    transform: translateY(-3px);
}

.sos-category-card strong {
    color: var(--sos-navy);
    font-size: 0.9rem;
}

.sos-category-card small {
    color: var(--sos-muted);
}

.sos-category-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 12px;
    background: #edf7f7;
    color: #007080;
    font-weight: 800;
}

.sos-category-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.sos-home-trust {
    padding: 72px 0;
    background: var(--sos-background);
}

.sos-home-trust-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 56px;
    align-items: center;
}

.sos-home-trust h2 {
    max-width: 620px;
    margin: 8px 0 16px;
    color: var(--sos-navy);
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    text-transform: none;
}

.sos-home-trust p {
    max-width: 560px;
    color: var(--sos-muted);
    line-height: 1.7;
}

.sos-trust-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sos-trust-cards article {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 22px;
    border-radius: 14px;
    background: linear-gradient(160deg, var(--sos-cyan), var(--sos-navy-deep));
    color: #fff;
    box-shadow: 0 12px 24px rgba(14, 39, 69, 0.12);
}

.sos-trust-cards article:nth-child(2) {
    background: linear-gradient(160deg, #f3c74f, #7d5e12);
}

.sos-trust-cards article:nth-child(3) {
    background: linear-gradient(160deg, #54749b, var(--sos-navy));
}

.sos-trust-cards b {
    align-self: flex-start;
    font-size: 1.6rem;
}

.sos-trust-cards strong {
    font-size: 1rem;
}

.sos-trust-cards span {
    color: rgba(255, 255, 255, .82);
    font-size: .86rem;
    line-height: 1.45;
}

.sos-home-cities {
    background: #fff;
}

@media (max-width: 900px) {
    .sos-home-hero-inner,
    .sos-home-trust-grid {
        grid-template-columns: 1fr;
    }

    .sos-home-visual {
        min-height: 300px;
    }

    .sos-home-hero--reverse .sos-home-copy,
    .sos-home-hero--reverse .sos-home-visual,
    .sos-home-hero--followup .sos-home-copy,
    .sos-home-hero--followup .sos-home-visual {
        grid-column: auto;
    }

    .sos-category-strip,
    .sos-neighborhoods-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .sos-home-hero {
        padding: 48px 0 36px;
    }

    .sos-search-card {
        flex-direction: column;
        align-items: stretch;
    }

    .sos-search-button {
        text-align: center;
    }

    .sos-home-visual img {
        height: 270px;
    }

    .sos-category-strip,
    .sos-neighborhoods-grid,
    .sos-trust-cards,
    .sos-home-stats-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sos-home-stat:nth-child(odd) {
        border-left: 0;
    }

    .sos-home-stat:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sos-trust-cards article {
        min-height: 150px;
        padding: 16px;
    }
}

/* Detail pages reuse the home's visual system while preserving their own purpose. */
.sos-detail {
    background: #fff;
}

.sos-detail-hero {
    padding: 62px 0 70px;
    background: linear-gradient(180deg, #fff 0%, #f6fbfc 100%);
}

.sos-detail-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: 52px;
    align-items: center;
}

.sos-detail-copy h1 {
    max-width: 760px;
    margin: 13px 0 18px;
    color: var(--sos-navy);
    font-size: clamp(2.1rem, 4vw, 3.8rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
    text-transform: none;
}

.sos-detail-copy > p {
    max-width: 650px;
    color: var(--sos-muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.sos-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--sos-muted);
    font-size: .88rem;
}

.sos-detail-breadcrumb a {
    color: var(--sos-navy);
    font-weight: 700;
}

.sos-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.sos-detail-visual {
    position: relative;
    min-height: 340px;
    display: grid;
    place-items: center;
}

.sos-detail-visual-shape {
    position: absolute;
    inset: 22px 0 0 24px;
    border-radius: 54% 46% 52% 48%;
    background: linear-gradient(135deg, #e1f7fa, #f7fcfd);
}

.sos-detail-visual img {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    height: 340px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 42px rgba(14, 39, 69, .16);
}

.sos-detail-intro {
    padding: 72px 0 76px;
    background: var(--sos-navy);
    color: #fff;
}

.sos-detail-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 68px;
    align-items: center;
}

.sos-detail-intro h2,
.sos-detail-intro p {
    margin: 0;
}

.sos-detail-intro h2 {
    max-width: 530px;
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.3rem);
    line-height: 1.12;
    text-transform: none;
}

.sos-detail-intro h2 strong {
    color: var(--sos-cyan);
}

.sos-detail-intro p {
    color: rgba(255, 255, 255, .8);
    font-size: 1.05rem;
    line-height: 1.75;
}

.sos-detail-intro-copy {
    min-width: 0;
}

.sos-detail-intro-copy h2 + p {
    margin-top: 18px;
}

.sos-detail-checklist {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.sos-detail-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 4px 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .86);
    line-height: 1.55;
}

.sos-detail-checklist strong {
    color: #fff;
    font-weight: 700;
}

.sos-detail-checklist svg {
    flex: 0 0 auto;
    width: 21px;
    height: 21px;
    margin-top: 1px;
    fill: none;
    stroke: var(--sos-cyan);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.sos-detail-intro-visual {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .2);
}

.sos-detail-intro-visual img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.sos-detail-guidance {
    padding: 72px 0;
    background: #fff;
}

.sos-detail-guidance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.sos-detail-feature {
    overflow: hidden;
    border: 1px solid var(--sos-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(14, 39, 69, .08);
}

.sos-detail-feature img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.sos-detail-feature > div {
    padding: 22px 24px 26px;
}

.sos-detail-feature > div > span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    border: 1.5px solid var(--sos-cyan);
    border-radius: 50%;
    color: var(--sos-cyan);
    font-size: 0.82rem;
    font-weight: 800;
}

.sos-detail-feature h3 {
    margin: 8px 0;
    color: var(--sos-navy);
    font-size: 1.2rem;
}

.sos-detail-feature p {
    margin: 0;
    color: var(--sos-muted);
    line-height: 1.65;
}

.sos-detail-related {
    padding: 72px 0;
    background: var(--sos-background);
}

.sos-detail-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.sos-detail-related-card {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 7px;
    padding: 18px;
    border: 1px solid var(--sos-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(14, 39, 69, .07);
    transition: transform .18s ease, box-shadow .18s ease;
}

.sos-detail-related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(14, 39, 69, .12);
}

.sos-neighborhoods {
    padding: 72px 0 76px;
    background: var(--sos-background);
}

.sos-neighborhoods-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.sos-neighborhoods-heading h2 {
    margin: 10px 0 0;
    color: var(--sos-navy);
    font-size: clamp(1.8rem, 3.6vw, 2.7rem);
    line-height: 1.1;
    text-transform: none;
}

.sos-neighborhoods-heading h2 strong {
    color: var(--sos-cyan);
}

.sos-neighborhoods-heading p {
    max-width: 620px;
    margin: 14px auto 0;
    color: var(--sos-muted);
}

.sos-neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 16px;
}

.sos-neighborhood-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 15px 18px;
    border: 1px solid var(--sos-line);
    border-radius: 12px;
    background: #fff;
    color: var(--sos-navy);
    box-shadow: 0 7px 18px rgba(14, 39, 69, .05);
    font-weight: 700;
}

.sos-neighborhood-card svg {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--sos-cyan);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.sos-faq-section {
    padding: 76px 0 84px;
    background: var(--sos-background);
}

.sos-faq-heading {
    max-width: 900px;
    margin: 0 auto 34px;
    text-align: center;
}

.sos-faq-heading h2 {
    margin: 10px 0 0;
    color: var(--sos-navy);
    font-size: clamp(1.75rem, 3.5vw, 2.65rem);
    line-height: 1.12;
    text-transform: none;
}

.sos-faq-heading h2 strong {
    color: var(--sos-cyan);
}

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

.sos-faq-list details {
    border-bottom: 1px solid var(--sos-line);
}

.sos-faq-list details:first-child {
    border-top: 1px solid var(--sos-line);
}

.sos-faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    color: var(--sos-ink);
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 700;
    list-style: none;
}

.sos-faq-list summary::-webkit-details-marker {
    display: none;
}

.sos-faq-icon {
    display: inline-grid;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 8px;
    background: #e7f0f5;
    color: var(--sos-navy);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
}

.sos-faq-list details[open] .sos-faq-icon {
    background: var(--sos-navy);
    color: #fff;
    font-size: 0;
}

.sos-faq-list details[open] .sos-faq-icon::after {
    content: "−";
    font-size: 1.25rem;
}

.sos-faq-answer {
    max-width: 760px;
    padding: 0 46px 18px 0;
}

.sos-faq-answer p {
    margin: 0;
    color: var(--sos-muted);
    line-height: 1.7;
}

.sos-detail-related-card strong {
    color: var(--sos-navy);
}

.sos-detail-related-card small {
    color: var(--sos-muted);
}

@media (max-width: 900px) {
    .sos-detail-hero-inner,
    .sos-detail-intro-grid {
        grid-template-columns: 1fr;
    }

    .sos-detail-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .sos-detail-hero {
        padding: 44px 0 48px;
    }

    .sos-detail-visual {
        min-height: 270px;
    }

    .sos-detail-visual img {
        height: 270px;
    }

    .sos-detail-actions {
        flex-direction: column;
    }

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

    .sos-detail-intro-visual img {
        height: 280px;
    }

    .sos-detail-guidance-grid,
    .sos-detail-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body.starter2-body {
        padding-bottom: 88px;
    }

    body.starter2-body .mobile-call-bar {
        position: fixed !important;
        left: 0 !important;
        right: auto !important;
        bottom: 0;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box;
        border: 0 !important;
        border-radius: 0 !important;
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
        box-shadow: none !important;
        overflow: hidden;
    }

    body.starter2-body .mobile-call-bar a.mobile-call-bar-wa {
        min-height: 48px;
        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 100vw;
        margin: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0 18px;
        border: 0 !important;
        outline: 0;
        border-radius: 0 !important;
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
        color: #fff !important;
        font-size: .98rem;
        font-weight: 700;
        line-height: 1;
        box-shadow: none !important;
    }

    body.starter2-body .mobile-call-bar-wa svg {
        flex: 0 0 auto;
        width: 20px;
        height: 20px;
    }

    body.starter2-body .s2-mobile-contact .btn-primary {
        width: 100%;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 13px 20px;
        border: 0 !important;
        border-radius: 50px;
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, .35) !important;
        color: #fff !important;
        font-size: .95rem;
        font-weight: 700;
    }

    body.starter2-body .s2-mobile-contact .btn-primary svg {
        flex: 0 0 auto;
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    body.starter2-body .s2-header-cta {
        display: none !important;
    }
}

@media (max-width: 700px) {
    body.city-local-mode .sos-detail-breadcrumb {
        justify-content: center;
        text-align: center;
    }

    .sos-home-categories .sos-home-section-heading {
        text-align: center;
    }

    .sos-neighborhood-card {
        min-height: 64px;
        gap: 8px;
        padding: 13px 12px;
        font-size: .84rem;
        line-height: 1.25;
    }

    .sos-neighborhood-card svg {
        width: 18px;
        height: 18px;
    }

    .sos-neighborhood-card span {
        min-width: 0;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .sos-detail > .sos-home-hero:first-child .sos-home-copy {
        text-align: center;
    }

    .sos-home-hero--city-card .sos-home-location-badge {
        display: flex;
        width: max-content;
        margin-right: auto;
        margin-left: auto;
    }

    .sos-detail > .sos-home-hero:first-child .sos-home-location-badge {
        display: flex;
        width: max-content;
        margin-right: auto;
        margin-left: auto;
    }

    .sos-detail > .sos-home-hero:first-child .sos-home-copy h1,
    .sos-detail > .sos-home-hero:first-child .sos-home-copy > p {
        margin-right: auto;
        margin-left: auto;
    }

    .sos-detail > .sos-home-hero:first-child .sos-detail-actions {
        justify-content: center;
    }
}

/* Submenu mobile: group the service links without making the menu feel like a plain list. */
@media (max-width: 768px) {
    .s2-mobile-nav {
        margin: 0 14px;
        padding: 8px 14px 18px;
        background: #ffffff;
        border: 1px solid #dce7ee;
        border-top: 0;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 14px 30px rgba(14, 39, 69, .08);
    }

    .s2-mobile-list > li {
        border-bottom: 1px solid #e7eef3;
    }

    .s2-mobile-list > li:last-child {
        border-bottom: 0;
    }

    .s2-mobile-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        box-sizing: border-box;
        padding: 13px 4px;
        color: var(--sos-ink);
        font-family: "SOS DM Sans", "SOS Inter", Inter, system-ui, sans-serif;
        font-size: .96rem;
        font-weight: 700;
        line-height: 1.25;
        border: 0;
        border-radius: 9px;
        transition: background-color .18s ease, color .18s ease;
    }

    .s2-mobile-link:hover,
    .s2-mobile-link:focus-visible {
        color: var(--sos-navy);
        background: #eef9fb;
        outline: none;
    }

    .s2-mobile-dropdown-toggle {
        position: relative;
        justify-content: space-between;
        margin: 4px 0;
        padding-right: 12px;
        background: #f3f9fb;
        color: var(--sos-navy);
    }

    .s2-mobile-dropdown-toggle::after {
        content: "";
        width: 8px;
        height: 8px;
        margin-left: 12px;
        border-right: 2px solid #22b8c9;
        border-bottom: 2px solid #22b8c9;
        transform: translateY(-2px) rotate(45deg);
        transition: transform .2s ease;
    }

    .s2-mobile-dropdown-toggle.open::after {
        transform: translateY(2px) rotate(225deg);
    }

    .s2-mobile-dropdown-menu {
        display: none;
        max-height: none;
        margin: 6px 0 10px 8px;
        padding: 5px 0 5px 10px;
        border-left: 2px solid #ccecf0;
        border-radius: 0 10px 10px 0;
        background: #fbfdfe;
    }

    .s2-mobile-dropdown-menu.open {
        display: block;
    }

    .s2-mobile-dropdown-menu li {
        border: 0;
    }

    .s2-mobile-sublink {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 43px;
        box-sizing: border-box;
        gap: 10px;
        padding: 10px 12px;
        color: #5b718b;
        font-family: "SOS DM Sans", "SOS Inter", Inter, system-ui, sans-serif;
        font-size: .91rem;
        font-weight: 600;
        line-height: 1.3;
        border: 0;
        border-radius: 8px;
        transition: background-color .18s ease, color .18s ease, transform .18s ease;
    }

    .s2-mobile-sublink::before {
        content: "";
        flex: 0 0 5px;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #22b8c9;
        opacity: .65;
    }

    .s2-mobile-sublink:hover,
    .s2-mobile-sublink:focus-visible,
    .s2-mobile-sublink.active {
        color: var(--sos-navy);
        background: #eef9fb;
        outline: none;
        transform: translateX(2px);
    }

    .s2-mobile-contact {
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid #e7eef3;
    }
}
