:root {
    /* Greens from topcleaning.au */
    --navy: #09150f;
    --navy-2: #0d2418;
    --chrome: #075f33;
    --chrome-2: #084d2b;
    --teal: #06ae5a;
    --teal-deep: #075f33;
    --aqua: #2fd978;
    --sand: #e8f8ef;
    --mist: #f2fbf6;
    --ink: #09150f;
    --muted: #5a6f64;
    --white: #ffffff;
    --line: rgba(9, 21, 15, 0.08);
    --shadow: 0 18px 50px rgba(9, 21, 15, 0.12);
    --radius: 1.25rem;
    --font: "Outfit", system-ui, sans-serif;
    --display: "Fraunces", Georgia, serif;
    --header-h: 6rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background:
        radial-gradient(1200px 600px at 90% -10%, rgba(6, 174, 90, 0.12), transparent 55%),
        radial-gradient(900px 500px at -10% 20%, rgba(7, 95, 51, 0.08), transparent 50%),
        linear-gradient(180deg, #f5fcf8 0%, #eaf7f0 40%, #f5fcf8 100%);
    line-height: 1.65;
    overflow-x: hidden;
}

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

a {
    color: var(--teal-deep);
    text-decoration: none;
}

a:hover {
    color: var(--teal);
}

h1, h2, h3, h4 {
    font-family: var(--display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.eyebrow {
    display: inline-block;
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal-deep);
    margin-bottom: 0.75rem;
}

.eyebrow.light {
    color: var(--aqua);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    padding-top: env(safe-area-inset-top, 0px);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(9, 21, 15, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.topbar {
    background: var(--chrome);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.85rem;
    padding: 0.45rem 0;
}

.topbar a {
    color: rgba(255, 255, 255, 0.92);
    margin-right: 1.25rem;
}

.topbar a:hover {
    color: #fff;
}

.topbar i {
    margin-right: 0.35rem;
    color: var(--aqua);
}

.topbar .social-icons-topbar {
    gap: 0.4rem;
}

.topbar .social-icons-topbar a {
    margin-right: 0;
}

.topbar .social-icon {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 0.45rem;
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    font-size: 0.95rem;
}

.topbar .social-icon i {
    margin-right: 0;
    color: inherit;
}

.topbar .social-icon:hover {
    background: var(--teal);
    color: #fff !important;
}

.topbar-trust {
    white-space: nowrap;
}

.navbar {
    padding: 0;
    min-height: 0;
}

.navbar > .container {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.45rem 0.35rem 0.45rem 0.15rem;
    margin: 0 1rem 0 0;
    line-height: 0;
}

.brand-logo {
    height: 96px;
    width: auto;
    max-width: min(360px, 55vw);
    object-fit: contain;
    display: block;
    border-radius: 0;
}

@media (max-width: 575.98px) {
    .brand-logo {
        height: 64px;
        max-width: 220px;
    }
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-name {
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
}

.brand-sub {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--ink) !important;
    padding: 0.5rem 0.85rem !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--teal-deep) !important;
}

.dropdown-menu {
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 0.5rem;
    max-height: min(70vh, 420px);
    overflow-y: auto;
}

.dropdown-item {
    border-radius: 0.65rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.92rem;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:hover {
    background: var(--sand);
    color: var(--navy);
}

.btn-cta {
    --bs-btn-bg: var(--teal);
    --bs-btn-border-color: var(--teal);
    --bs-btn-hover-bg: var(--teal-deep);
    --bs-btn-hover-border-color: var(--teal-deep);
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-btn-active-bg: var(--teal-deep);
    --bs-btn-active-border-color: var(--teal-deep);
    --bs-btn-active-color: #fff;
    border-radius: 999px;
    font-weight: 600;
    padding: 0.7rem 1.35rem;
    box-shadow: 0 10px 24px rgba(6, 174, 90, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(6, 174, 90, 0.4);
}

.btn-ghost {
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    background: transparent;
    font-weight: 600;
    padding: 0.7rem 1.35rem;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

/* Billboard hero */
.billboard {
    --gold: #d8a23f;
    --gold-dark: #b4832e;
    position: relative;
    isolation: isolate;
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: clamp(5rem, 11vw, 9.5rem) 0 clamp(4rem, 8vw, 6.5rem);
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(ellipse 62% 58% at 50% 42%, rgba(255, 255, 255, 0.78) 0%, transparent 68%),
        #dff6ea;
}

.billboard::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(rgba(7, 95, 51, 0.1) 1.1px, transparent 1.1px);
    background-size: 26px 26px;
    mask-image: radial-gradient(ellipse 82% 74% at 50% 42%, #000 12%, transparent 78%);
    pointer-events: none;
}

.billboard-fx {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.billboard-wash {
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(ellipse 42% 38% at 18% 28%, rgba(6, 174, 90, 0.42), transparent 62%),
        radial-gradient(ellipse 38% 42% at 86% 22%, rgba(37, 99, 255, 0.22), transparent 60%),
        radial-gradient(ellipse 40% 36% at 78% 78%, rgba(47, 217, 120, 0.34), transparent 62%),
        radial-gradient(ellipse 32% 32% at 22% 82%, rgba(232, 168, 46, 0.22), transparent 62%);
    filter: blur(12px);
    animation: auroraShift 22s ease-in-out infinite;
}

.billboard-beam {
    position: absolute;
    inset: -10%;
    background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.42) 50%, transparent 62%);
    mix-blend-mode: soft-light;
    animation: beamSweep 10s ease-in-out infinite;
}

.billboard-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(28px);
    opacity: 0.85;
}

.billboard-orb-a {
    width: 38vw;
    height: 38vw;
    max-width: 460px;
    max-height: 460px;
    left: -6%;
    top: 8%;
    background: radial-gradient(circle, rgba(6, 174, 90, 0.5), transparent 70%);
    animation: orbDrift 16s ease-in-out infinite;
}

.billboard-orb-b {
    width: 34vw;
    height: 34vw;
    max-width: 420px;
    max-height: 420px;
    right: -8%;
    bottom: 4%;
    background: radial-gradient(circle, rgba(37, 99, 255, 0.28), transparent 70%);
    animation: orbDrift 20s ease-in-out infinite reverse;
}

.billboard-orb-c {
    width: 22vw;
    height: 22vw;
    max-width: 260px;
    max-height: 260px;
    left: 42%;
    top: -6%;
    background: radial-gradient(circle, rgba(232, 168, 46, 0.28), transparent 70%);
    animation: orbDrift 18s ease-in-out infinite 1.5s;
}

.billboard-orb-d {
    width: 18vw;
    height: 18vw;
    max-width: 220px;
    max-height: 220px;
    left: 58%;
    bottom: 6%;
    background: radial-gradient(circle, rgba(47, 217, 120, 0.36), transparent 70%);
    animation: orbDrift 14s ease-in-out infinite 2s;
}

.billboard-bubble {
    position: absolute;
    bottom: -8%;
    left: var(--x);
    width: var(--s);
    height: var(--s);
    border-radius: 50%;
    border: 1.5px solid rgba(6, 174, 90, 0.28);
    background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.95), rgba(6, 174, 90, 0.16));
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.7);
    animation: bubbleRise var(--t) linear infinite;
    animation-delay: var(--d);
}

.billboard-mark {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #2563ff;
    clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
    opacity: 0.45;
    animation: sparkFloat 7s ease-in-out infinite;
}

.billboard-mark-a { left: 14%; top: 32%; animation-delay: 0s; }
.billboard-mark-b { right: 16%; top: 24%; animation-delay: 1.4s; background: #06ae5a; }
.billboard-mark-c { left: 22%; bottom: 22%; animation-delay: 2.2s; background: #e8a82e; }
.billboard-mark-d { right: 24%; bottom: 28%; animation-delay: 3.1s; }

.billboard-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.billboard-inner > * {
    animation: riseIn 0.75s ease both;
}

.billboard-rotate { animation-delay: 0.08s; }
.billboard-title { animation-delay: 0.2s; }
.billboard-actions { animation-delay: 0.38s; }
.billboard-trust { animation-delay: 0.5s; }

.billboard-rotate {
    margin: 0 auto 0.35rem;
    width: 100%;
    font-family: "IBM Plex Serif", Georgia, serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(1.65rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #2563ff;
}

.billboard-rotate-view {
    position: relative;
    display: block;
    height: 1.2em;
    overflow: hidden;
}

.billboard-word {
    position: absolute;
    left: 50%;
    top: 0;
    display: flex;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    opacity: 0;
    transform: translate(-50%, 0);
    pointer-events: none;
}

.billboard-word.is-in {
    opacity: 1;
}

.billboard-word.is-out {
    opacity: 0;
    transition: opacity 0.16s ease;
}

.billboard-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.38em);
}

.billboard-word.is-in .billboard-char {
    animation: charIn 0.38s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    animation-delay: calc(var(--i) * 24ms);
}

.billboard-title {
    width: 100%;
    margin: 0 0 2.15rem;
    font-weight: 800;
}

.billboard-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-family: "Archivo", var(--font);
    font-size: clamp(1.85rem, 4.9vw, 4.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #111;
    white-space: nowrap;
}

.billboard-row-last {
    display: block;
    margin-top: 0.08em;
    white-space: normal;
}

.billboard-reel {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    width: 2.35em;
    height: 0.72em;
    border-radius: 999px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    animation: reelFloat 5.5s ease-in-out infinite;
}

.billboard-reel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.billboard-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1.05rem 1.8rem;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-family: "Archivo", var(--font);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.billboard-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.2) 48%, transparent 66%);
    transform: translateX(-130%);
    animation: ctaShine 4.8s ease-in-out 1.2s infinite;
}

