:root {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --surface-alt: #edf2fb;
    --ink: #11325f;
    --ink-soft: #4f6484;
    --accent: #17386d;
    --accent-2: #234a8c;
    --line: rgba(17, 50, 95, 0.12);
    --shadow: 0 22px 48px rgba(18, 46, 88, 0.14);
    --shadow-strong: 0 28px 60px rgba(18, 46, 88, 0.22);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --max-width: 1180px;
    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}
body.site-body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--ink);
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    background:
        radial-gradient(circle at top left, rgba(35, 74, 140, 0.08), transparent 30%),
        linear-gradient(180deg, #f7f9fd 0%, #eef3fa 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.site-main {
    width: 100%;
    max-width: 100%;
    padding: 0 16px 80px;
    overflow-x: clip;
}
.section-shell { width: min(100%, var(--max-width)); margin: 0 auto; }

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--accent-2);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-heading { max-width: 720px; margin-bottom: 28px; }
.section-heading--light .eyebrow,
.section-heading--light h2,
.section-heading--light p { color: #ffffff; }
.section-heading h2,
.page-hero h1,
.trust-title,
.wcu-title,
.steps-header h2,
.rs-head h2,
.fu-head h2 {
    margin: 0;
    line-height: 1.06;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
}
.section-heading p,
.page-hero p,
.about-desc,
.hero-description,
.steps-header p,
.fu-info-sub {
    margin: 14px 0 0;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.7;
}

.floating-header {
    position: sticky;
    top: 14px;
    z-index: 40;
    width: min(100%, var(--max-width));
    margin: 14px auto 0;
    overflow-x: clip;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 44px rgba(12, 41, 84, 0.12);
    transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth), background 0.35s var(--ease-smooth);
}
.floating-header.scrolled .header-inner {
    transform: translateY(-2px);
    box-shadow: 0 24px 54px rgba(12, 41, 84, 0.18);
    background: rgba(255, 255, 255, 0.97);
}
.logo { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.logo-mark {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f9fbff 0%, #e8eef8 100%);
}
.logo-mark img { width: 46px; height: 46px; object-fit: contain; }
.logo-copy { display: flex; flex-direction: column; }
.logo-title { font-size: 1.15rem; font-weight: 800; }
.logo-tagline { color: var(--ink-soft); font-size: 0.74rem; }
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(237, 243, 251, 0.94), rgba(255, 255, 255, 0.92));
    border: 1px solid rgba(23, 56, 109, 0.08);
}
.desktop-nav-item {
    position: relative;
}
.desktop-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    color: var(--ink);
    font-weight: 700;
    overflow: hidden;
    transition: color 0.38s var(--ease-smooth), background 0.38s var(--ease-smooth), box-shadow 0.38s var(--ease-smooth), transform 0.38s var(--ease-smooth);
}
.desktop-nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.38), rgba(35, 74, 140, 0.06), rgba(255, 255, 255, 0));
    opacity: 0;
    transform: translateX(-118%);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
}
.desktop-nav a:hover::before,
.desktop-nav a.active::before {
    opacity: 0.9;
    transform: translateX(118%);
}
.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--accent);
    background: linear-gradient(180deg, rgba(233, 241, 253, 0.98), rgba(222, 234, 249, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 8px 18px rgba(18, 46, 88, 0.08);
}
.desktop-nav a:hover {
    transform: translateY(-0.5px);
}
.nav-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}
.nav-icon svg {
    width: 16px;
    height: 16px;
}
.desktop-nav a span:last-child {
    position: relative;
    z-index: 1;
}
.nav-dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 16px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.38s var(--ease-smooth), background 0.38s var(--ease-smooth), box-shadow 0.38s var(--ease-smooth), transform 0.38s var(--ease-smooth);
}
.nav-dropdown-toggle::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.38), rgba(35, 74, 140, 0.06), rgba(255, 255, 255, 0));
    opacity: 0;
    transform: translateX(-118%);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
}
.nav-dropdown.active .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown-toggle:hover {
    color: var(--accent);
    background: linear-gradient(180deg, rgba(233, 241, 253, 0.98), rgba(222, 234, 249, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 8px 18px rgba(18, 46, 88, 0.08);
}
.nav-dropdown.active .nav-dropdown-toggle::before,
.nav-dropdown.is-open .nav-dropdown-toggle::before,
.nav-dropdown-toggle:hover::before {
    opacity: 0.9;
    transform: translateX(118%);
}
.nav-dropdown-toggle:hover {
    transform: translateY(-0.5px);
}
.nav-dropdown-toggle span {
    position: relative;
    z-index: 1;
}
.nav-caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    transition: transform 0.28s ease;
}
.nav-caret svg {
    width: 14px;
    height: 14px;
}
.nav-dropdown.is-open .nav-caret,
.mobile-accordion.active .nav-caret {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: min(760px, 78vw);
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(23, 56, 109, 0.1);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 54px rgba(18, 46, 88, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #17386d, #244c8f);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(18, 46, 88, 0.16);
}
.nav-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}
.nav-dropdown-grid a {
    min-height: 42px;
    justify-content: flex-start;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(238, 244, 252, 0.86);
    border: 1px solid rgba(23, 56, 109, 0.08);
    color: var(--ink);
    font-size: 0.94rem;
}
.nav-dropdown-grid a.active,
.nav-dropdown-grid a:hover {
    color: var(--accent);
    background: #eef4fd;
}
.header-actions { display: flex; align-items: center; gap: 12px; }

.btn-call,
.btn-call-hero,
.btn-book,
.btn-whatsapp,
.sv-btn-all,
.about-btn,
.sv-card-btn,
.sv-desktop-card-btn,
.service-list-card-footer a,
.fu-btn-call,
.fu-btn-wa,
.fu-btn-dir {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    font-weight: 800;
    isolation: isolate;
    transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth), background 0.35s var(--ease-smooth), border-color 0.35s var(--ease-smooth);
}
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    flex: 0 0 18px;
}
.btn-icon svg {
    width: 18px;
    height: 18px;
}
.btn-call,
.btn-call-hero,
.btn-whatsapp,
.sv-btn-all,
.about-btn,
.sv-card-btn,
.sv-desktop-card-btn,
.fu-btn-call,
.fu-btn-wa {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 14px 28px rgba(23, 56, 109, 0.22);
}
.btn-book,
.fu-btn-dir {
    background: #fff;
    color: var(--accent);
    border: 1px solid rgba(23, 56, 109, 0.16);
    box-shadow: 0 12px 24px rgba(23, 56, 109, 0.1);
}
.btn-call:hover,
.btn-call-hero:hover,
.btn-book:hover,
.btn-whatsapp:hover,
.sv-btn-all:hover,
.about-btn:hover,
.sv-card-btn:hover,
.sv-desktop-card-btn:hover,
.service-list-card-footer a:hover,
.fu-btn-call:hover,
.fu-btn-wa:hover,
.fu-btn-dir:hover { transform: translateY(-2px); }
.btn-call::before,
.btn-call-hero::before,
.btn-book::before,
.btn-whatsapp::before,
.sv-btn-all::before,
.about-btn::before,
.sv-card-btn::before,
.sv-desktop-card-btn::before,
.service-list-card-footer a::before,
.fu-btn-call::before,
.fu-btn-wa::before,
.fu-btn-dir::before {
    content: "";
    position: absolute;
    inset: -140% auto auto -30%;
    width: 42%;
    height: 360%;
    transform: rotate(22deg) translateX(-180%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    transition: transform 0.8s var(--ease-smooth);
    z-index: -1;
}
.btn-call:hover::before,
.btn-call-hero:hover::before,
.btn-book:hover::before,
.btn-whatsapp:hover::before,
.sv-btn-all:hover::before,
.about-btn:hover::before,
.sv-card-btn:hover::before,
.sv-desktop-card-btn:hover::before,
.service-list-card-footer a:hover::before,
.fu-btn-call:hover::before,
.fu-btn-wa:hover::before,
.fu-btn-dir:hover::before {
    transform: rotate(22deg) translateX(420%);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: var(--accent);
    cursor: pointer;
}
.mobile-toggle span {
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: min(88vw, 360px);
    height: 100vh;
    padding: 24px;
    background: #ffffff;
    box-shadow: -12px 0 36px rgba(18, 46, 88, 0.18);
    transform: translateX(102%);
    transition: transform 0.28s ease;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
}
.mobile-menu-head button {
    border: 0;
    background: none;
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
}
.mobile-menu-links { display: grid; gap: 12px; }
.mobile-menu-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    font-weight: 700;
}
.mobile-menu-links a.active { background: var(--surface-alt); color: var(--accent); }
.mobile-accordion {
    display: grid;
    gap: 10px;
}
.mobile-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}
.mobile-accordion.active .mobile-accordion-toggle {
    background: var(--surface-alt);
    color: var(--accent);
}
.mobile-accordion-toggle__main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.mobile-accordion-panel {
    display: grid;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.mobile-accordion.active .mobile-accordion-panel {
    max-height: 1200px;
    padding: 4px 10px 2px;
}
.mobile-accordion-panel a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(238, 244, 252, 0.78);
    border: 1px solid rgba(23, 56, 109, 0.08);
    font-size: 0.95rem;
}
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(8, 23, 49, 0.44);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}
.mobile-overlay.active { opacity: 1; pointer-events: auto; }

