:root {
    /* Layout */
    --container: 1120px;
    --pad: clamp(16px, 3vw, 28px);
    --section-y: clamp(72px, 7.5vw, 100px);
    --gap: clamp(16px, 2.6vw, 30px);
    --radius: 18px;

    /* Brand (tree theme green) */
    --brand: #16A34A;
    /* emerald */
    --brand2: #0F766E;
    /* deep teal */
    --brand-ink: #062311;
    --brand-glow: rgba(22, 163, 74, .22);
    --brand-glow2: rgba(15, 118, 110, .18);

    /* Text (dark UI -> light text) */
    --text: rgba(255, 255, 255, .92);
    --muted: rgba(255, 255, 255, .72);

    /* Backgrounds */
    --bg: #07110b;
    --surface: rgba(255, 255, 255, .08);
    --surface-2: rgba(255, 255, 255, .12);
    --card: rgba(255, 255, 255, .10);

    /* Borders + shadows */
    --border: rgba(255, 255, 255, .14);
    --shadow: 0 18px 55px rgba(0, 0, 0, .28);
    --shadow-soft: 0 14px 36px rgba(0, 0, 0, .16);

    /* Glass */
    --blur: 12px;

    /* Scroll guide */
    --sg-y: 0px;
}

/* ================= RESET / BASE ================= */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    line-height: 1.65;

    background:
        radial-gradient(1000px 420px at 12% 10%, rgba(22, 163, 74, .12), transparent 60%),
        radial-gradient(900px 380px at 88% 12%, rgba(15, 118, 110, .10), transparent 60%),
        linear-gradient(180deg, #07110b 0%, #08150f 45%, #07110b 100%);
}

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

/* Prefer top-center framing for cover images used across the site */
.about-image img,
.service-image img,
.t-avatar img {
    object-position: top center;
}

a {
    color: inherit;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.section {
    padding: var(--section-y) 0;
}

/* Default section background (green glass, non-hero) */
section:not(.hero),
.section {
    background:
        radial-gradient(900px 360px at 15% 0%, rgba(22, 163, 74, .14), transparent 60%),
        radial-gradient(820px 320px at 85% 0%, rgba(15, 118, 110, .12), transparent 60%),
        rgba(255, 255, 255, .03);
}

.section-alt {
    background:
        radial-gradient(900px 360px at 15% 0%, rgba(22, 163, 74, .14), transparent 60%),
        radial-gradient(820px 320px at 85% 0%, rgba(15, 118, 110, .12), transparent 60%),
        rgba(255, 255, 255, .04);
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.center {
    text-align: center;
}

.muted {
    color: var(--muted);
}

.sr-only {
    position: absolute;
    left: -9999px;
}

h1,
h2,
h3 {
    letter-spacing: -.02em;
    font-weight: 800;
}

p {
    margin: 0 0 14px;
    font-weight: 400;
}

/* Global content color safety */
main,
.site-main,
.content-area,
.content,
.entry-content,
.page-content,
section,
.section,
.container {
    color: var(--text);
}

main p,
.entry-content p,
.page-content p {
    color: rgba(255, 255, 255, .78);
}

/* ================= GLASS PRIMITIVE ================= */
.glass {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(var(--blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
    box-shadow: var(--shadow-soft);
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    margin-top: 22px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .92);
    transition: filter .15s ease, background .15s ease, border-color .15s ease;
}

.btn:hover {
    filter: brightness(1.03);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    border-color: rgba(255, 255, 255, .14);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
}

.btn-ghost {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .14);
}

/* ================= HEADER ================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: transparent;
    transition: background .2s ease, backdrop-filter .2s ease, box-shadow .2s ease;
}

.site-header.is-solid {
    background: rgba(10, 15, 24, .62);
    backdrop-filter: blur(var(--blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .32);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

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

.brand {
    flex-shrink: 0;
}

.brand img {
    max-height: 48px;
    width: auto;
}

.brand-text {
    font-weight: 800;
    text-decoration: none;
    font-size: 20px;
    color: rgba(255, 255, 255, .94);
}

/* desktop nav wrapper */
.nav-pill {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
}

.site-nav {
    display: block;
}

.site-nav .menu {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav .menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, .90);
    font-weight: 700;
    padding: 10px 8px;
    border-radius: 999px;
    transition: background .15s ease, color .15s ease;
}

.site-nav .menu a:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background .15s ease, border-color .15s ease;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .22);
}

.icon-btn svg {
    width: 18px;
    height: 18px;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
    transition: filter .15s ease;
}

.call-btn:hover {
    filter: brightness(1.03);
}

.call-btn svg {
    width: 18px;
    height: 18px;
}

/* mobile toggle */
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background .15s ease, border-color .15s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .22);
}