.billboard-cta:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: none;
}

.billboard-trust {
    margin: 1.05rem 0 0;
    font-family: "Manrope", var(--font);
    font-size: 0.82rem;
    font-weight: 600;
    color: #66706c;
}

.billboard-inner > .visually-hidden {
    animation: none;
}

.billboard-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--billboard-poster, none) center/cover no-repeat #0d2418;
}

.billboard-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.06);
}

.billboard-has-video {
    background: #0d2418;
}

.billboard-has-video::before,
.billboard-has-video .billboard-fx {
    display: none;
}

.billboard-has-video::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(9, 21, 15, 0.62) 0%, rgba(9, 21, 15, 0.4) 42%, rgba(9, 21, 15, 0.72) 100%),
        linear-gradient(90deg, rgba(7, 95, 51, 0.38) 0%, transparent 48%, rgba(8, 77, 43, 0.32) 100%);
}

.billboard-has-video .billboard-row,
.billboard-has-video .billboard-row-last {
    color: #fff;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.billboard-has-video .billboard-rotate {
    color: #8ec5ff;
}

.billboard-has-video .billboard-trust {
    color: rgba(255, 255, 255, 0.86);
}

.billboard-has-video .btn-hero-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.88);
}

.billboard-has-video .btn-hero-outline:hover {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
}

.billboard-has-video .billboard-reel {
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

@keyframes riseIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}

@keyframes charIn {
    from { opacity: 0; transform: translateY(0.38em); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes orbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(18px, -22px) scale(1.08); }
}

@keyframes auroraShift {
    0%, 100% { transform: translate(-4%, -2%) rotate(0deg) scale(1); }
    50% { transform: translate(5%, 4%) rotate(8deg) scale(1.08); }
}

@keyframes beamSweep {
    0%, 100% { transform: translateX(-18%) rotate(8deg); opacity: 0.2; }
    50% { transform: translateX(18%) rotate(8deg); opacity: 0.7; }
}

@keyframes bubbleRise {
    0% { transform: translateY(12vh) scale(0.7); opacity: 0; }
    12% { opacity: 0.7; }
    100% { transform: translateY(-92vh) scale(1.15); opacity: 0; }
}

@keyframes sparkFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.35; }
    50% { transform: translateY(-10px) rotate(180deg); opacity: 0.7; }
}

@keyframes reelFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes ctaShine {
    0%, 62% { transform: translateX(-130%); }
    82%, 100% { transform: translateX(130%); }
}

@keyframes sparkSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.18); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes numPop {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
}

@keyframes pillBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes pillShine {
    0%, 58% { transform: translateX(-130%); }
    78%, 100% { transform: translateX(130%); }
}

@keyframes pillCheck {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.18); }
}