.call-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(10, 28, 56, 0.42);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-smooth);
}
.call-modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}
.call-modal {
    position: relative;
    width: min(100%, 430px);
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 244, 252, 0.98));
    border: 1px solid rgba(23, 56, 109, 0.08);
    box-shadow: 0 34px 70px rgba(10, 28, 56, 0.24);
    transform: translateY(18px) scale(0.98);
    transition: transform 0.4s var(--ease-smooth);
}
.call-modal-backdrop.active .call-modal {
    transform: translateY(0) scale(1);
}
.call-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: rgba(23, 56, 109, 0.08);
    color: var(--accent);
    cursor: pointer;
    transition: background 0.28s ease, transform 0.28s ease;
}
.call-modal__close:hover {
    background: rgba(23, 56, 109, 0.14);
    transform: rotate(90deg);
}
.call-modal__close svg {
    width: 18px;
    height: 18px;
}
.call-modal__header {
    text-align: center;
}
.call-modal__eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(23, 56, 109, 0.08);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.call-modal__header h3 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.1;
}
.call-modal__header p {
    margin: 10px 0 0;
    color: var(--ink-soft);
    line-height: 1.7;
}
.call-modal__actions {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}
.call-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(23, 56, 109, 0.08);
    box-shadow: 0 16px 28px rgba(18, 46, 88, 0.08);
    transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth), border-color 0.35s var(--ease-smooth), background 0.35s var(--ease-smooth);
}
.call-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 36px rgba(18, 46, 88, 0.12);
    border-color: rgba(35, 74, 140, 0.18);
    background: #fff;
}
.call-option__icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(180deg, #17386d 0%, #234a8c 100%);
    color: #fff;
    flex: 0 0 52px;
}
.call-option__icon svg {
    width: 22px;
    height: 22px;
}
.call-option__copy {
    display: grid;
    gap: 3px;
}
.call-option__copy strong {
    font-size: 1.18rem;
    line-height: 1.2;
}
.call-option__copy small {
    color: var(--ink-soft);
    font-size: 0.96rem;
}