.nav-toggle-bars {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    position: relative;
}

.nav-toggle-bars:before,
.nav-toggle-bars:after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: #fff;
    transition: transform .18s ease, top .18s ease;
}

.nav-toggle-bars:before {
    top: -6px;
}

.nav-toggle-bars:after {
    top: 6px;
}

.nav-toggle.is-open .nav-toggle-bars {
    background: transparent;
}

.nav-toggle.is-open .nav-toggle-bars:before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bars:after {
    top: 0;
    transform: rotate(-45deg);
}

/* ================= RESPONSIVE NAV ================= */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-pill {
        padding: 0;
        background: transparent;
        border: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .site-nav {
        display: none;
    }

    .site-nav.is-open {
        display: block;
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 18px var(--pad) 22px;
        background: radial-gradient(900px 360px at 15% 0%, rgba(22, 163, 74, .18), transparent 60%),
            radial-gradient(820px 320px at 85% 0%, rgba(15, 118, 110, .14), transparent 60%),
            rgba(7, 17, 11, .78);
        backdrop-filter: blur(var(--blur)) saturate(160%);
        -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
        border-bottom: 1px solid rgba(255, 255, 255, .10);
        box-shadow: 0 16px 42px rgba(0, 0, 0, .35);
    }

    /* responsive full-width pills */
    .site-nav .menu {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .site-nav .menu li {
        width: 100%;
    }

    .site-nav .menu a {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
        white-space: normal;
        line-height: 1.2;

        padding: 14px 16px;
        border-radius: 16px;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .14);
    }

    .call-btn span {
        display: none;
    }

    .call-btn {
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
        border-radius: 14px;
    }
}

@media (max-width: 640px) {
    .header-row {
        height: 70px;
        gap: 10px;
    }

    .icon-btn,
    .call-btn,
    .nav-toggle {
        width: 38px;
        height: 38px;
    }

    .brand-text {
        font-size: 18px;
    }

    .site-nav.is-open {
        top: 70px;
    }
}

/* ================= HERO ================= */
.hero {
    position: relative;
    color: #fff;
    overflow: hidden;

    background:
        radial-gradient(900px 420px at 18% 12%, rgba(22, 163, 74, .22), transparent 62%),
        radial-gradient(760px 420px at 82% 22%, rgba(15, 118, 110, .18), transparent 60%),
        linear-gradient(180deg, #07110b 0%, #08150f 45%, #07110b 100%);
    background-size: cover;
    background-position: center;

    min-height: 94svh;
    display: flex;
    align-items: center;

    padding: calc(110px + env(safe-area-inset-top)) 0 90px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 420px at 18% 10%, rgba(22, 163, 74, .22), transparent 62%),
        radial-gradient(760px 420px at 82% 22%, rgba(15, 118, 110, .16), transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .42));
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.hero-card {
    display: inline-block;
    width: min(920px, 100%);
    padding: 30px 18px 26px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(var(--blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
    box-shadow: var(--shadow);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .2px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    margin: 0 auto 16px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 6px var(--brand-glow);
}

.hero h1 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4.2vw, 54px);
    line-height: 1.12;
}

.hero .lead {
    margin: 0 auto;
    max-width: 72ch;
    color: rgba(255, 255, 255, .86);
    font-size: 15.5px;
    font-weight: 400;
}

.hero-trust {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.hero-trust span {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    font-weight: 700;
    font-size: 12.5px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 26px;
    gap: 18px;
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.hero-scroll .wheel {
    width: 10px;
    height: 14px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .7);
    position: relative;
}

.hero-scroll .wheel::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 3px;
    width: 2px;
    height: 4px;
    background: rgba(255, 255, 255, .75);
    transform: translateX(-50%);
    border-radius: 2px;
    animation: wheel 1.25s infinite ease;
}

@keyframes wheel {
    0% {
        transform: translate(-50%, 0);
        opacity: .9;
    }

    70% {
        transform: translate(-50%, 6px);
        opacity: .2;
    }

    100% {
        transform: translate(-50%, 6px);
        opacity: .2;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: calc(92px + env(safe-area-inset-top)) 0 78px;
        min-height: 90svh;
    }
}

@media (max-width: 640px) {
    .hero-card {
        padding: 24px 14px 20px;
        border-radius: 18px;
    }
}

/* ================= ABOUT ================= */
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: calc(var(--gap) + 8px);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 540px;
    border-radius: 22px;
    object-fit: cover;
    object-position: top center;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: var(--shadow-soft);
}