@keyframes slideZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

@keyframes captionPop {
    from { opacity: 0; transform: translateY(22px) scale(0.94); }
    to { opacity: 1; transform: none; }
}

@keyframes captionTitle {
    from { opacity: 0; transform: translateX(-14px); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 767.98px) {
    .billboard {
        min-height: calc(100svh - 9rem);
        padding: 3.25rem 0 3.5rem;
    }

    .billboard-row {
        flex-wrap: wrap;
        white-space: normal;
        gap: 8px 12px;
        font-size: clamp(1.7rem, 7.4vw, 2.35rem);
    }

    .billboard-reel {
        width: 2.15em;
        height: 0.7em;
    }

    .billboard-actions {
        width: auto;
        max-width: 100%;
    }

    .billboard-actions .btn-hero {
        flex: 0 1 auto;
    }
}

/* Hero intro — Trabach-style two-column band above slider */
.hero-intro {
    --gold: #d8a23f;
    --gold-dark: #b4832e;
    --paper: #eaf7f1;
    padding: 64px 0 90px;
    background:
        radial-gradient(1100px 520px at 82% -10%, #d8f3e6 0%, rgba(216, 243, 230, 0) 60%),
        radial-gradient(800px 420px at 8% 110%, rgba(6, 174, 90, 0.08), transparent 55%),
        var(--paper);
    overflow: hidden;
    position: relative;
    font-family: "Plus Jakarta Sans", var(--font);
}

.hero-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero-intro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
}

.hero-spark {
    width: 12px;
    height: 12px;
    fill: var(--gold);
    flex-shrink: 0;
    animation: sparkSpin 5.5s linear infinite;
}

.hero-intro-kicker {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted);
}

.hero-intro-title {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(2.4rem, 4.6vw, 3.9rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--navy);
    margin: 0 0 18px;
    max-width: 14ch;
}

.hero-intro-lead {
    margin: 0;
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 38rem;
}

.hero-intro-pills {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 26px 0 30px;
}

.hero-intro-pills li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    padding: 10px 16px;
    border: 0;
    border-radius: 100px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #fff;
    animation: pillBob 2.8s ease-in-out infinite;
}

.hero-intro-pills li::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.32) 50%, transparent 70%);
    transform: translateX(-130%);
    animation: pillShine 3.6s ease-in-out infinite;
}

.hero-intro-pills li:nth-child(1) {
    background: linear-gradient(135deg, #2fd978, #06ae5a 55%, #075f33);
    box-shadow: 0 10px 22px rgba(6, 174, 90, 0.32);
}

.hero-intro-pills li:nth-child(2) {
    background: linear-gradient(135deg, #60a5ff, #2563ff 55%, #1d4ed8);
    box-shadow: 0 10px 22px rgba(37, 99, 255, 0.32);
    animation-delay: 0.35s;
}

.hero-intro-pills li:nth-child(2)::after {
    animation-delay: 0.45s;
}

.hero-intro-pills li:nth-child(3) {
    background: linear-gradient(135deg, #f0c14d, #e8a82e 50%, #c47a1a);
    box-shadow: 0 10px 22px rgba(196, 122, 26, 0.32);
    animation-delay: 0.7s;
}

.hero-intro-pills li:nth-child(3)::after {
    animation-delay: 0.9s;
}

.hero-intro-pills svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    flex-shrink: 0;
    animation: pillCheck 1.8s ease-in-out infinite;
}

.hero-intro-pills li:nth-child(2) svg { animation-delay: 0.2s; }
.hero-intro-pills li:nth-child(3) svg { animation-delay: 0.4s; }

.hero-intro-pills li:hover {
    animation-play-state: paused;
    transform: translateY(-4px) scale(1.05);
    color: #fff;
}

.hero-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.billboard-actions {
    justify-content: center;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.98rem;
    padding: 14px 26px;
    border-radius: 10px;
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-hero:hover {
    transform: translateY(-2px);
    color: inherit;
}

.btn-hero-gold {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 8px 20px rgba(216, 162, 63, 0.35);
}

.btn-hero-gold:hover {
    background: var(--gold-dark);
    color: var(--navy);
    box-shadow: 0 12px 26px rgba(216, 162, 63, 0.42);
}

.btn-hero-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--teal-deep);
}

.btn-hero-outline:hover {
    background: var(--teal-deep);
    color: #fff;
}

.btn-hero-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-hero-whatsapp:hover {
    background: #1da851;
    color: #fff;
}

.hero-intro-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-slider {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(9, 21, 15, 0.16);
    background: #0d2418;
}

.intro-slider .carousel-item {
    position: relative;
}

.intro-slider img {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
}

.intro-slider .carousel-item.active img {
    animation: slideZoom 5.5s ease-out forwards;
}

.intro-slide-caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 16px;
    z-index: 3;
    overflow: hidden;
    max-width: 22rem;
    padding: 14px 16px 15px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 16px 36px rgba(9, 21, 15, 0.2);
    color: var(--navy);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.intro-slide-caption::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #2fd978, #06ae5a);
}