.hero {
    position: relative;
    overflow: hidden;
    width: min(100%, var(--max-width));
    min-height: 760px;
    margin: 24px auto 34px;
    border-radius: 38px;
    box-shadow: var(--shadow);
}
.hero::before {
    content: "";
    position: absolute;
    inset: auto auto -12% -8%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
    filter: blur(12px);
    animation: floatOrb 8s ease-in-out infinite;
    z-index: 1;
}
.hero-bg-img, .hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-bg-img {
    object-fit: cover;
    transform: scale(1.06);
    animation: heroDrift 16s ease-in-out infinite alternate;
    will-change: transform;
}
.hero-overlay {
    background:
        linear-gradient(180deg, rgba(23, 56, 109, 0.24) 0%, rgba(12, 32, 66, 0.82) 82%),
        linear-gradient(90deg, rgba(17, 50, 95, 0.68) 0%, rgba(17, 50, 95, 0.22) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 760px;
    padding: 120px 48px 46px;
    color: #fff;
    text-align: left;
}
.hero-content > * {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.site-body.is-loaded .hero-content > * {
    opacity: 1;
    transform: translateY(0);
}
.site-body.is-loaded .hero-tagline { transition-delay: 0.08s; }
.site-body.is-loaded .hero-headline-main { transition-delay: 0.16s; }
.site-body.is-loaded .hero-headline-sub { transition-delay: 0.24s; }
.site-body.is-loaded .hero-description { transition-delay: 0.32s; }
.site-body.is-loaded .hero-buttons { transition-delay: 0.4s; }
.site-body.is-loaded .hero-scroll-arrow { transition-delay: 0.5s; }
.hero-tagline {
    margin-bottom: 20px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.hero-headline-main {
    margin: 0;
    font-size: clamp(3rem, 9vw, 6rem);
    line-height: 0.95;
    font-weight: 800;
}
.hero-headline-sub {
    max-width: 620px;
    margin: 14px 0 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.1;
    font-weight: 700;
}
.hero-description {
    max-width: 560px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
}
.hero-buttons,
.cta-buttons,
.fu-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-buttons { margin-top: 28px; }
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}
.hero-stat {
    min-width: 118px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.45s var(--ease-smooth), background 0.45s var(--ease-smooth), border-color 0.45s var(--ease-smooth), box-shadow 0.45s var(--ease-smooth);
}
.hero-stat:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 30px rgba(8, 23, 49, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.hero-stat strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
}
.hero-stat span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    font-weight: 700;
}
.hero-scroll-arrow {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-top: 34px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.trust-section { padding: 0 0 34px; }
.trust-wrapper {
    padding: 54px 24px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, #17386d 0%, #0f2f5e 100%);
    box-shadow: var(--shadow);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.trust-card {
    padding: 26px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    text-align: center;
    transition: transform 0.45s var(--ease-smooth), box-shadow 0.45s var(--ease-smooth), border-color 0.45s var(--ease-smooth);
}
.trust-icon, .wcu-icon {
    display: inline-grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(180deg, #17386d 0%, #21498a 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
}
.trust-icon--stack {
    width: auto;
    min-width: 112px;
    height: auto;
    padding: 12px 18px;
    gap: 10px;
    grid-auto-flow: column;
    border-radius: 999px;
}
.trust-icon-badge {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}
.trust-icon-badge svg {
    width: 18px;
    height: 18px;
}
.trust-card-title { margin: 16px 0 0; font-size: 1.2rem; line-height: 1.2; }

.services-section,
.about-section,
.steps-section,
.wcu-section,
.rs,
.fu-section,
.page-section { padding-top: 24px; }

.sv-track-wrap { display: none; }
.sv-desktop-grid,
.services-listing-grid,
.reviews-page-grid,
.page-grid,
.contact-grid { display: grid; gap: 22px; }
.sv-desktop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sv-desktop-card,
.service-list-card,
.content-card,
.review-page-card,
.step-card,
.wcu-item {
    border: 1px solid rgba(18, 46, 88, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transition: transform 0.45s var(--ease-smooth), box-shadow 0.45s var(--ease-smooth), border-color 0.45s var(--ease-smooth);
    will-change: transform;
}
.sv-desktop-card,
.service-list-card { overflow: hidden; }
.sv-desktop-card:hover,
.service-list-card:hover,
.content-card:hover,
.review-page-card:hover,
.step-card:hover,
.wcu-item:hover,
.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(35, 74, 140, 0.18);
}
.sv-desktop-card-img img { width: 100%; aspect-ratio: 1.08 / 0.86; object-fit: cover; }
.sv-desktop-card-img img,
.about-img-wrap img,
.sv-card-img img {
    transition: transform 0.8s var(--ease-smooth), filter 0.8s var(--ease-smooth);
}
.sv-desktop-card:hover .sv-desktop-card-img img,
.about-card:hover .about-img-wrap img,
.sv-card:hover .sv-card-img img {
    transform: scale(1.07);
    filter: saturate(1.06);
}
.sv-desktop-card-body,
.service-list-card,
.content-card,
.review-page-card { padding: 24px; }
.sv-desktop-card-title,
.service-list-card h2,
.content-card h2,
.review-page-top strong {
    margin: 0 0 10px;
    font-size: 1.35rem;
    line-height: 1.2;
}
.sv-desktop-card-desc,
.service-list-card p,
.content-card p,
.review-page-text,
.step-desc,
.wcu-text {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.7;
}
.sv-desktop-card-btn,
.service-list-card-footer a { margin-top: 18px; }
.sv-footer { display: flex; justify-content: center; margin-top: 26px; }

.about-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    align-items: center;
    padding: 36px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transition: transform 0.45s var(--ease-smooth), box-shadow 0.45s var(--ease-smooth);
}
.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}
.about-title { margin: 0; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.08; }
.about-btn { margin-top: 24px; }
.about-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.about-signals span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--surface-alt);
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 800;
}
.about-signals span svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}
.about-img-wrap { overflow: hidden; border-radius: 30px; }
.about-img-wrap img { width: 100%; min-height: 340px; object-fit: cover; }