.about-image::after {
    content: "";
    position: absolute;
    inset: -14px;
    z-index: -1;
    border-radius: 26px;
    background:
        radial-gradient(460px 240px at 15% 15%, rgba(22, 163, 74, .16), transparent 60%),
        radial-gradient(420px 240px at 85% 35%, rgba(15, 118, 110, .12), transparent 58%);
    filter: blur(12px);
    opacity: .95;
}

.about-content {
    max-width: 560px;
}

.about-content h2 {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .92);
    font-size: clamp(22px, 2.2vw, 34px);
    line-height: 1.2;
}

.about-content p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .80);
    font-size: 15px;
    line-height: 1.78;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--gap);
    }

    .about-content {
        max-width: 100%;
        text-align: center;
    }

    .about-image img {
        height: 360px;
    }
}

/* ================= SERVICES ================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gap);
    margin-top: 34px;
}

.service-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(var(--blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
    transition: background .15s ease, border-color .15s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .18);
}

.service-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: top center;
}

.service-content {
    padding: 22px 20px 24px;
}

.service-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .94);
}

.service-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .78);
}

/* ================= TESTIMONIALS ================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gap);
    margin-top: 30px;
}

.t-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(var(--blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
    transition: background .15s ease, border-color .15s ease;
}

.t-card:hover {
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .18);
}

.t-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.t-avatar {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(22, 163, 74, .14);
    border: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    object-position: top center;
    flex: 0 0 auto;
}

.t-initial {
    font-weight: 800;
    color: rgba(255, 255, 255, .92);
    font-size: 18px;
}

.t-name {
    font-weight: 800;
    color: rgba(255, 255, 255, .94);
    line-height: 1.2;
}

.t-sub {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .70);
    margin-top: 2px;
}

.t-stars {
    letter-spacing: 2px;
    font-size: 14px;
    margin: 6px 0 10px;
    color: #fbbf24;
}

.t-text {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 14.5px;
    line-height: 1.7;
}

/* ================= FAQ ================= */
#faq .container>p {
    max-width: 720px;
    margin: 10px auto 0;
    text-align: center;
    color: rgba(255, 255, 255, .74);
}

.faq-list {
    max-width: 900px;
    margin: 30px auto 0;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(var(--blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 16px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
}

.faq-q-text {
    font-size: 16px;
    font-weight: 800;
    color: rgba(255, 255, 255, .94);
}

.faq-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 163, 74, .16);
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .92);
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
    transition: transform .15s ease, background .15s ease;
    flex: 0 0 auto;
}

.faq-a {
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.faq-a-inner {
    padding: 14px 16px 18px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.75;
    font-size: 14.5px;
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    background: rgba(15, 118, 110, .18);
}

/* ================= QUOTE (GHL) ================= */
.quote-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.quote-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    backdrop-filter: blur(var(--blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
}

.quote-head {
    padding: 28px 18px 16px;
    text-align: center;
}

.quote-head h2 {
    margin: 0;
    color: rgba(255, 255, 255, .94);
}

.quote-sub {
    margin: 10px auto 0;
    max-width: 720px;
    color: rgba(255, 255, 255, .74);
    line-height: 1.75;
}

.ghl-embed {
    padding: 0 12px 16px;
}

.ghl-embed iframe {
    width: 100%;
    border: none;
    border-radius: 14px;
    display: block;
    background: rgba(255, 255, 255, .10);
    min-height: 520px;
    height: 807px;
    border: 1px solid rgba(255, 255, 255, .10);
}

/* ================= FOOTER (GLASS) ================= */
.site-footer {
    margin-top: 0;
    color: rgba(255, 255, 255, .88);
}

.footer-glass {
    position: relative;
    background:
        radial-gradient(1100px 260px at 20% 0%, rgba(22, 163, 74, .18), transparent 60%),
        radial-gradient(900px 220px at 85% 10%, rgba(15, 118, 110, .14), transparent 55%),
        rgba(255, 255, 255, .06);
    backdrop-filter: blur(var(--blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: var(--gap);
    padding: 34px var(--pad) 20px;
    align-items: start;
}

.footer-logo {
    display: inline-block;
    font-weight: 800;
    letter-spacing: .2px;
    text-decoration: none;
    font-size: 18px;
    color: rgba(255, 255, 255, .92);
}

.footer-desc {
    margin: 10px 0 16px;
    max-width: 46ch;
    color: rgba(255, 255, 255, .74);
    line-height: 1.8;
    font-size: 14.5px;
}

.footer-title {
    margin: 0 0 10px;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .70);
    font-weight: 700;
}

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

.footer-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, .86);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity .15s ease;
}

.footer-menu a:hover {
    opacity: 1;
}

.footer-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    max-width: max-content;
}

.footer-call .icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 163, 74, .18);
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .92);
}

.footer-call-text {
    font-weight: 800;
    color: rgba(255, 255, 255, .94);
}