.carousel-item:nth-child(2) .intro-slide-caption::before {
    background: linear-gradient(180deg, #60a5ff, #2563ff);
}

.carousel-item:nth-child(3) .intro-slide-caption::before {
    background: linear-gradient(180deg, #f0c14d, #c47a1a);
}

.intro-slide-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
    transform: translateX(-130%);
    pointer-events: none;
}

.intro-slider .carousel-item.active .intro-slide-caption {
    animation: captionPop 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.intro-slider .carousel-item.active .intro-slide-glow {
    animation: pillShine 1.1s ease 0.2s both;
}

.intro-slider .carousel-item.active .intro-slide-title {
    animation: captionTitle 0.45s ease 0.12s both;
}

.intro-slider .carousel-item.active .intro-slide-text {
    animation: captionTitle 0.45s ease 0.22s both;
}

.intro-slide-title {
    position: relative;
    margin: 0 0 0.28rem;
    font-family: var(--display);
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #075f33;
}

.carousel-item:nth-child(2) .intro-slide-title {
    color: #1d4ed8;
}

.carousel-item:nth-child(3) .intro-slide-title {
    color: #c47a1a;
}

.intro-slide-text {
    position: relative;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #3d5248;
    line-height: 1.4;
}

.intro-slider .carousel-control-prev,
.intro-slider .carousel-control-next {
    width: 3.2rem;
    opacity: 1;
}

.intro-slide-nav {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    font-size: 0.95rem;
    backdrop-filter: blur(6px);
}

.intro-slider .carousel-control-prev:hover .intro-slide-nav,
.intro-slider .carousel-control-next:hover .intro-slide-nav {
    background: var(--teal);
    border-color: var(--teal);
}

.intro-slider .carousel-indicators {
    top: 14px;
    bottom: auto;
    margin: 0;
    z-index: 4;
}

.intro-slider .carousel-indicators [data-bs-target] {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.intro-slider .carousel-indicators .active {
    background: #fff;
    transform: scale(1.15);
}

@media (max-width: 991.98px) {
    .hero-intro {
        padding: 48px 0 72px;
    }

    .hero-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-intro-art {
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-intro-title {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .offer-head .btn-hero {
        flex: 1 1 100%;
    }
}

/* How it works */
.how-it-works {
    padding: 88px 0;
    background: linear-gradient(
        135deg,
        #c47a1a 0%,
        #d9921f 45%,
        #e8a82e 100%
    );
    color: #fff;
}

.how-it-works .hero-intro-eyebrow {
    color: #fff4d6;
}

.how-it-works .hero-spark {
    fill: #fff4d6;
}

.how-head {
    max-width: 720px;
    margin: 0 0 52px;
}

.how-head h2 {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
    color: #fff;
}

.how-head p {
    margin: 0;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.how-step {
    position: relative;
    padding-top: 8px;
}

.how-step-num {
    display: block;
    font-family: var(--display);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    margin-bottom: 10px;
}

.how-step.visible .how-step-num {
    animation: numPop 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.how-step h3 {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 8px;
    color: #fff;
}

.how-step p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .how-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .how-it-works {
        padding: 60px 0;
    }

    .how-steps {
        grid-template-columns: 1fr;
    }
}

/* Hero */
.hero {
    position: relative;
    color: #fff;
    overflow: hidden;
}

.hero-slider {
    /* Fluid photo band: short phones → tablets → desktops */
    --hero-media-h: clamp(15.5rem, 42svh, 22rem);
    display: block;
    padding: 0;
}

@media (min-width: 576px) {
    .hero-slider {
        --hero-media-h: clamp(18rem, 46svh, 26rem);
    }
}

@media (min-width: 768px) {
    .hero-slider {
        --hero-media-h: clamp(22rem, 50svh, 32rem);
    }
}

@media (min-width: 992px) {
    .hero-slider {
        --hero-media-h: clamp(26rem, 56svh, 38rem);
    }
}

@media (min-width: 1400px) {
    .hero-slider {
        --hero-media-h: clamp(30rem, 58svh, 42rem);
    }
}

/* Landscape phones / short viewports: keep hero usable */
@media (max-height: 520px) and (orientation: landscape) {
    .hero-slider {
        --hero-media-h: clamp(12rem, 58svh, 18rem);
    }
}

.hero-slider .carousel {
    position: relative;
}

.hero-slider .carousel-inner {
    overflow: hidden;
}

.hero-slider .carousel-item {
    transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-slide {
    display: flex;
    flex-direction: column;
    background: var(--chrome-2);
}

.hero-slider .hero-media {
    position: relative;
    inset: auto;
    height: var(--hero-media-h);
    overflow: hidden;
}

.hero-img,
.page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: none;
}

.page-hero-media {
    position: absolute;
    inset: 0;
}

.page-hero-media img {
    transform: scale(1.04);
}

.hero-caption-bar {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(
        135deg,
        #c47a1a 0%,
        #d9921f 45%,
        #e8a82e 100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.hero-caption-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    padding: clamp(1rem, 2.2vw, 1.55rem) clamp(1rem, 4vw, 1.5rem);
}

.hero-caption-copy {
    min-width: 0;
    flex: 1;
}

.hero-eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--aqua);
}

.hero-title {
    font-family: var(--font);
    font-size: clamp(1.05rem, 1.6vw + 0.7rem, 1.45rem);
    font-weight: 600;
    color: #fff;
    max-width: 46rem;
    margin: 0 0 0.35rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.hero-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(0.88rem, 0.3vw + 0.82rem, 0.98rem);
    max-width: 40rem;
    margin: 0;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    flex-shrink: 0;
}

.hero-caption-bar .hero-eyebrow {
    color: #fff4d6;
}

.hero-caption-bar .hero-text {
    color: rgba(255, 255, 255, 0.9);
}

.hero-caption-bar .btn-ghost {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.hero-caption-bar .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.hero-slider .carousel-indicators {
    position: absolute;
    bottom: auto;
    top: calc(var(--hero-media-h) - 1.5rem);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin: 0;
    z-index: 5;
    gap: 0.4rem;
}

.hero-slider .carousel-indicators [data-bs-target] {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    opacity: 1;
    margin: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}

.hero-slider .carousel-indicators .active {
    background: #fff;
    transform: scale(1.2);
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 3.5rem;
    height: var(--hero-media-h);
    top: 0;
    bottom: auto;
    z-index: 5;
    opacity: 1;
}

.hero-control-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(9, 21, 15, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    font-size: 1.15rem;
    backdrop-filter: blur(6px);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-slider .carousel-control-prev:hover .hero-control-icon,
.hero-slider .carousel-control-next:hover .hero-control-icon {
    background: var(--teal);
    border-color: var(--teal);
    transform: scale(1.05);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8, 77, 43, 0.92) 0%, rgba(7, 95, 51, 0.55) 48%, rgba(6, 174, 90, 0.3) 100%),
        linear-gradient(to top, rgba(9, 21, 15, 0.78), transparent 45%);
}

.hero-scroll {
    display: none;
}

@media (max-width: 991.98px) {
    .hero-caption-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.15rem 1.25rem 1.35rem;
    }

    .hero-text {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width: 575.98px) {
    .hero-caption-inner {
        padding: 1.1rem 1.15rem 1.3rem;
    }

    .hero-caption-bar .container.hero-caption-inner {
        max-width: 100%;
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }
}


.service-media-stack {
    display: grid;
    gap: 1rem;
}

.media-card {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: #fff;
}

.media-card img,
.media-card video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #084d2b;
}

.media-card.media-video video {
    aspect-ratio: 16 / 9;
}

.media-card-square img {
    aspect-ratio: 1 / 1;
}

.media-gallery .media-card {
    height: 100%;
}

/* Features */
.features {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 3;
}

.feature {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-6px);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--teal-deep), var(--aqua));
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    animation: iconFloat 3.8s ease-in-out infinite;
}

.col-md-4:nth-child(2) .feature-icon { animation-delay: 0.45s; }
.col-md-4:nth-child(3) .feature-icon { animation-delay: 0.9s; }

.feature h2 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--muted);
    margin: 0;
}