.steps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.step-card { position: relative; padding: 28px 24px 24px; }
.step-card::after {
    content: "";
    position: absolute;
    inset: auto 22px 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(35, 74, 140, 0), rgba(35, 74, 140, 0.28), rgba(35, 74, 140, 0));
}
.step-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: rgba(23, 56, 109, 0.08);
    color: var(--accent);
}
.step-icon svg {
    width: 20px;
    height: 20px;
}
.step-num {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
}
.step-title { margin: 0 0 10px; font-size: 1.5rem; }

.wcu-box { padding: 10px 0 0; }
.wcu-list { display: grid; gap: 16px; }
.wcu-item { display: flex; align-items: center; gap: 18px; padding: 20px 22px; }
.wcu-icon svg {
    width: 24px;
    height: 24px;
}

.reviews-showcase {
    position: relative;
    padding-top: 28px;
}
.reviews-showcase::before {
    content: "";
    position: absolute;
    inset: 18% 0 auto;
    height: 420px;
    background:
        radial-gradient(circle at 18% 40%, rgba(23, 56, 109, 0.08), transparent 34%),
        radial-gradient(circle at 82% 40%, rgba(23, 56, 109, 0.08), transparent 34%);
    pointer-events: none;
}
.review-deck-wrap {
    position: relative;
    min-height: 620px;
    display: grid;
    place-items: center;
    overflow-x: clip;
}
.review-deck {
    position: relative;
    width: 100%;
    height: 560px;
    perspective: 1400px;
}
.review-deck-card {
    position: absolute;
    top: 26px;
    left: 50%;
    width: min(100%, 420px);
    min-height: 500px;
    padding: 28px 28px 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, #17386d 0%, #244c8f 100%);
    color: #fff;
    box-shadow: 0 34px 70px rgba(14, 35, 70, 0.24);
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
    transition: transform 0.8s var(--ease-smooth), opacity 0.8s var(--ease-smooth), box-shadow 0.8s var(--ease-smooth), filter 0.8s var(--ease-smooth);
    will-change: transform;
}
.review-deck-card.is-active {
    opacity: 1;
    z-index: 5;
    transform: translateX(-50%) translateY(0) rotate(0deg) scale(1);
}
.review-deck-card.is-left {
    opacity: 0.7;
    z-index: 3;
    transform: translateX(calc(-50% - 320px)) translateY(-16px) rotate(-10deg) scale(0.9);
    filter: blur(0.1px);
}
.review-deck-card.is-right {
    opacity: 0.7;
    z-index: 3;
    transform: translateX(calc(-50% + 320px)) translateY(18px) rotate(10deg) scale(0.9);
    filter: blur(0.1px);
}
.review-deck-card.is-hidden {
    opacity: 0;
    z-index: 1;
    transform: translateX(-50%) translateY(28px) scale(0.8);
    pointer-events: none;
}
.review-deck-card__top {
    display: flex;
    align-items: center;
    gap: 14px;
}
.review-avatar {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 1.1rem;
    font-weight: 800;
}
.review-deck-card__top h3 {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.1;
}
.review-deck-card__top p {
    margin: 6px 0 0;
    color: rgba(188, 216, 255, 0.86);
    font-size: 1.1rem;
    font-weight: 700;
}
.review-divider {
    height: 1px;
    margin: 18px 0 26px;
    background: rgba(255, 255, 255, 0.12);
}
.review-deck-card__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    font-size: 1.12rem;
    line-height: 1.95;
    font-style: italic;
}
.review-deck-card__stars {
    margin-top: 40px;
    text-align: center;
    color: #ffd65b;
    font-size: 1.8rem;
    letter-spacing: 0.14em;
}
.review-deck-card__stars span:last-child {
    margin-right: -0.14em;
}
.review-nav {
    position: absolute;
    top: 50%;
    z-index: 8;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent);
    box-shadow: var(--shadow);
    font-size: 2rem;
    cursor: pointer;
    transform: translateY(-50%);
}
.review-nav svg {
    width: 20px;
    height: 20px;
}
.review-nav--prev { left: 20px; }
.review-nav--next { right: 20px; }
.review-deck-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}
.review-deck-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(23, 56, 109, 0.22);
    cursor: pointer;
}
.review-deck-dot.active {
    background: #29a9ff;
}
.rs-dots, .sv-dots { display: none; }

