* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 6% 8%, rgba(44, 139, 98, 0.12), transparent 28rem),
        radial-gradient(circle at 92% 16%, rgba(75, 100, 202, 0.12), transparent 30rem),
        #ffffff;
}

body.menu-open {
    overflow: hidden;
}

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

.site-shell {
    position: relative;
    isolation: isolate;
}

.container-lux {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    left: 12px;
    top: 12px;
    z-index: 100;
    transform: translateY(-150%);
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    padding: 10px 16px;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-decoration: none;
}

.logo-mark {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--primary), var(--secondary));
    box-shadow: 0 14px 30px rgba(44, 139, 98, 0.24);
    color: #ffffff;
}

.logo-mark svg {
    width: 25px;
    height: 25px;
}

.desktop-nav {
    display: none !important;
    align-items: center;
    gap: 20px;
}

.desktop-nav a,
.mobile-nav-panel a {
    color: #111827;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.desktop-nav a:hover,
.mobile-nav-panel a:hover {
    color: var(--primary-dark);
}

.header-phone {
    display: none !important;
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: inline-flex !important;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 16px;
    background: #ffffff;
    color: #111827;
}

.mobile-menu-toggle span,
.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.mobile-menu-toggle span {
    position: relative;
}

.mobile-menu-toggle span::before {
    position: absolute;
    top: -7px;
}

.mobile-menu-toggle span::after {
    position: absolute;
    top: 7px;
}

.mobile-nav-panel {
    display: none;
    position: fixed;
    inset: 78px 16px auto 16px;
    z-index: 60;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
    padding: 18px;
}

.mobile-nav-panel.is-open {
    display: block;
    animation: menuReveal 220ms ease-out both;
}

.mobile-nav-panel nav {
    display: grid;
    gap: 14px;
}

.btn-primary,
.btn-secondary,
.btn-ghost,
.btn-phone {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn-primary,
.btn-phone {
    background: #111827;
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.22);
    padding: 0 22px;
}

.btn-primary:hover,
.btn-phone:hover {
    transform: translateY(-2px);
    background: #000000;
    color: #ffffff;
    box-shadow: 0 22px 54px rgba(17, 24, 39, 0.28);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    padding: 0 22px;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.24);
    color: #ffffff;
}

.btn-ghost {
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: #ffffff;
    color: #111827;
    padding: 0 20px;
}

.btn-ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(44, 139, 98, 0.4);
    color: #111827;
}

.hero-section {
    overflow: hidden;
    padding: 4px 0 42px;
}

.hero-card {
    position: relative;
    display: grid;
    gap: 24px;
    overflow: hidden;
    border: 1px solid rgba(44, 139, 98, 0.16);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(44, 139, 98, 0.96), rgba(75, 100, 202, 0.94)),
        #2c8b62;
    padding: 22px;
    box-shadow: 0 32px 90px rgba(31, 107, 74, 0.18);
}

.hero-card::before,
.hero-card::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 48% 52% 61% 39% / 45% 36% 64% 55%;
    content: "";
    pointer-events: none;
}

.hero-card::before {
    width: 360px;
    height: 210px;
    right: -120px;
    top: -50px;
    transform: rotate(-12deg);
}

.hero-card::after {
    width: 300px;
    height: 160px;
    left: -110px;
    bottom: -55px;
    transform: rotate(18deg);
}

.hero-copy,
.hero-media {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(218, 156, 10, 0.42);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    padding: 8px 12px;
}

.hero-copy h1 {
    margin: 18px 0 14px;
    color: #ffffff;
    font-size: clamp(35px, 12vw, 62px);
    line-height: 0.94;
    letter-spacing: -0.07em;
}

.hero-lede {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 18px;
    line-height: 1.72;
}

.stars {
    margin: 12px 0;
    color: var(--accent);
    font-size: 24px;
    letter-spacing: 0.08em;
}

.trust-icons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0 20px;
}