/* About + services */
.about-stage {
    --gold: #d8a23f;
    --gold-dark: #b4832e;
    position: relative;
    padding: 96px 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 80% at 100% 20%, rgba(37, 99, 255, 0.08), transparent 55%),
        radial-gradient(ellipse 50% 60% at 0% 80%, rgba(6, 174, 90, 0.1), transparent 55%),
        #f7f7f4;
}

.about-stage-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 64px;
    align-items: start;
}

.about-stage-label {
    margin: 0 0 12px;
    font-family: "Manrope", var(--font);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #2563ff;
}

.about-stage-copy {
    padding: 8px 4px 0 0;
}

.about-stage-copy h2 {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(2.1rem, 3.8vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    color: var(--navy);
}

.about-stage-lead {
    margin: 0 0 1.15rem;
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.75;
    color: var(--navy);
}

.about-stage-lead mark {
    background: linear-gradient(180deg, transparent 62%, rgba(47, 217, 120, 0.38) 62%);
    color: inherit;
    font-weight: 700;
    padding: 0 0.08em;
}

.about-stage-copy > p:not(.about-stage-label):not(.about-stage-lead) {
    color: var(--muted);
    margin: 0 0 1.05rem;
    line-height: 1.75;
    font-size: 1.02rem;
}

.about-stage-copy > p:last-of-type {
    margin-bottom: 0;
    padding-top: 0.35rem;
    border-top: 1px solid var(--line);
    color: var(--navy);
    font-weight: 600;
}

.about-stage-points {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 1.15rem 0 1.6rem;
}

.about-stage-points li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--navy);
}

.about-stage-points i {
    color: var(--teal);
}

.about-stage-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-stage-visual {
    position: sticky;
    top: 7.25rem;
}

.about-stage-visual::before {
    content: "";
    position: absolute;
    width: 58%;
    height: 58%;
    right: -8%;
    top: -8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 122, 26, 0.22), transparent 68%);
    pointer-events: none;
}

.about-stage-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 28px 60px rgba(9, 21, 15, 0.16);
}

.about-stage-frame img {
    width: 100%;
    height: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    display: block;
    animation: aboutDrift 18s ease-in-out infinite alternate;
}

.about-stage-stats {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 14px 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 16px 36px rgba(9, 21, 15, 0.12);
}

.about-stage-stats li {
    text-align: center;
}

.about-stage-stats strong {
    display: block;
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #c47a1a;
    line-height: 1.1;
}

.about-stage-stats span {
    display: block;
    margin-top: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.offer {
    --gold: #d8a23f;
    --gold-dark: #b4832e;
    position: relative;
    padding: 100px 0 110px;
    overflow: hidden;
    background: #eceeef;
    color: var(--navy);
}

.offer-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    max-width: none;
    margin: 0 0 40px;
    text-align: left;
}

.offer .about-stage-label {
    color: #2563ff;
}

.offer-head h2 {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 12px;
    color: var(--navy);
}

.offer-head p {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 36rem;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.offer-card {
    position: relative;
    display: block;
    min-height: 230px;
    overflow: hidden;
    border-radius: 20px;
    background: #0d2418;
    color: #fff;
    text-decoration: none;
    isolation: isolate;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.offer-card:nth-child(1),
.offer-card:nth-child(2) {
    grid-column: span 2;
    min-height: 380px;
}

.offer-card.reveal {
    transition-delay: calc(var(--i) * 0.05s);
}

.offer-card:hover,
.offer-card:focus-visible {
    color: #fff;
    transform: translateY(-8px);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.32);
}

.offer-media {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
    background: #0d2418;
}

.offer-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.offer-card:hover img,
.offer-card:focus-visible img {
    transform: scale(1.12);
}

.offer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(9, 21, 15, 0.88) 0%, rgba(9, 21, 15, 0.18) 48%, transparent 72%);
}

.offer-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
    transform: translateX(-140%);
    transition: transform 0.7s ease;
    pointer-events: none;
}

.offer-card:hover::after,
.offer-card:focus-visible::after {
    transform: translateX(140%);
}

.offer-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-height: 0;
    padding: 18px 18px 20px;
    color: #fff;
}