.cta-section { padding-top: 28px; }
.cta-inner {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: 40px 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, #17386d 0%, #0e2b55 100%);
    color: #fff;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.cta-inner::before,
.cta-inner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 68%);
    animation: floatOrb 10s ease-in-out infinite;
}
.cta-inner::before {
    top: -80px;
    right: -20px;
    width: 220px;
    height: 220px;
}
.cta-inner::after {
    bottom: -110px;
    left: -20px;
    width: 260px;
    height: 260px;
    animation-delay: -4s;
}
.cta-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.cta-inner h2 { margin: 0; font-size: clamp(2rem, 4vw, 3rem); }
.cta-inner p { max-width: 720px; margin: 12px 0 0; color: rgba(255, 255, 255, 0.84); }
.cta-buttons { margin-top: 24px; }
.cta-trust { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.cta-trust-item {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    font-size: 0.92rem;
}

.fu-card, .contact-grid, .service-detail-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: stretch;
}
.fu-map-stage {
    position: relative;
    min-height: 100%;
    height: 100%;
}
.fu-map {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow);
    min-height: 640px;
    height: 100%;
    overflow: hidden;
    transition: transform 0.5s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth);
}
.fu-map .leaflet-control-attribution,
.fu-map .leaflet-control-zoom {
    z-index: 5;
}
.fu-map .leaflet-pane,
.fu-map .leaflet-top,
.fu-map .leaflet-bottom {
    z-index: 1;
}
.fu-card:hover .fu-map {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}
.fu-map-overlay-card {
    position: absolute;
    right: 24px;
    bottom: 24px;
    max-width: 300px;
    padding: 18px 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    background: rgba(15, 47, 93, 0.88);
    backdrop-filter: blur(16px);
    color: #fff;
    box-shadow: 0 24px 48px rgba(10, 28, 56, 0.22);
}
.fu-map-overlay-card__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: rgba(188, 216, 255, 0.92);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.fu-map-overlay-card strong {
    display: block;
    font-size: 1.35rem;
}
.fu-map-overlay-card p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}
.fu-info {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}
.fu-info-title { margin: 0 0 18px; font-size: 2rem; }
.fu-row + .fu-row, .fu-hours { margin-top: 18px; }
.fu-detail-label, .review-page-service {
    margin: 0 0 6px;
    color: var(--accent-2);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.fu-detail-val, .fu-hours-row, .contact-info p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.7;
}
.fu-hours-row { display: flex; justify-content: space-between; gap: 16px; }
.fu-badge {
    display: inline-flex;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--surface-alt);
    color: var(--accent);
    font-weight: 700;
}
.fu-head-copy {
    margin-top: 12px;
    max-width: 680px;
}
.location-spotlight {
    margin-bottom: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(17, 50, 95, 0.08);
    border-radius: 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4fc 100%);
}
.location-spotlight__badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.location-spotlight strong {
    display: block;
    font-size: 1.45rem;
}
.location-spotlight p {
    margin: 8px 0 0;
    color: var(--ink-soft);
    line-height: 1.7;
}
.fu-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.fu-service-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--surface-alt);
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 800;
}