.trust-icons-row img {
    width: auto;
    height: 48px;
    max-width: 118px;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
    padding: 5px 9px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.hero-media {
    align-self: stretch;
}

.hero-media-frame {
    height: 100%;
    min-height: 320px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 28px 70px rgba(17, 24, 39, 0.26);
}

.hero-media-frame img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.hero-proof div {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    padding: 14px;
}

.hero-proof strong {
    display: block;
    font-size: 20px;
}

.hero-proof span {
    display: block;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
}

.section-pad {
    padding: 58px 0;
}

.section-head {
    max-width: 790px;
    margin-bottom: 28px;
}

.section-head.center {
    margin-inline: auto;
    text-align: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h2 {
    margin: 9px 0 12px;
    color: #111827;
    font-size: clamp(28px, 8.6vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

h3,
h4 {
    color: #111827;
    font-size: 20px;
    line-height: 1.25;
}

p,
li,
td,
th {
    font-size: 16px;
    line-height: 1.75;
}

.intro-panel {
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    padding: 24px;
}

.two-col {
    display: grid;
    gap: 24px;
    align-items: center;
}

.two-col.reverse .image-col {
    order: -1;
}

.image-col img,
.image-card img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

.image-col img {
    aspect-ratio: 3 / 2;
}

.service-cloud {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.service-pill {
    display: flex;
    min-height: 60px;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(44, 139, 98, 0.14);
    border-radius: 18px;
    background: #ffffff;
    color: #111827;
    font-weight: 800;
    padding: 11px 12px;
}

.mini-icon {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(44, 139, 98, 0.13), rgba(75, 100, 202, 0.13));
    color: var(--primary-dark);
}

.mini-icon svg,
.feature-icon svg,
.pay-icon svg {
    width: 22px;
    height: 22px;
}

.soft-green {
    background: linear-gradient(180deg, #f7faf8, #ffffff);
}

.soft-blue {
    background: linear-gradient(180deg, #f4f6ff, #ffffff);
}

.reason-grid {
    display: grid;
    gap: 16px;
}

.reason-card {
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 24px;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.reason-card h3 {
    margin: 12px 0 7px;
}

.feature-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 18px;
    background: #fff8e8;
    color: #8a5f00;
}

.diagnostics-box {
    overflow: hidden;
    border-radius: 34px;
    background: #0f172a;
    color: #f9fafb;
}

.diagnostics-box h2,
.diagnostics-box h3 {
    color: #ffffff;
}

.diagnostics-box p,
.diagnostics-box li {
    color: #e5e7eb;
}

.diagnostics-inner {
    display: grid;
    gap: 24px;
    padding: 24px;
}

.diagnostics-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.diagnostics-list li {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 14px;
}

.reviews-section {
    background: #ffffff;
}

.reviews-shell {
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 2px 18px;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 92%;
    scroll-snap-align: start;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 20px 54px rgba(15, 23, 42, 0.08);
    padding: 22px;
}

.review-card .stars {
    margin: 0 0 12px;
    font-size: 18px;
}

.review-card strong {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    font-size: 18px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.carousel-btn {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    font-size: 22px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 22px;
    background: #ffffff;
    padding: 18px;
}

.area-grid {
    display: grid;
    gap: 16px;
}

.area-card,
.payment-card {
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 24px;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.tag-list span {
    border-radius: 999px;
    background: #f4f6ff;
    color: #111827;
    font-weight: 800;
    padding: 8px 12px;
}

.payment-grid {
    display: grid;
    gap: 16px;
}

.pay-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 18px;
    background: #eaf5f0;
    color: var(--primary-dark);
}

.cta-band {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient(135deg, #111827, #24327a 48%, #1f6b4a);
    color: #f9fafb;
    padding: 26px;
}

.cta-band::before {
    position: absolute;
    width: 390px;
    height: 190px;
    right: -120px;
    top: -80px;
    border: 1px solid rgba(218, 156, 10, 0.38);
    border-radius: 54% 46% 61% 39% / 54% 35% 65% 46%;
    content: "";
}

.cta-band h2,
.cta-band p {
    position: relative;
    color: #ffffff;
}

.cta-band p {
    max-width: 760px;
}

.site-footer {
    padding: 48px 0 86px;
    background: #0f172a;
    color: #e5e7eb;
    font-size: 14px;
}

.site-footer a {
    color: #ffffff;
}

.footer-grid {
    display: grid;
    gap: 24px;
}

.footer-logo .logo-link {
    color: #ffffff;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-disclaimer {
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 22px;
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.7;
}

.mobile-sticky-call {
    display: none !important;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    transform: translateY(110%);
    background: #111827;
    color: #ffffff;
    box-shadow: 0 -18px 46px rgba(15, 23, 42, 0.28);
    opacity: 0;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    text-align: center;
    text-decoration: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-sticky-call span {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    white-space: nowrap;
}

.mobile-sticky-call.is-visible {
    display: block !important;
    transform: translateY(0);
    opacity: 1;
}

.reveal {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(18px);
    transition: opacity 700ms ease, filter 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

@keyframes menuReveal {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (min-width: 640px) {
    .container-lux {
        width: min(1180px, calc(100% - 48px));
    }

    .service-cloud,
    .reason-grid,
    .payment-grid,
    .area-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex !important;
    }

    .header-phone {
        display: inline-flex !important;
    }

    .mobile-menu-toggle,
    .mobile-nav-panel,
    .mobile-sticky-call,
    .mobile-sticky-call.is-visible {
        display: none !important;
    }

    .hero-section {
        padding: 48px 0 58px;
    }

    .hero-card {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
        align-items: stretch;
        padding: 34px;
    }

    .two-col {
        grid-template-columns: minmax(0, 65fr) minmax(270px, 35fr);
    }

    .two-col.reverse {
        grid-template-columns: minmax(270px, 35fr) minmax(0, 65fr);
    }

    .two-col.reverse .image-col {
        order: 0;
    }

    .reason-grid,
    .payment-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .diagnostics-inner {
        grid-template-columns: minmax(0, 65fr) minmax(270px, 35fr);
        padding: 34px;
    }

    .review-card {
        min-width: calc((100% - 32px) / 3);
    }

    .footer-grid {
        grid-template-columns: 1.25fr 1fr 1fr;
        align-items: start;
    }
}

@media (min-width: 1024px) {
    .hero-copy h1 {
        font-size: 62px;
    }

    .section-pad {
        padding: 82px 0;
    }

    .service-cloud {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .logo-link {
        font-size: 24px;
    }

    .logo-text {
        max-width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary,
    .mobile-nav-panel .btn-phone {
        width: 100%;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .service-cloud {
        grid-template-columns: 1fr;
    }
}

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

    .reveal {
        opacity: 1;
        filter: none;
        transform: none;
    }
}