.offer-icon {
    position: static;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 1.05rem;
    box-shadow: none;
    backdrop-filter: blur(8px);
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.offer-card:hover .offer-icon,
.offer-card:focus-visible .offer-icon {
    background: #fff;
    color: #c47a1a;
    transform: scale(1.06);
}

.offer-name-text {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
}

.offer-card:nth-child(1) .offer-name-text,
.offer-card:nth-child(2) .offer-name-text {
    font-family: var(--display);
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    font-weight: 600;
}

.offer-name i {
    flex-shrink: 0;
    margin-top: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.offer-card:hover .offer-name-text i,
.offer-card:focus-visible .offer-name-text i {
    color: #e8a82e;
    transform: translate(3px, -3px);
}

@keyframes aboutDrift {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

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

    .offer-card:nth-child(1),
    .offer-card:nth-child(2) {
        grid-column: span 1;
        min-height: 300px;
    }
}

@media (max-width: 991.98px) {
    .about-stage {
        padding: 64px 0;
    }

    .about-stage-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-stage-visual {
        position: static;
    }

    .offer {
        padding: 72px 0 80px;
    }

    .offer-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .about-stage-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .offer-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .offer-card,
    .offer-card:nth-child(1),
    .offer-card:nth-child(2) {
        min-height: 220px;
        grid-column: auto;
    }

    .offer-name {
        min-height: 0;
        font-size: 0.95rem;
        padding: 16px;
    }
}

/* Services grid */
.services-section,
.content-section,
.about-band {
    padding: 4.5rem 0;
}

.section-head {
    max-width: 40rem;
    margin-bottom: 2.5rem;
}

.section-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.section-head p {
    color: var(--muted);
    margin: 0;
}

.service-tile {
    display: block;
    height: 100%;
    color: inherit;
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(9, 21, 15, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-tile:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    color: inherit;
}

.service-tile-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.service-tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-tile:hover .service-tile-media img {
    transform: scale(1.08);
}

.service-tile-body {
    padding: 1.25rem 1.35rem 1.5rem;
}

.service-tile-body i {
    color: var(--teal);
    font-size: 1.25rem;
}

.service-tile-body h3 {
    font-size: 1.15rem;
    margin: 0.4rem 0 0.65rem;
}

.link-arrow {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal-deep);
}

/* About band */
.about-visual {
    border-radius: calc(var(--radius) + 0.35rem);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.about-visual::after {
    content: "";
    position: absolute;
    inset: auto -8% -8% auto;
    width: 45%;
    height: 45%;
    background: linear-gradient(135deg, var(--aqua), transparent);
    opacity: 0.4;
    filter: blur(30px);
    pointer-events: none;
}

.about-visual img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-band h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}

.about-band p {
    color: var(--muted);
}

/* CTA */
.cta-band {
    padding: 5rem 0;
    background:
        linear-gradient(120deg, rgba(8, 77, 43, 0.94), rgba(6, 174, 90, 0.88)),
        url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1600&q=70") center/cover;
    color: #fff;
}

.cta-band h2 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    max-width: 40rem;
    margin: 0 auto 0.75rem;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Page hero */
.page-hero {
    position: relative;
    min-height: 42vh;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
}

.page-hero-sm {
    min-height: 34vh;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 5.5rem 0 3rem;
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 36rem;
    margin-bottom: 0;
}

/* Content */
.lead-text {
    font-size: 1.08rem;
    color: var(--muted);
}

.benefit-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

@media (min-width: 768px) {
    .benefit-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.benefit {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1.15rem 1.25rem;
}

.benefit h4 {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.benefit p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.7rem;
    color: var(--muted);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-deep), var(--aqua));
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.55);
}

.check-list.two-col {
    columns: 1;
}

@media (min-width: 768px) {
    .check-list.two-col {
        columns: 2;
        gap: 2rem;
    }
}

.info-panel,
.sidebar-panel,
.service-cta,
.contact-form {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

.info-panel h3,
.sidebar-panel h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.info-panel-contact {
    display: grid;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.info-panel-contact a {
    font-weight: 600;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.75rem;
    border-radius: 0.75rem;
    color: var(--ink);
    font-weight: 500;
    font-size: 0.95rem;
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background: var(--sand);
    color: var(--teal-deep);
}

.sidebar-links i {
    color: var(--teal);
}

.service-cta {
    background: linear-gradient(135deg, var(--chrome-2), var(--teal));
    color: #fff;
    border: 0;
}

.service-cta h3 {
    color: #fff;
}

.service-cta p {
    color: rgba(255, 255, 255, 0.78);
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.contact-details li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-details i {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: grid;
    place-items: center;
    background: var(--sand);
    color: var(--teal-deep);
    flex-shrink: 0;
}

.contact-details strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.contact-details a,
.contact-details span {
    color: var(--navy);
    font-weight: 600;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.form-control {
    border-radius: 0.85rem;
    border-color: rgba(9, 21, 15, 0.12);
    padding: 0.8rem 1rem;
    background: #fff;
}

.form-control:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 0.2rem rgba(6, 174, 90, 0.2);
}

/* Footer */
.site-footer {
    position: relative;
    background: linear-gradient(160deg, var(--chrome) 0%, var(--chrome-2) 55%, #063822 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 4.5rem 0 1.5rem;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    right: -80px;
    top: -120px;
    background: radial-gradient(circle, rgba(6, 174, 90, 0.28), transparent 65%);
    pointer-events: none;
}

.footer-brand .brand-name {
    color: #fff;
    font-size: 1.5rem;
}

.footer-logo {
    height: 72px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    border-radius: 0;
}

.footer-lead {
    color: rgba(255, 255, 255, 0.7);
    max-width: 22rem;
}

.footer-meta {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-heading {
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.72);
    display: inline-block;
    margin-bottom: 0.55rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--aqua);
}

.footer-contact i {
    margin-right: 0.45rem;
    color: var(--aqua);
}

.social-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.social-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.75rem;
    display: grid;
    place-items: center;
    background: var(--sand);
    color: var(--teal-deep) !important;
    font-size: 1.15rem;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    background: var(--teal);
    color: #fff !important;
}

.social-icons-footer {
    gap: 0.75rem;
}

.social-icons-footer .social-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.65rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #fff !important;
    font-size: 1.35rem;
    font-weight: 700;
}

.social-icons-footer .social-icon i {
    color: #fff;
    font-weight: 700;
    -webkit-text-stroke: 0.2px #fff;
}

.social-icons-footer .social-icon:hover {
    background: #fff;
    border-color: #fff;
    color: var(--chrome) !important;
    transform: translateY(-2px);
}

.social-icons-footer .social-icon:hover i {
    color: var(--chrome);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 575.98px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Quote modal */
.quote-modal-content {
    border: 0;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(9, 21, 15, 0.25);
}

.quote-modal-content .modal-header {
    border-bottom: 1px solid var(--line);
    padding: 1.35rem 1.5rem 1rem;
}

.quote-modal-content .modal-body {
    padding: 1.25rem 1.5rem 1.75rem;
    position: relative;
}

.quote-modal-content .eyebrow {
    margin-bottom: 0.35rem;
}

.thanks-icon {
    font-size: 3rem;
    color: var(--teal);
    line-height: 1;
}

.thanks-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.thanks-copy {
    color: var(--muted);
    margin: 0 auto;
    max-width: 22rem;
    line-height: 1.55;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: #25d366;
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 0.7rem 1.35rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background: #1ebe57;
    color: #fff;
    transform: translateY(-1px);
}

/* Floating call */
.call-fab {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-deep), var(--aqua));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    box-shadow: 0 12px 28px rgba(6, 174, 90, 0.42);
    z-index: 1040;
    animation: fabPulse 2.4s ease-in-out infinite;
}