.page-hero { padding-top: 34px; }
.page-hero .section-shell {
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, #ffffff 0%, #eef3fb 100%);
    box-shadow: var(--shadow);
    overflow-x: clip;
}
.services-listing-grid, .reviews-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-list-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.94rem;
}
.page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.content-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-title-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(23, 56, 109, 0.1), rgba(35, 74, 140, 0.14));
    color: var(--accent);
    flex: 0 0 42px;
}
.section-title-icon svg {
    width: 20px;
    height: 20px;
}
.content-list { margin: 0; padding-left: 18px; color: var(--ink-soft); line-height: 1.8; }
.contact-info-grid {
    display: grid;
    gap: 12px;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(17, 50, 95, 0.08);
    border-radius: 20px;
    background: linear-gradient(180deg, #f9fbff 0%, #eef4fc 100%);
    color: var(--ink);
    transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth), border-color 0.35s var(--ease-smooth);
}
.contact-info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(18, 46, 88, 0.12);
    border-color: rgba(35, 74, 140, 0.18);
}
.contact-info-item__icon {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: var(--accent);
    color: #fff;
    flex: 0 0 46px;
}
.contact-info-item__icon svg {
    width: 20px;
    height: 20px;
}
.contact-info-item strong,
.contact-info-item small {
    display: block;
}
.contact-info-item strong {
    font-size: 1rem;
}
.contact-info-item small {
    margin-top: 4px;
    color: var(--ink-soft);
    font-size: 0.88rem;
}
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #f9fbff;
    color: var(--ink);
}
.contact-form textarea { min-height: 180px; resize: vertical; }
.form-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 700;
}
.form-alert.success { background: rgba(18, 140, 92, 0.12); color: #136947; }
.form-alert.error { background: rgba(188, 51, 59, 0.12); color: #9b2430; }
.review-page-top { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.review-page-top span { color: var(--ink-soft); }
.review-page-rating { margin-top: 14px; color: #f4b63f; letter-spacing: 0.1em; }
.policy-stack { display: grid; gap: 20px; }
.service-detail-btn + .service-detail-btn { margin-top: 12px; }

.footer {
    position: relative;
    padding: 32px 16px 20px;
}
.footer::before {
    content: "";
    position: absolute;
    inset: 40px 0 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(23, 56, 109, 0.08), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(23, 56, 109, 0.08), transparent 28%);
    pointer-events: none;
}
.footer-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: 30px;
    border-radius: var(--radius-xl);
    background: #0f2f5d;
    color: #fff;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.footer-container::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.09), transparent 70%);
    animation: floatOrb 12s ease-in-out infinite;
}
.footer-container::after {
    content: "";
    position: absolute;
    inset: auto auto -120px -70px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 72%);
}
.footer-brand-panel {
    display: grid;
    gap: 22px;
}
.footer-brand-panel__cta {
    position: relative;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
}
.footer-brand-panel__cta::before {
    content: "";
    position: absolute;
    inset: auto -40px -80px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 72%);
    pointer-events: none;
}
.footer-brand-panel__cta h3 {
    margin: 0 0 8px;
    font-size: 1.7rem;
}
.footer-brand-panel__cta p {
    margin: 0;
    max-width: 52ch;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}
