
        /* =========================================
           COLOR PALETTE — pulled from the new logo
           ========================================= */
        :root {
            --navy:        #1B3A4B;   /* dark "CAST" text color */
            --navy-deep:   #122A38;   /* slightly darker for contrast */
            --blue:        #2C8AAE;   /* primary shield blue */
            --blue-soft:   #6BA8BF;   /* lighter accent / tagline blue */
            --blue-pale:   #D8E8EE;   /* tints for backgrounds */
            --bg:          #FFFFFF;
            --bg-soft:     #F4F8FA;   /* soft section background */
            --text:        #1B3A4B;
            --text-muted:  #5A7180;
            --border:      #E1ECF1;
            --shadow-sm:   0 2px 8px rgba(27, 58, 75, 0.06);
            --shadow-md:   0 8px 24px rgba(27, 58, 75, 0.10);
            --shadow-lg:   0 16px 48px rgba(27, 58, 75, 0.14);
            --radius-sm:   8px;
            --radius:      14px;
            --radius-lg:   22px;
        }

        /* =========================================
           BASE
           ========================================= */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
        }
        img { max-width: 100%; display: block; }
        a { color: var(--blue); text-decoration: none; transition: color 0.2s ease; }
        a:hover { color: var(--navy); }

        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            color: var(--navy);
            letter-spacing: -0.02em;
        }
        h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
        h3 { font-size: 1.25rem; }

        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 24px;
        }

        section { padding: 88px 0; }
        @media (max-width: 768px) { section { padding: 60px 0; } }

        /* =========================================
           BUTTONS
           ========================================= */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            border: none;
            transition: all 0.25s ease;
            text-decoration: none;
        }
        .btn-primary {
            background: var(--blue);
            color: white;
        }
        .btn-primary:hover {
            background: var(--navy);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .btn-outline {
            background: transparent;
            color: var(--navy);
            border: 2px solid var(--navy);
        }
        .btn-outline:hover {
            background: var(--navy);
            color: white;
        }

        /* =========================================
           NAVBAR
           ========================================= */
        .nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: saturate(180%) blur(14px);
            -webkit-backdrop-filter: saturate(180%) blur(14px);
            border-bottom: 1px solid var(--border);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 24px;
            max-width: 1180px;
            margin: 0 auto;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-logo img {
            height: 52px;
            width: 52px;
            object-fit: contain;
        }
        .nav-logo-text {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--navy);
            line-height: 1.2;
        }
        .nav-logo-text span {
            display: block;
            font-weight: 500;
            font-size: 0.75rem;
            color: var(--blue-soft);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }
        .nav-links a {
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
        }
        .nav-links a:hover { color: var(--blue); }
        .nav-cta { display: inline-flex; }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--navy);
            font-size: 1.5rem;
        }

        @media (max-width: 880px) {
            .nav-links, .nav-cta { display: none; }
            .nav-toggle { display: block; }
            .nav-links.open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                padding: 24px;
                border-bottom: 1px solid var(--border);
                box-shadow: var(--shadow-md);
            }
        }

        /* =========================================
           HERO
           ========================================= */
        .hero {
            position: relative;
            padding: 110px 0 100px;
            background:
                radial-gradient(circle at 80% 20%, rgba(44, 138, 174, 0.10) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(107, 168, 191, 0.08) 0%, transparent 50%),
                var(--bg);
            overflow: hidden;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
        }
        @media (max-width: 880px) {
            .hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .hero { padding: 60px 0 70px; }
        }
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--blue-pale);
            color: var(--navy);
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
        }
        .hero-eyebrow::before {
            content: "";
            width: 8px;
            height: 8px;
            background: var(--blue);
            border-radius: 50%;
        }
        .hero h1 {
            margin-bottom: 24px;
        }
        .hero h1 .accent {
            color: var(--blue);
        }
        .hero-sub {
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-bottom: 36px;
            max-width: 520px;
        }
        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* Hero phone callout — refined click-to-call */
        .hero-call {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            margin-top: 24px;
            padding: 12px 20px 12px 12px;
            background: white;
            border: 1px solid var(--border);
            border-radius: 999px;
            text-decoration: none;
            transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                        box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                        border-color 0.25s ease;
            box-shadow: 0 2px 8px rgba(27, 58, 75, 0.04);
            max-width: fit-content;
        }
        .hero-call:hover {
            transform: translateY(-2px);
            border-color: #059669;
            box-shadow: 0 8px 20px rgba(5, 150, 105, 0.15), 0 2px 6px rgba(27, 58, 75, 0.08);
        }
        .hero-call-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #059669;
            flex-shrink: 0;
        }
        .hero-call-icon svg {
            width: 18px;
            height: 18px;
            stroke: white;
            fill: none;
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .hero-call-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .hero-call-label {
            font-size: 0.72rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            font-weight: 500;
            margin-bottom: 2px;
        }
        .hero-call-number {
            font-size: 1.05rem;
            color: var(--navy);
            font-weight: 700;
            letter-spacing: -0.01em;
        }
        .hero-call-arrow {
            color: var(--blue-soft);
            font-weight: 600;
            font-size: 1.1rem;
            margin-left: 4px;
            transition: transform 0.25s ease, color 0.25s ease;
        }
        .hero-call:hover .hero-call-arrow {
            transform: translateX(4px);
            color: #059669;
        }
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        .hero-visual::before {
            content: "";
            position: absolute;
            width: 380px;
            height: 380px;
            background: radial-gradient(circle, rgba(44, 138, 174, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }
        .hero-visual img {
            position: relative;
            z-index: 1;
            max-width: 360px;
            filter: drop-shadow(0 12px 36px rgba(27, 58, 75, 0.18));
        }

        /* Trust strip */
        .trust-strip {
            margin-top: 64px;
            padding-top: 32px;
            border-top: 1px solid var(--border);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        @media (max-width: 768px) {
            .trust-strip { grid-template-columns: repeat(2, 1fr); }
        }
        .trust-item {
            text-align: center;
        }
        .trust-item .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--blue);
            margin-bottom: 4px;
        }
        .trust-item .label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* =========================================
           SECTION HEADERS
           ========================================= */
        .section-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .section-header .tag {
            display: inline-block;
            padding: 6px 14px;
            background: var(--blue-pale);
            color: var(--navy);
            border-radius: 999px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
        }
        .section-header p {
            color: var(--text-muted);
            max-width: 640px;
            margin: 16px auto 0;
            font-size: 1.05rem;
        }

        /* =========================================
           ABOUT
           ========================================= */
        .about {
            background: var(--bg-soft);
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        @media (max-width: 880px) {
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
        }
        .about-text p {
            color: var(--text-muted);
            margin-bottom: 16px;
            font-size: 1.05rem;
        }
        .about-text p:last-child { margin-bottom: 0; }
        .about-card {
            background: white;
            padding: 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
        }
        .about-card h3 {
            margin-bottom: 16px;
        }
        .checklist {
            list-style: none;
        }
        .checklist li {
            padding: 10px 0 10px 32px;
            position: relative;
            color: var(--text);
        }
        .checklist li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 10px;
            color: var(--blue);
            font-weight: 700;
            font-size: 1.1rem;
        }

        /* =========================================
           SERVICES
           ========================================= */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        @media (max-width: 1024px) {
            .services-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 560px) {
            .services-grid { grid-template-columns: 1fr; }
        }
        .service-card {
            padding: 32px;
            border-radius: var(--radius);
            background: white;
            border: 1px solid var(--border);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: var(--blue-soft);
        }
        .service-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: var(--blue-pale);
            color: var(--blue);
            margin-bottom: 20px;
        }
        .service-icon svg {
            width: 28px;
            height: 28px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .service-card h3 { margin-bottom: 10px; }
        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* =========================================
           CARRIERS — Authorized to Represent
           ========================================= */
        .carriers {
            background: white;
            padding: 80px 0;
        }
        .carriers-intro {
            text-align: center;
            margin-bottom: 48px;
        }
        .carriers-intro .tag {
            display: inline-block;
            padding: 6px 14px;
            background: var(--blue-pale);
            color: var(--navy);
            border-radius: 999px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
        }
        .carriers-intro h2 {
            margin-bottom: 16px;
        }
        .carriers-intro p {
            color: var(--text-muted);
            max-width: 640px;
            margin: 0 auto;
            font-size: 1.05rem;
        }
        .carriers-line {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 14px 28px;
            max-width: 1080px;
            margin: 0 auto;
            padding: 28px 24px;
            background: var(--bg-soft);
            border: 1px solid var(--border);
            border-radius: 999px;
        }
        .carriers-line .carrier-name {
            font-weight: 600;
            color: var(--navy);
            font-size: 1rem;
            white-space: nowrap;
            letter-spacing: -0.005em;
        }
        .carriers-line .carrier-sep {
            color: var(--blue-soft);
            font-weight: 300;
            user-select: none;
        }
        .carriers-line .carriers-plus {
            display: inline-flex;
            align-items: center;
            padding: 8px 18px;
            background: var(--blue);
            color: white;
            font-weight: 600;
            font-size: 0.92rem;
            border-radius: 999px;
            white-space: nowrap;
        }
        @media (max-width: 768px) {
            .carriers-line {
                border-radius: var(--radius-lg);
                padding: 24px 20px;
                gap: 10px 18px;
            }
            .carriers-line .carrier-name {
                font-size: 0.92rem;
            }
        }
        .carriers-note {
            text-align: center;
            margin-top: 36px;
            color: var(--text-muted);
            font-size: 0.9rem;
            font-style: italic;
        }

        /* =========================================
           BOOKING / CALENDLY
           ========================================= */
        .booking {
            background: var(--bg-soft);
            text-align: center;
        }
        .booking-card {
            max-width: 720px;
            margin: 0 auto;
            background: white;
            padding: 56px 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }
        .booking-card::before {
            content: "";
            position: absolute;
            top: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, var(--blue-pale) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }
        .booking-content {
            position: relative;
            z-index: 1;
        }
        .booking-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
            color: white;
            margin-bottom: 20px;
        }
        .booking-icon svg {
            width: 32px;
            height: 32px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .booking h2 { margin-bottom: 12px; }
        .booking p {
            color: var(--text-muted);
            margin-bottom: 32px;
            font-size: 1.05rem;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }
        .booking-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: var(--blue);
            color: white;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 999px;
            text-decoration: none;
            transition: all 0.25s ease;
            box-shadow: var(--shadow-sm);
        }
        .booking-btn:hover {
            background: var(--navy);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .booking-btn svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }
        .booking-meta {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-top: 28px;
            font-size: 0.88rem;
            color: var(--text-muted);
            flex-wrap: wrap;
        }
        .booking-meta-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .booking-meta-item::before {
            content: "✓";
            color: var(--blue);
            font-weight: 700;
        }
        .why {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
            color: white;
        }
        .why h2 { color: white; }
        .why .section-header .tag {
            background: rgba(255, 255, 255, 0.1);
            color: var(--blue-soft);
        }
        .why .section-header p { color: rgba(255, 255, 255, 0.75); }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        @media (max-width: 880px) {
            .why-grid { grid-template-columns: 1fr; }
        }
        .why-item {
            text-align: center;
            padding: 24px;
        }
        .why-item .num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--blue);
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        .why-item h3 {
            color: white;
            margin-bottom: 12px;
        }
        .why-item p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.95rem;
        }

        /* =========================================
           MEET YOUR BROKER
           ========================================= */
        .broker {
            background: var(--bg-soft);
        }
        .broker-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: center;
        }
        @media (max-width: 880px) {
            .broker-grid { grid-template-columns: 1fr; gap: 40px; }
        }

        /* Headshot placeholder — clearly marked, easy to replace */
        .headshot-placeholder {
            position: relative;
            aspect-ratio: 1 / 1;
            max-width: 380px;
            margin: 0 auto;
            border-radius: var(--radius-lg);
            background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-soft) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            overflow: hidden;
            border: 3px dashed rgba(255, 255, 255, 0.6);
        }
        .headshot-placeholder .ph-content {
            text-align: center;
            color: white;
            padding: 32px;
        }
        .headshot-placeholder .ph-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 16px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .headshot-placeholder .ph-icon svg {
            width: 36px;
            height: 36px;
            stroke: white;
            fill: none;
            stroke-width: 2;
        }
        .headshot-placeholder .ph-content strong {
            display: block;
            font-size: 1.05rem;
            margin-bottom: 6px;
        }
        .headshot-placeholder .ph-content span {
            font-size: 0.85rem;
            opacity: 0.9;
        }
        /*  TO REPLACE THIS WITH YOUR HEADSHOT:
            1. Save your headshot as "headshot.jpg" next to this HTML file
            2. Replace this entire <div class="headshot-placeholder">...</div>
               with: <img src="headshot.jpg" alt="Your name" class="headshot">
            (the .headshot class is styled below)
        */
        .headshot {
            aspect-ratio: 1 / 1;
            max-width: 380px;
            margin: 0 auto;
            border-radius: var(--radius-lg);
            object-fit: cover;
            box-shadow: var(--shadow-md);
            display: block;
        }

        .broker-info .broker-name {
            font-size: 2rem;
            margin-bottom: 4px;
        }
        .broker-info .broker-title {
            color: var(--blue);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .broker-info p {
            color: var(--text-muted);
            margin-bottom: 16px;
        }
        .broker-credentials {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 24px;
        }
        .credential {
            display: inline-block;
            padding: 8px 16px;
            background: white;
            border: 1px solid var(--border);
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--navy);
        }

        /* =========================================
           REVIEWS
           ========================================= */
        .reviews {
            background: white;
        }
        .reviews-empty {
            text-align: center;
            padding: 60px 24px;
            background: var(--bg-soft);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            margin-bottom: 40px;
        }
        .reviews-empty-icon {
            display: inline-flex;
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--blue-pale);
            color: var(--blue);
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .reviews-empty-icon svg {
            width: 32px;
            height: 32px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }
        .reviews-empty h3 { margin-bottom: 8px; }
        .reviews-empty p { color: var(--text-muted); margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }

        /* Review submission form */
        .review-form {
            max-width: 640px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border);
        }
        .review-form h3 {
            margin-bottom: 8px;
        }
        .review-form .subtitle {
            color: var(--text-muted);
            margin-bottom: 28px;
            font-size: 0.95rem;
        }
        .form-row {
            margin-bottom: 18px;
        }
        .form-row label {
            display: block;
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 6px;
            color: var(--navy);
        }
        .form-row input,
        .form-row textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            font-family: inherit;
            font-size: 0.95rem;
            color: var(--text);
            background: var(--bg-soft);
            transition: border-color 0.2s, background 0.2s;
        }
        .form-row input:focus,
        .form-row textarea:focus {
            outline: none;
            border-color: var(--blue);
            background: white;
        }
        .form-row textarea {
            resize: vertical;
            min-height: 110px;
        }

        /* Star rating input */
        .rating-input {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .rating-input input {
            display: none;
        }
        .rating-input label {
            cursor: pointer;
            font-size: 1.8rem;
            color: #D8E0E4;
            transition: color 0.15s;
            margin-bottom: 0;
        }
        .rating-input input:checked ~ label,
        .rating-input label:hover,
        .rating-input label:hover ~ label {
            color: #F5B84F;
        }

        .form-note {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 16px;
            text-align: center;
        }

        /*
           NOTE TO OWNER — How real reviews will flow in:
           This form is currently structured for display. To actually collect
           submissions without faking any data, hook the form to one of:
             • Formspree (formspree.io) — easiest, set action="https://formspree.io/f/YOUR_ID"
             • Netlify Forms — add `netlify` attribute to the <form> tag
             • Google Forms — embed an iframe
           Then display approved submissions in the reviews grid below.
           NO placeholder/fake reviews have been added — section starts empty.
        */

        /* Review cards grid (will populate once real reviews arrive) */
        .reviews-grid {
            display: none; /* hidden until you have real reviews to show */
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }
        @media (max-width: 880px) {
            .reviews-grid { grid-template-columns: 1fr; }
        }
        .review-card {
            padding: 28px;
            background: var(--bg-soft);
            border-radius: var(--radius);
            border: 1px solid var(--border);
        }
        .review-stars {
            color: #F5B84F;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .review-text {
            color: var(--text);
            font-style: italic;
            margin-bottom: 16px;
        }
        .review-author {
            font-weight: 600;
            color: var(--navy);
            font-size: 0.9rem;
        }

        /* =========================================
           CONTACT / CTA
           ========================================= */
        .contact {
            background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
            color: white;
            text-align: center;
        }
        .contact h2 { color: white; }
        .contact-sub {
            color: rgba(255, 255, 255, 0.85);
            max-width: 560px;
            margin: 16px auto 40px;
            font-size: 1.05rem;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 900px;
            margin: 0 auto 40px;
        }
        @media (max-width: 768px) {
            .contact-grid { grid-template-columns: 1fr; }
        }
        .contact-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            padding: 28px;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .contact-card .icon {
            display: inline-flex;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.15);
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            color: white;
        }
        .contact-card .icon svg {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }
        .contact-card h3 {
            color: white;
            font-size: 1.05rem;
            margin-bottom: 6px;
        }
        .contact-card p, .contact-card a {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
        }
        .contact-card a:hover { color: white; text-decoration: underline; }

        .btn-light {
            background: white;
            color: var(--navy);
            font-size: 1rem;
            padding: 16px 36px;
        }
        .btn-light:hover {
            background: var(--blue-pale);
            color: var(--navy);
            transform: translateY(-2px);
        }

        /* =========================================
           FOOTER
           ========================================= */
        footer {
            background: var(--navy-deep);
            color: rgba(255, 255, 255, 0.7);
            padding: 50px 0 24px;
            font-size: 0.9rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        @media (max-width: 768px) {
            .footer-inner { grid-template-columns: 1fr; }
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
        }
        .footer-brand img { height: 48px; width: 48px; }
        .footer-brand-text {
            color: white;
            font-weight: 700;
            font-size: 1.05rem;
        }
        .footer-brand-text span {
            display: block;
            font-weight: 400;
            font-size: 0.8rem;
            color: var(--blue-soft);
        }
        footer h4 {
            color: white;
            font-size: 0.95rem;
            margin-bottom: 14px;
            font-weight: 600;
        }
        footer ul { list-style: none; }
        footer ul li { margin-bottom: 8px; }
        footer ul a { color: rgba(255, 255, 255, 0.7); }
        footer ul a:hover { color: white; }
        .footer-bottom {
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.85rem;
        }

        /* Reveal animation */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .reveal {
            animation: fadeUp 0.7s ease both;
        }
        .reveal.delay-1 { animation-delay: 0.1s; }
        .reveal.delay-2 { animation-delay: 0.2s; }

        /* =========================================
           LEAD CAPTURE MODAL (gates calls/booking)
           ========================================= */
        .lead-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(18, 42, 56, 0.55);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }
        .lead-modal-overlay.open {
            opacity: 1;
            visibility: visible;
        }
        .lead-modal {
            background: white;
            border-radius: var(--radius-lg);
            width: 100%;
            max-width: 520px;
            max-height: 92vh;
            overflow-y: auto;
            padding: 36px 32px 28px;
            box-shadow: var(--shadow-lg);
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        .lead-modal-overlay.open .lead-modal {
            transform: translateY(0);
        }
        .lead-modal-close {
            position: absolute;
            top: 14px;
            right: 14px;
            background: var(--bg-soft);
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-size: 1.4rem;
            line-height: 1;
            color: var(--text-muted);
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .lead-modal-close:hover {
            background: var(--blue-pale);
            color: var(--navy);
        }
        .lead-modal h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
            padding-right: 40px;
        }
        .lead-modal .lead-sub {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 24px;
        }
        .lead-form .name-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }
        @media (max-width: 480px) {
            .lead-form .name-row { grid-template-columns: 1fr; gap: 0; }
            .lead-modal { padding: 28px 22px 22px; }
        }
        .lead-form .lead-submit {
            width: 100%;
            justify-content: center;
            margin-top: 6px;
            font-size: 1rem;
            padding: 14px 20px;
        }
        .lead-form .lead-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        .lead-error {
            background: #FDECEC;
            color: #B43A3A;
            padding: 10px 14px;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            margin-top: 12px;
        }
        .lead-privacy {
            color: var(--text-muted);
            font-size: 0.8rem;
            text-align: center;
            margin-top: 14px;
            line-height: 1.5;
        }
    

  .nav-links .lp-dd{position:relative;}
  .nav-links .lp-dd > a{cursor:pointer;}
  .nav-links .lp-dd-menu{position:absolute;top:130%;left:50%;transform:translateX(-50%) translateY(6px);background:#fff;border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-md);padding:8px;min-width:250px;opacity:0;visibility:hidden;transition:all .18s ease;z-index:200;list-style:none;}
  .nav-links .lp-dd:hover .lp-dd-menu{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);}
  .nav-links .lp-dd-menu li{margin:0;}
  .nav-links .lp-dd-menu a{display:block;padding:10px 14px;border-radius:8px;color:var(--navy);text-decoration:none;font-size:.9rem;white-space:nowrap;}
  .nav-links .lp-dd-menu a:hover{background:var(--bg-soft);color:var(--blue);}
  

  .res-page{display:none;}
  body.res-mode .res-page.active{display:block;}
  body.res-mode > section:not(.res-page), body.res-mode > .why, body.res-mode > .hero{display:none !important;}
  .res-hero{background:var(--bg-soft);padding:64px 0 44px;border-bottom:1px solid var(--border);}
  .res-label{display:inline-block;font-size:.8rem;font-weight:700;letter-spacing:.08em;color:var(--blue);background:var(--blue-pale);padding:6px 14px;border-radius:999px;margin-bottom:16px;}
  .res-hero h1{font-size:2.3rem;line-height:1.15;color:var(--navy);max-width:760px;margin:0 0 14px;}
  .res-sub{font-size:1.12rem;color:var(--text-muted);max-width:680px;margin:0 0 26px;}
  .res-body{padding:52px 0;}
  .res-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px;}
  .res-card{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:26px;box-shadow:var(--shadow-sm);}
  .res-card h2{font-size:1.2rem;color:var(--navy);margin:0 0 9px;}
  .res-card p{color:var(--text-muted);margin:0;}
  .res-cta{background:var(--navy);color:#fff;border-radius:var(--radius-lg);padding:42px;text-align:center;margin-top:44px;}
  .res-cta h2{font-size:1.7rem;margin:0 0 9px;color:#fff;}
  .res-cta p{color:var(--blue-soft);margin:0 0 22px;}
  .res-related{margin-top:44px;}
  .res-related h3{font-size:1.05rem;color:var(--navy);margin:0 0 14px;}
  .res-pill{display:inline-block;background:var(--bg-soft);border:1px solid var(--border);color:var(--navy);padding:10px 18px;border-radius:999px;margin:0 8px 8px 0;text-decoration:none;font-size:.9rem;font-weight:500;}
  .res-pill:hover{background:var(--blue-pale);border-color:var(--blue-soft);}
  .res-back{display:inline-block;margin-bottom:18px;color:var(--blue);font-weight:600;text-decoration:none;font-size:.9rem;}
  @media(max-width:760px){.res-grid{grid-template-columns:1fr;}.res-hero h1{font-size:1.7rem;}}
  

.review-card-head{display:flex;align-items:center;gap:12px;margin-bottom:14px;}
.review-avatar{width:46px;height:46px;border-radius:50%;flex:0 0 auto;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:1.05rem;font-family:inherit;}
.review-meta{display:flex;flex-direction:column;line-height:1.2;}
.review-name{font-weight:700;color:#1f2d3d;font-size:1rem;}
.review-source{font-size:.8rem;color:#7a8694;}
.review-card .review-stars{margin-bottom:8px;}
.reviews-summary{display:flex;align-items:center;justify-content:center;gap:14px;flex-wrap:wrap;margin:6px 0 30px;}
.reviews-summary .rs-score{font-size:1.6rem;font-weight:800;color:#1f2d3d;}
.reviews-summary .rs-stars{color:#f5a623;font-size:1.3rem;letter-spacing:2px;}
.reviews-summary .rs-count{color:#7a8694;font-size:.95rem;}
.reviews-summary .rs-badge{display:inline-flex;align-items:center;gap:6px;background:#fff;border:1px solid #e3e8ef;border-radius:999px;padding:6px 14px;font-size:.85rem;color:#4a5563;font-weight:600;text-decoration:none;}
.reviews-summary .rs-badge:hover{border-color:#c7d0db;}


.review-cta{max-width:620px;margin:10px auto 0;text-align:center;background:#fff;border:1px solid #e3e8ef;border-radius:18px;padding:34px 28px;}
.review-cta h3{margin:0 0 10px;color:#1f2d3d;font-size:1.5rem;}
.review-cta p{margin:0 0 22px;color:#5a6573;font-size:1rem;line-height:1.5;}
.review-cta .review-cta-btn{display:inline-flex;align-items:center;gap:10px;background:#1a73e8;color:#fff;text-decoration:none;font-weight:700;font-size:1rem;padding:13px 26px;border-radius:999px;transition:background .15s;}
.review-cta .review-cta-btn:hover{background:#1559b8;}
.review-cta .review-cta-stars{color:#f5a623;letter-spacing:3px;font-size:1.3rem;margin-bottom:14px;}

/* ===== FAQ accordion (added: expanded FAQ page) ===== */
.faq-list{display:flex;flex-direction:column;gap:12px;margin-bottom:28px}
.faq-item{background:#fff;border:1px solid var(--line,#e6e8ec);border-radius:var(--radius,12px);
  box-shadow:var(--shadow-sm,0 1px 2px rgba(16,24,40,.05));overflow:hidden;transition:box-shadow .18s ease}
.faq-item:hover{box-shadow:var(--shadow-md,0 4px 12px rgba(16,24,40,.09))}
.faq-item summary{cursor:pointer;padding:18px 22px;list-style:none;display:flex;
  align-items:center;justify-content:space-between;gap:16px}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary h3{margin:0;font-size:1.02rem;font-weight:600;line-height:1.45;color:var(--navy,#0f2742)}
.faq-item summary::after{content:"+";flex:0 0 auto;font-size:1.4rem;font-weight:400;
  line-height:1;color:var(--green,#5b8a3c);transition:transform .2s ease}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-item[open] summary{border-bottom:1px solid var(--line,#e6e8ec)}
.faq-answer{padding:16px 22px 20px}
.faq-answer p{margin:0;line-height:1.7;color:var(--text-muted,#4a5568)}
@media(max-width:600px){
  .faq-item summary{padding:15px 16px}
  .faq-item summary h3{font-size:.96rem}
  .faq-answer{padding:14px 16px 17px}
}

/* ===== moved from inline <style> in footer/modal/chat ===== */

        /* Chatbot floating launcher */
        .chat-launcher {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--navy);
            color: white;
            border: none;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(27, 58, 75, 0.32), 0 2px 6px rgba(27, 58, 75, 0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                        box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                        background 0.25s ease;
        }
        .chat-launcher:hover {
            background: var(--blue);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(44, 138, 174, 0.4), 0 3px 8px rgba(27, 58, 75, 0.2);
        }
        .chat-launcher svg {
            width: 26px;
            height: 26px;
            stroke: white;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            position: relative;
            z-index: 1;
        }
        .chat-launcher .pulse {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 2px solid var(--navy);
            opacity: 0;
            animation: chatRipple 2.8s ease-out infinite;
            animation-delay: 1.3s;
            pointer-events: none;
        }
        @keyframes chatRipple {
            0%   { transform: scale(1);    opacity: 0.45; }
            100% { transform: scale(1.55); opacity: 0; }
        }
        .chat-launcher.open .pulse { display: none; }

        /* Chat panel */
        .chat-panel {
            position: fixed;
            bottom: 100px;
            right: 24px;
            z-index: 999;
            width: 380px;
            max-width: calc(100vw - 32px);
            height: 560px;
            max-height: calc(100vh - 120px);
            background: white;
            border-radius: 20px;
            box-shadow: 0 24px 64px rgba(27, 58, 75, 0.28);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transform: translateY(20px) scale(0.95);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--border);
        }
        .chat-panel.open {
            transform: translateY(0) scale(1);
            opacity: 1;
            pointer-events: auto;
        }
        @media (max-width: 480px) {
            .chat-panel {
                bottom: 90px;
                right: 12px;
                left: 12px;
                width: auto;
                max-width: none;
                height: calc(100vh - 110px);
            }
            .chat-launcher { bottom: 16px; right: 16px; }
        }

        /* Chat header */
        .chat-header {
            background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
            color: white;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .chat-header img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            padding: 4px;
            object-fit: contain;
        }
        .chat-header-text strong {
            display: block;
            font-size: 0.98rem;
            font-weight: 600;
        }
        .chat-header-text span {
            font-size: 0.78rem;
            opacity: 0.85;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .chat-header-text span::before {
            content: "";
            width: 8px;
            height: 8px;
            background: #4CD964;
            border-radius: 50%;
            display: inline-block;
        }
        .chat-close {
            margin-left: auto;
            background: rgba(255,255,255,0.15);
            border: none;
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .chat-close:hover { background: rgba(255,255,255,0.25); }

        /* Chat messages */
        .chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
            background: var(--bg-soft);
            scroll-behavior: smooth;
        }
        .chat-messages::-webkit-scrollbar { width: 6px; }
        .chat-messages::-webkit-scrollbar-thumb {
            background: var(--blue-soft);
            border-radius: 3px;
        }
        .chat-msg {
            display: flex;
            margin-bottom: 14px;
            animation: msgIn 0.3s ease both;
        }
        @keyframes msgIn {
            from { opacity: 0; transform: translateY(8px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .chat-msg.bot { justify-content: flex-start; }
        .chat-msg.user { justify-content: flex-end; }
        .chat-bubble {
            max-width: 78%;
            padding: 11px 15px;
            border-radius: 18px;
            font-size: 0.92rem;
            line-height: 1.5;
            word-wrap: break-word;
        }
        .chat-msg.bot .chat-bubble {
            background: white;
            color: var(--text);
            border: 1px solid var(--border);
            border-bottom-left-radius: 6px;
        }
        .chat-msg.user .chat-bubble {
            background: var(--blue);
            color: white;
            border-bottom-right-radius: 6px;
        }

        /* Suggestion chips */
        .chat-suggestions {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 6px;
            margin-bottom: 14px;
        }
        .chat-chip {
            background: white;
            border: 1px solid var(--blue-soft);
            color: var(--navy);
            padding: 7px 13px;
            border-radius: 999px;
            font-size: 0.82rem;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: inherit;
            font-weight: 500;
        }
        .chat-chip:hover {
            background: var(--blue);
            color: white;
            border-color: var(--blue);
            transform: translateY(-1px);
        }

        /* Topic categories */
        .chat-categories {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            margin-bottom: 14px;
        }
        .chat-cat {
            background: white;
            border: 1px solid var(--border);
            padding: 10px 12px;
            border-radius: 12px;
            font-size: 0.82rem;
            cursor: pointer;
            text-align: left;
            font-family: inherit;
            color: var(--navy);
            font-weight: 500;
            transition: all 0.2s ease;
        }
        .chat-cat:hover {
            border-color: var(--blue);
            background: var(--blue-pale);
        }

        /* Chat input */
        .chat-input-wrap {
            padding: 12px 16px 16px;
            background: white;
            border-top: 1px solid var(--border);
        }
        .chat-input-row {
            display: flex;
            gap: 8px;
            align-items: center;
            background: var(--bg-soft);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 4px 4px 4px 16px;
            transition: border-color 0.2s;
        }
        .chat-input-row:focus-within {
            border-color: var(--blue);
        }
        .chat-input-row input {
            flex: 1;
            border: none;
            background: transparent;
            outline: none;
            font-family: inherit;
            font-size: 0.92rem;
            padding: 8px 0;
            color: var(--text);
        }
        .chat-send {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--blue);
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, transform 0.2s;
        }
        .chat-send:hover { background: var(--navy); transform: scale(1.05); }
        .chat-send svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .chat-footer {
            text-align: center;
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-top: 8px;
        }

        /* Typing indicator */
        .typing {
            display: inline-flex;
            gap: 4px;
            padding: 4px 0;
        }
        .typing span {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--blue-soft);
            animation: typing 1.4s infinite ease-in-out;
        }
        .typing span:nth-child(2) { animation-delay: 0.2s; }
        .typing span:nth-child(3) { animation-delay: 0.4s; }
        @keyframes typing {
            0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
            30% { transform: translateY(-6px); opacity: 1; }
        }
    

        .call-launcher {
            position: fixed;
            bottom: 104px;
            right: 24px;
            z-index: 999;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: #059669;
            color: white;
            border: none;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(5, 150, 105, 0.32), 0 2px 6px rgba(5, 150, 105, 0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                        box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                        background 0.25s ease;
        }
        .call-launcher:hover {
            background: #047857;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(5, 150, 105, 0.4), 0 3px 8px rgba(5, 150, 105, 0.2);
        }
        .call-launcher svg {
            width: 24px;
            height: 24px;
            stroke: white;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            position: relative;
            z-index: 1;
        }
        .call-launcher .call-pulse {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 2px solid #059669;
            opacity: 0;
            animation: callRipple 2.6s ease-out infinite;
            pointer-events: none;
        }
        @keyframes callRipple {
            0%   { transform: scale(1);    opacity: 0.5; }
            100% { transform: scale(1.55); opacity: 0; }
        }
        .call-launcher .call-tooltip {
            position: absolute;
            right: calc(100% + 12px);
            top: 50%;
            transform: translateY(-50%) translateX(6px);
            background: white;
            color: var(--navy);
            padding: 10px 16px;
            border-radius: 10px;
            font-size: 0.88rem;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s ease;
            box-shadow: 0 8px 24px rgba(27, 58, 75, 0.15), 0 2px 6px rgba(27, 58, 75, 0.08);
            border: 1px solid var(--border);
        }
        .call-launcher .call-tooltip::after {
            content: "";
            position: absolute;
            left: 100%;
            top: 50%;
            transform: translateY(-50%);
            border: 6px solid transparent;
            border-left-color: white;
        }
        .call-launcher .call-tooltip strong {
            display: block;
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--navy);
            letter-spacing: -0.01em;
        }
        .call-launcher .call-tooltip span {
            color: var(--text-muted);
            font-size: 0.78rem;
        }
        .call-launcher:hover .call-tooltip {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
        }
        @media (max-width: 480px) {
            .call-launcher {
                bottom: 88px;
                right: 16px;
                width: 54px;
                height: 54px;
            }
            .call-launcher .call-tooltip { display: none; }
        }
    

/* ===== Static-build layout corrections =====
   .res-page is a <section>, so the global `section{padding:88px 0}` rule stacked
   an extra 88px band above .res-hero (which supplies its own 64px and has its own
   background). In the old SPA this sat under a scrolled-past hero; on a standalone
   page it reads as an empty white gap directly under the nav. Zero it out and let
   .res-hero own the top spacing. */
.res-page{padding-top:0;}
.res-page > .res-hero:first-child{margin-top:0;}