.call-fab:hover {
    color: #fff;
}

@keyframes fabPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

.offer-card.reveal {
    transition: opacity 0.7s ease, transform 0.35s ease, box-shadow 0.35s ease;
    transition-delay: calc(var(--i) * 0.05s);
}

.offer-card.reveal.visible:hover,
.offer-card.reveal.visible:focus-visible {
    transform: translateY(-8px);
    color: #fff;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        border-radius: 1.1rem;
        padding: 0.65rem 0.75rem 1rem;
        margin-top: 0.65rem;
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        display: none;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        flex: 1;
        text-align: center;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-slider .carousel-item {
        transition: none;
    }
    .billboard-bg-video,
    .page-hero-media img,
    .call-fab,
    .billboard-orb,
    .billboard-mark,
    .billboard-reel,
    .billboard-cta::after,
    .billboard-wash,
    .billboard-beam,
    .billboard-bubble,
    .hero-spark,
    .feature-icon,
    .how-step.visible .how-step-num,
    .billboard-word.is-in .billboard-char,
    .billboard-inner > *,
    .about-stage-frame img,
    .hero-intro-pills li,
    .hero-intro-pills li::after,
    .hero-intro-pills svg,
    .intro-slider .carousel-item.active img,
    .intro-slider .carousel-item.active .intro-slide-caption,
    .intro-slider .carousel-item.active .intro-slide-glow,
    .intro-slider .carousel-item.active .intro-slide-title,
    .intro-slider .carousel-item.active .intro-slide-text {
        animation: none;
    }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .billboard-inner > * {
        opacity: 1;
        transform: none;
    }
    .billboard-char {
        opacity: 1;
        transform: none;
    }
    .billboard-bg-video {
        display: none;
    }
}

/* Homepage journal */
.digest {
    padding: 72px 0 80px;
    background: #f4f6f4;
    color: var(--navy);
}

.digest-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.digest-eyebrow {
    color: var(--teal);
}

.digest-eyebrow .hero-spark {
    fill: #e8a82e;
}

.digest-head h2 {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin: 0 0 8px;
}

.digest-head p {
    margin: 0;
    color: var(--muted);
    max-width: 34rem;
}

.digest-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    font-weight: 700;
    color: var(--navy);
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.digest-all:hover {
    background: linear-gradient(135deg, #c47a1a, #e8a82e);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

.digest-feature-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 16px;
    margin-bottom: 16px;
}

.digest-feature {
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    color: inherit;
    box-shadow: 0 12px 32px rgba(9, 21, 15, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.digest-feature:hover {
    color: inherit;
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
}

.digest-feature-media {
    overflow: hidden;
    min-height: 280px;
}

.digest-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 11;
    transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.digest-feature:hover .digest-feature-media img {
    transform: scale(1.07);
}

.digest-feature-copy {
    padding: 22px 24px 24px;
}

.digest-feature-copy time,
.digest-shot time {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e8a82e;
    margin-bottom: 8px;
}

.digest-feature-copy h3 {
    font-family: var(--display);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 10px;
    line-height: 1.2;
}

.digest-feature-copy p {
    color: var(--muted);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.digest-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #c47a1a;
}

.digest-feature:hover .digest-read i,
.digest-shot:hover .digest-read i {
    transform: translateX(4px);
}

.digest-read i {
    transition: transform 0.25s ease;
}

.digest-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.digest-side .digest-shot,
.digest-side .digest-shot-copy {
    min-height: 250px;
    height: 100%;
}

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

.digest-shot {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    min-height: 240px;
    color: inherit;
    isolation: isolate;
}

.digest-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.digest-shot::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(9, 21, 15, 0.88) 0%, rgba(9, 21, 15, 0.2) 55%, transparent 80%);
}

.digest-shot-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    min-height: 240px;
    padding: 20px;
}

.digest-shot-title {
    font-family: var(--display);
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.digest-shot .digest-read {
    opacity: 0.85;
}

.digest-shot:hover {
    color: inherit;
}

.digest-shot:hover img {
    transform: scale(1.08);
}

.digest-shot:hover .digest-read {
    color: #e8a82e;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .digest {
        padding: 64px 0;
    }

    .digest-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .digest-feature-grid,
    .digest-row {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .digest-side,
    .digest-row {
        grid-template-columns: 1fr 1fr;
    }
}

.blog-section {
    padding: 4.5rem 0;
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(9, 21, 15, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    color: inherit;
}

.blog-card-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 1.25rem 1.35rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-body time {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--teal-deep);
    margin-bottom: 0.45rem;
}

.blog-card-body h2,
.blog-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.55rem;
}

.blog-card-body p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
    flex: 1;
}