.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}
.footer-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
    transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth), background 0.35s var(--ease-smooth), color 0.35s var(--ease-smooth), border-color 0.35s var(--ease-smooth);
}
.footer-pill:hover {
    transform: translateY(-3px);
}
.footer-pill__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}
.footer-pill__icon svg {
    width: 18px;
    height: 18px;
}
.footer-pill--solid {
    background: linear-gradient(135deg, #f7fbff, #c8dcff);
    color: #0f2f5d;
    border: 1px solid rgba(184, 218, 255, 0.55);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}
.footer-pill--solid:hover {
    background: linear-gradient(135deg, #e6f0ff, #aecbff);
    color: #0f2f5d;
    border-color: rgba(184, 218, 255, 0.75);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
}
.footer-pill--ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
}
.footer-pill--ghost:hover {
    background: rgba(123, 175, 255, 0.18);
    border-color: rgba(184, 218, 255, 0.5);
    color: #fff;
}
.footer-utility-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-content: start;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-logo strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.2rem;
}
.footer-logo-img {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}
.footer-logo p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}
.footer-col {
    display: grid;
    gap: 12px;
    align-content: start;
}
.footer-col h4 {
    margin: 0;
    font-size: 1rem;
}
.footer-contact-cards {
    display: grid;
    gap: 12px;
}
.footer-contact-card {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: transform 0.35s var(--ease-smooth), background 0.35s var(--ease-smooth), border-color 0.35s var(--ease-smooth);
}
.footer-contact-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}
.footer-contact-card__label {
    color: rgba(188, 216, 255, 0.88);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.footer-link-cluster {
    display: grid;
    gap: 10px;
}
.footer-link-cluster a,
.footer-col a {
    color: rgba(255, 255, 255, 0.76);
    transition: color 0.28s ease, transform 0.28s ease;
}
.footer-link-cluster a:hover,
.footer-col a:hover {
    color: rgba(204, 225, 255, 0.98);
    transform: translateX(4px);
}
.footer-area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-area-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
}
.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: transform 0.35s var(--ease-smooth), background 0.35s var(--ease-smooth), border-color 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth);
}
.footer-socials a svg {
    width: 20px;
    height: 20px;
}
.footer-socials a:hover {
    transform: translateY(-4px);
    background: rgba(123, 175, 255, 0.18);
    border-color: rgba(184, 218, 255, 0.5);
    color: #fff;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

.reveal {
    opacity: 0;
    transform: translateY(42px) scale(0.98);
    transition: opacity 0.85s var(--ease-smooth), transform 0.85s var(--ease-smooth);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.reveal-slide-left {
    opacity: 0;
    transform: translateX(-42px);
    transition: opacity 0.85s var(--ease-smooth), transform 0.85s var(--ease-smooth);
}
.reveal-slide-right {
    opacity: 0;
    transform: translateX(42px);
    transition: opacity 0.85s var(--ease-smooth), transform 0.85s var(--ease-smooth);
}
.reveal-slide-left.is-visible,
.reveal-slide-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}
.trust-grid > *,
.sv-desktop-grid > *,
.steps-grid > *,
.wcu-list > *,
.reviews-page-grid > *,
.services-listing-grid > *,
.page-grid > *,
.rs-stage > * {
    transition-delay: var(--delay, 0ms);
}
[data-tilt] {
    transform-style: preserve-3d;
}
[data-tilt] > * {
    transform: translateZ(0);
}

@keyframes heroDrift {
    0% { transform: scale(1.06) translate3d(0, 0, 0); }
    100% { transform: scale(1.12) translate3d(-12px, -10px, 0); }
}

@keyframes floatOrb {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(14px, -18px, 0); }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
    .reveal,
    .reveal-slide-left,
    .reveal-slide-right {
        opacity: 1 !important;
        transform: none !important;
    }
}
.footer-bottom {
    width: min(100%, var(--max-width));
    margin: 14px auto 0;
    text-align: center;
    color: var(--ink-soft);
}

@media (max-width: 980px) {
    .desktop-nav,
    .header-actions .btn-call { display: none; }
    .mobile-toggle { display: flex; }
    .trust-grid,
    .sv-desktop-grid,
    .steps-grid,
    .fu-card,
    .footer-container,
    .footer-utility-grid,
    .about-card,
    .contact-grid,
    .service-detail-grid { grid-template-columns: 1fr; }
    .services-listing-grid,
    .reviews-page-grid,
    .page-grid { grid-template-columns: 1fr; }
    .hero, .hero-content { min-height: 680px; }
    .hero-content { padding: 104px 28px 34px; }
    .review-deck-card.is-left {
        transform: translateX(calc(-50% - 220px)) translateY(-10px) rotate(-8deg) scale(0.88);
    }
    .review-deck-card.is-right {
        transform: translateX(calc(-50% + 220px)) translateY(12px) rotate(8deg) scale(0.88);
    }
}