.footer-bottom {
    padding: 16px var(--pad) 20px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.footer-bottom-left {
    font-size: 13px;
    color: rgba(255, 255, 255, .72);
}

/* ================= REVEAL ================= */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-scroll .wheel::after {
        animation: none;
    }
}

/* ================= SCROLL GUIDE ================= */
.scroll-guide {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 60;
    width: 46px;
    padding: 14px 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(var(--blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
    box-shadow: var(--shadow-soft);
}

.sg-rail {
    position: absolute;
    left: 50%;
    top: 18px;
    bottom: 18px;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(22, 163, 74, 0), rgba(22, 163, 74, .55), rgba(15, 118, 110, 0));
    opacity: .95;
}

.sg-dots {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 6px 0;
    justify-items: center;
}

.sg-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .28);
    border: 2px solid rgba(255, 255, 255, .78);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0);
    transition: background .15s ease, box-shadow .15s ease;
    text-decoration: none;
}

.sg-dot.is-active {
    background: var(--brand);
    box-shadow: 0 0 0 6px var(--brand-glow);
}

.sg-icon {
    position: absolute;
    left: 50%;
    top: 22px;
    transform: translate(-50%, var(--sg-y));
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(0, 0, 0, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .20);
    transition: transform .35s cubic-bezier(.2, .9, .2, 1);
    will-change: transform;
}

@media (max-width: 900px) {
    .scroll-guide {
        display: none !important;
    }
}

/* ================= GRID BREAKPOINTS ================= */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .quote-head {
        padding: 22px 14px 12px;
    }

    .ghl-embed {
        padding: 0 10px 14px;
    }

    .ghl-embed iframe {
        border-radius: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--gap);
        padding: 28px var(--pad) 18px;
    }

    .footer-bottom {
        padding: 16px var(--pad) 22px;
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ================= BACK TO TOP (SIDE) ================= */
.footer-top {
    position: fixed;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    height: 46px;
    padding: 0 14px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(var(--blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);

    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .28);

    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;

    transition: opacity .15s ease;
}

.footer-top:hover {
    opacity: .98;
}

.footer-top-ico {
    width: 28px;
    height: 28px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 163, 74, .22);
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .92);
}

.footer-top-txt {
    font-size: 12px;
    line-height: 1;
}

.footer-top.is-hidden {
    opacity: 0;
    pointer-events: none;
}

@supports (padding: max(0px)) {
    .footer-top {
        right: max(14px, env(safe-area-inset-right));
    }
}

@media (max-width: 640px) {
    .footer-top {
        top: auto;
        bottom: 16px;
        transform: none;
        right: 10px;
    }
}

/* Safety spacing for pages without hero (prevents header overlap) */
main {
    padding-top: 78px;
}

@media (max-width: 640px) {
    main {
        padding-top: 70px;
    }
}

.hero+.section,
.hero+section {
    padding-top: var(--section-y);
}

/* ===== Button spacing (gap from above elements) ===== */

/* when a button comes after text/headings or common blocks */
p+.btn,
h1+.btn,
h2+.btn,
h3+.btn,
.service-text+.btn,
.quote-sub+.btn,
.t-text+.btn,
.hero-trust+.btn,
.hero-actions+.btn,
.service-content>.btn,
.quote-head>.btn {
    margin-top: 18px;
}

/* if you have grouped buttons (row) */
.btn-row,
.hero-actions {
    gap: 18px;
}

/* extra breathing room for CTA buttons inside sections */
.section .btn,
section .btn {
    margin-top: 18px;
}

/* ================= LEGAL PAGES (GREEN GLASS) ================= */
.legal-head {
    text-align: center;
    margin: 0 auto 18px;
    max-width: 860px;
}

.legal-title {
    margin: 0 0 8px;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.15;
    color: rgba(255, 255, 255, .94);
}

.legal-sub {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

/* glass card with green tint */
.legal-card {
    max-width: 980px;
    margin: 0 auto;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: var(--shadow-soft);
    background:
        radial-gradient(900px 360px at 15% 0%, rgba(22, 163, 74, .14), transparent 60%),
        radial-gradient(820px 320px at 85% 0%, rgba(15, 118, 110, .12), transparent 60%),
        rgba(255, 255, 255, .06);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    overflow: hidden;
}

.legal-content {
    padding: 22px 18px;
    color: rgba(255, 255, 255, .88);
}

.legal-content h2,
.legal-content h3 {
    margin: 18px 0 10px;
    color: rgba(255, 255, 255, .94);
}

.legal-content p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .78);
}

.legal-content ul {
    margin: 0 0 12px 18px;
    color: rgba(255, 255, 255, .78);
}