.blog-content {
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.blog-content p {
    margin-bottom: 1rem;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.25rem;
}

.blog-content li {
    margin-bottom: 0.45rem;
}

.blog-content a {
    font-weight: 600;
}

.blog-content img,
.blog-content video,
.blog-content iframe,
.blog-content table {
    max-width: 100%;
    height: auto;
}

.blog-content img {
    border-radius: 1rem;
    margin: 1.25rem 0;
}

.blog-content table {
    display: block;
    overflow-x: auto;
}

/* Native mobile homepage */
@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 8.5rem;
    }

    body {
        -webkit-tap-highlight-color: rgba(6, 174, 90, 0.16);
    }

    .site-header {
        background: #fff;
    }

    .topbar {
        padding: 0.45rem 0 0.5rem;
        font-size: 0.78rem;
        font-weight: 600;
    }

    .topbar .container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.4rem;
        padding-left: 1.05rem;
        padding-right: 1.05rem;
    }

    .topbar-left {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.35rem 0.85rem;
    }

    .topbar-left a {
        margin-right: 0;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .topbar-right {
        width: 100%;
        justify-content: space-between;
        gap: 0.65rem;
    }

    .topbar-trust {
        display: block;
        flex: 1;
        min-width: 0;
        white-space: normal;
        line-height: 1.35;
        color: rgba(255, 255, 255, 0.92);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.02em;
    }

    .topbar .social-icon {
        width: 1.7rem;
        height: 1.7rem;
        font-size: 0.88rem;
    }

    .navbar > .container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
        min-height: 4.5rem;
    }

    .navbar-brand {
        padding: 0.35rem 0;
        margin-right: 0.5rem;
    }

    .brand-logo {
        height: 64px;
        max-width: min(240px, 62vw);
    }

    .navbar-toggler {
        width: 44px;
        height: 44px;
        padding: 0;
        display: grid;
        place-items: center;
        border: 1.5px solid var(--line);
        border-radius: 12px;
        background: #fff;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(6, 174, 90, 0.18) !important;
    }

    .navbar-nav .nav-link {
        padding: 0.85rem 0.65rem !important;
        min-height: 44px;
        display: flex;
        align-items: center;
        font-size: 1.02rem;
    }

    .dropdown-item {
        padding: 0.75rem 0.9rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .call-fab {
        width: 3.25rem;
        height: 3.25rem;
        right: max(0.85rem, env(safe-area-inset-right, 0px));
        bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
        animation: none;
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .call-fab.is-away {
        opacity: 0;
        pointer-events: none;
        transform: scale(0.86);
    }

    .billboard-fx {
        opacity: 1;
    }

    .hero-intro-title {
        max-width: none;
    }

    .hero-intro-lead {
        font-size: 1.08rem;
        line-height: 1.65;
    }

    .about-stage-copy h2,
    .offer-head h2,
    .how-head h2 {
        font-size: clamp(1.55rem, 5.4vw, 2rem);
    }

    #toolbarContainer,
    #debug-icon,
    #debug-bar,
    #debug-icon-link,
    .debug-bar,
    .debug-bar-nd,
    .debug-bar-dinlineBlock {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .brand-logo {
        height: 60px;
        max-width: min(220px, 64vw);
    }

    .billboard {
        min-height: calc(100svh - 9rem);
        padding: 3.5rem 0 3.75rem;
    }

    .billboard-rotate {
        font-size: clamp(1.45rem, 6.4vw, 1.85rem);
        margin-bottom: 0.4rem;
    }

    .billboard-title {
        margin-bottom: 1.75rem;
    }

    .billboard-row-last {
        margin-top: 0.08em;
    }

    .billboard-trust {
        margin: 1.05rem auto 0;
        max-width: 24rem;
    }

    .billboard-actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: auto;
        max-width: 100%;
        gap: 12px;
    }

    .billboard-actions .btn-hero,
    .hero-intro-actions .btn-hero {
        flex: 0 1 auto;
        width: auto;
        min-height: 48px;
    }

    .offer-head .btn-hero {
        width: 100%;
        min-height: 48px;
    }

    .hero-intro {
        padding: 48px 0 64px;
    }

    .hero-intro-grid {
        gap: 36px;
    }

    .hero-intro-art {
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .intro-slider {
        border-radius: 24px;
    }

    .intro-slider img {
        aspect-ratio: 3 / 4;
        min-height: 28rem;
        height: auto;
        object-fit: cover;
    }

    .hero-intro-title {
        font-size: clamp(1.85rem, 8vw, 2.45rem);
        line-height: 1.14;
        letter-spacing: -0.02em;
        margin-bottom: 16px;
    }

    .hero-intro-lead {
        font-size: 1.08rem;
        line-height: 1.65;
    }

    .hero-intro-pills {
        margin: 26px 0 0;
        gap: 10px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .hero-intro-pills li {
        padding: 10px 16px;
        font-size: 0.84rem;
        min-height: 0;
        justify-content: flex-start;
    }

    .how-it-works {
        padding: 2.35rem 0 4.25rem;
    }

    .how-head {
        margin-bottom: 1.35rem;
    }

    .how-head p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .how-step {
        padding: 0.85rem 0 1.05rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .how-step:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .how-step-num {
        font-size: 1.7rem;
        margin-bottom: 0.35rem;
    }

    .how-step h3 {
        font-size: 1.05rem;
    }

    .how-step p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .about-stage {
        padding: 2.35rem 0;
    }

    .about-stage-copy {
        padding: 0;
    }

    .about-stage-lead,
    .about-stage-copy > p:not(.about-stage-label):not(.about-stage-lead) {
        font-size: 0.96rem;
        line-height: 1.55;
    }

    .about-stage-frame {
        border-radius: 18px;
    }

    .about-stage-frame img {
        aspect-ratio: 4 / 3;
        animation: none;
    }

    .about-stage-stats {
        position: static;
        margin-top: 10px;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 10px 24px rgba(9, 21, 15, 0.08);
    }

    .about-stage-stats li {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
        text-align: left;
        padding: 4px 2px;
    }

    .about-stage-stats strong {
        font-size: 1.2rem;
    }

    .offer {
        padding: 2.35rem 0 2.6rem;
    }

    .offer-head p {
        font-size: 0.95rem;
    }

    .offer-card,
    .offer-card:nth-child(1),
    .offer-card:nth-child(2) {
        min-height: 188px;
        border-radius: 16px;
    }

    .offer-name {
        padding: 14px;
        font-size: 0.92rem;
    }

    .digest {
        padding: 2.35rem 0 2.6rem;
    }

    .digest-head {
        margin-bottom: 1.25rem;
    }

    .digest-all {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .cta-band {
        padding: 2.5rem 0;
    }

    .cta-band h2 {
        font-size: 1.4rem;
        line-height: 1.25;
    }

    .cta-band .btn {
        width: 100%;
        min-height: 48px;
        border-radius: 14px;
        font-size: 0.98rem;
    }

    .site-footer {
        padding: 2.75rem 0 calc(5.5rem + env(safe-area-inset-bottom, 0px));
    }

    .footer-logo {
        height: 52px;
    }

    #quoteModal .modal-dialog {
        margin: 0;
        max-width: none;
        height: 100%;
        display: flex;
        align-items: flex-end;
    }

    .quote-modal-content {
        width: 100%;
        border-radius: 1.25rem 1.25rem 0 0;
        max-height: 94vh;
        overflow: auto;
    }

    .quote-modal-content .modal-header,
    .quote-modal-content .modal-body {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }

    .quote-modal-content .form-control,
    .quote-modal-content .form-select,
    .quote-modal-content textarea {
        font-size: 16px;
        min-height: 48px;
    }
}