@media (max-width: 760px) {
    html,
    body.site-body,
    .site-main,
    .floating-header,
    .hero,
    .review-deck-wrap,
    .cta-section,
    .page-hero,
    .footer,
    .footer-container {
        overflow-x: clip;
    }
    .mobile-performance .header-inner,
    .mobile-performance .hero-tagline,
    .mobile-performance .call-modal-backdrop,
    .mobile-performance .mobile-menu {
        backdrop-filter: none;
    }
    .mobile-performance .hero::before,
    .mobile-performance .cta-inner::before,
    .mobile-performance .cta-inner::after,
    .mobile-performance .footer-container::before,
    .mobile-performance .footer-container::after,
    .mobile-performance .hero-bg-img {
        animation: none;
    }
    .mobile-performance .hero-bg-img {
        transform: scale(1.03);
    }
    .mobile-performance .header-inner,
    .mobile-performance .hero-stat,
    .mobile-performance .trust-card,
    .mobile-performance .sv-card,
    .mobile-performance .sv-desktop-card,
    .mobile-performance .review-deck-card,
    .mobile-performance .footer-brand-panel__cta,
    .mobile-performance .footer-contact-card {
        box-shadow: 0 12px 24px rgba(18, 46, 88, 0.1);
    }
    .site-main { padding-inline: 10px; }
    .floating-header { top: 10px; margin-top: 10px; }
    .header-inner { padding: 10px 12px; border-radius: 22px; }
    .logo-mark { width: 50px; height: 50px; }
    .logo-mark img { width: 40px; height: 40px; }
    .logo-tagline { font-size: 0.68rem; }
    .hero { margin-top: 18px; border-radius: 30px; }
    .hero, .hero-content { min-height: 620px; }
    .hero-content {
        align-items: center;
        padding: 120px 24px 28px;
        text-align: center;
    }
    .hero-description,
    .section-heading,
    .page-hero .section-shell,
    .steps-header { max-width: none; }
    .hero-buttons,
    .cta-buttons,
    .fu-btns { width: 100%; justify-content: center; }
    .hero-stats {
        width: 100%;
        justify-content: center;
    }
    .hero-stat {
        flex: 1 1 30%;
        min-width: 92px;
    }
    .btn-call,
    .btn-call-hero,
    .btn-book,
    .btn-whatsapp,
    .sv-btn-all,
    .about-btn,
    .sv-card-btn,
    .sv-desktop-card-btn,
    .fu-btn-call,
    .fu-btn-wa,
    .fu-btn-dir { width: 100%; }
    .trust-wrapper,
    .about-card,
    .page-hero .section-shell,
    .cta-inner,
    .footer-container { padding: 24px 18px; }
    .fu-map-stage {
        min-height: 360px;
        height: 360px;
    }
    .fu-map {
        min-height: 360px;
        height: 360px;
    }
    .fu-map-overlay-card {
        right: 14px;
        bottom: 14px;
        left: 14px;
        max-width: none;
        padding: 16px 16px 18px;
    }
    .footer-brand-panel__cta,
    .footer-contact-card {
        border-radius: 24px;
    }
    .footer-cta-actions {
        flex-direction: column;
    }
    .footer-pill {
        width: 100%;
    }
    .sv-track-wrap { display: block; }
    .sv-track {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 86%;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .sv-track::-webkit-scrollbar,
    .review-deck::-webkit-scrollbar { display: none; }
    .sv-card {
        overflow: hidden;
        border-radius: 28px;
        background: #fff;
        box-shadow: var(--shadow);
        scroll-snap-align: center;
    }
    .sv-card-img img { width: 100%; aspect-ratio: 1 / 0.82; object-fit: cover; }
    .sv-card-body { padding: 22px; }
    .sv-card-title { margin: 0 0 10px; font-size: 1.7rem; }
    .sv-card-desc { margin: 0; color: var(--ink-soft); line-height: 1.7; }
    .sv-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 18px;
    }
    .sv-dot,
    .review-deck-dot {
        width: 10px;
        height: 10px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: rgba(23, 56, 109, 0.22);
        cursor: pointer;
    }
    .sv-dot.active,
    .review-deck-dot.active { background: var(--accent); }
    .sv-desktop-grid { display: none; }
    .review-deck-wrap {
        min-height: 540px;
        padding-inline: 0;
    }
    .review-nav {
        display: grid;
        width: 48px;
        height: 48px;
    }
    .review-deck {
        position: relative;
        width: 100%;
        height: 500px;
        perspective: 1200px;
    }
    .review-deck-card,
    .review-deck-card.is-active,
    .review-deck-card.is-left,
    .review-deck-card.is-right,
    .review-deck-card.is-hidden {
        position: absolute;
        top: 20px;
        left: 50%;
        width: min(100%, 320px);
        min-height: 430px;
        opacity: 0;
        scroll-snap-align: unset;
    }
    .review-deck-card.is-active {
        opacity: 1;
        transform: translateX(-50%) translateY(0) rotate(0deg) scale(1);
    }
    .review-deck-card.is-left {
        opacity: 0.68;
        transform: translateX(calc(-50% - 128px)) translateY(-8px) rotate(-8deg) scale(0.9);
    }
    .review-deck-card.is-right {
        opacity: 0.68;
        transform: translateX(calc(-50% + 128px)) translateY(12px) rotate(8deg) scale(0.9);
    }
    .review-deck-card.is-hidden {
        opacity: 0;
        transform: translateX(-50%) translateY(20px) scale(0.82);
    }
    .review-deck-card__top h3 {
        font-size: 1.35rem;
    }
    .review-deck-card__text {
        font-size: 0.98rem;
        line-height: 1.72;
    }
    .review-deck-dots {
        margin-top: 18px;
    }
    .form-row,
    .fu-hours-row { grid-template-columns: 1fr; display: grid; }
    .footer { padding-inline: 10px; }
}
