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

        :root {
            --ink: #0d1624;
            --forest: #1547a8;
            --moss: #1d5ccc;
            --sage: #4a86e8;
            --mint: #bdd4f8;
            --paper: #f0f4fc;
            --cream: #f6f8fd;
            --warm: #e2eaf8;
            --red: #d63030;
            --red-lt: #ff4444;
            --muted: #5a6680;
            --border: #c8d4e8;
            --white: #ffffff;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Barlow', sans-serif;
            background: var(--cream);
            color: var(--ink);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* NOISE TEXTURE OVERLAY */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 1000;
            pointer-events: none;
            opacity: 0.022;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
            background-size: 128px 128px;
        }

        /* ─────────────────────────────────────────── NAV */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 500;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 48px;
            border-bottom: 1px solid transparent;
            transition: all 0.3s;
        }

        nav.scrolled {
            background: rgba(240, 244, 252, 0.97);
            backdrop-filter: blur(12px);
            border-bottom-color: var(--border);
        }

        nav.dark-nav .logo-text,
        nav.dark-nav .nav-link {
            color: rgba(255, 255, 255, 0.85);
        }

        nav.dark-nav .nav-link:hover {
            color: #fff;
        }

        nav.dark-nav .btn-nav-outline {
            color: rgba(255, 255, 255, 0.8);
            border-color: rgba(255, 255, 255, 0.3);
        }

        nav.dark-nav .btn-nav-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        /* Dark nav hamburger lines */
        nav.dark-nav .hamburger-line {
            background: rgba(255, 255, 255, 0.85);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-mark {
            width: 32px;
            height: 32px;
            background: var(--forest);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .logo-text {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 20px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--ink);
            transition: color 0.3s;
        }

        .nav-center {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-link {
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.03em;
            text-decoration: none;
            color: var(--muted);
            transition: color 0.15s;
        }

        .nav-link:hover {
            color: var(--ink);
        }

        .nav-right {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .btn-nav-outline {
            font-size: 13px;
            font-weight: 500;
            padding: 7px 16px;
            border-radius: 5px;
            border: 1.5px solid var(--border);
            background: transparent;
            color: var(--ink);
            text-decoration: none;
            cursor: pointer;
            font-family: 'Barlow', sans-serif;
            transition: all 0.15s;
        }

        .btn-nav-outline:hover {
            background: var(--warm);
        }

        .btn-nav-primary {
            font-size: 13px;
            font-weight: 600;
            padding: 7px 18px;
            border-radius: 5px;
            background: var(--forest);
            color: #fff;
            text-decoration: none;
            cursor: pointer;
            font-family: 'Barlow', sans-serif;
            border: none;
            transition: all 0.15s;
            letter-spacing: 0.02em;
        }

        .btn-nav-primary:hover {
            background: var(--moss);
            transform: translateY(-1px);
        }

        /* ─────────────────────────────────────────── HAMBURGER */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 36px;
            height: 36px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 4px;
            border-radius: 4px;
            transition: background 0.15s;
            flex-shrink: 0;
        }

        .hamburger:hover {
            background: rgba(255,255,255,0.1);
        }

        nav.scrolled .hamburger:hover {
            background: var(--warm);
        }

        .hamburger-line {
            width: 22px;
            height: 2px;
            background: var(--ink);
            border-radius: 2px;
            transition: all 0.25s ease;
            transform-origin: center;
        }

        .hamburger.open .hamburger-line:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.open .hamburger-line:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .hamburger.open .hamburger-line:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ─────────────────────────────────────────── MOBILE MENU DRAWER */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            z-index: 490;
            background: rgba(13, 22, 36, 0.98);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255,255,255,0.08);
            padding: 0;
            transform: translateY(-8px);
            opacity: 0;
            transition: transform 0.25s ease, opacity 0.25s ease;
            pointer-events: none;
        }

        .mobile-menu.open {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu-inner {
            padding: 20px 24px 28px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .mobile-nav-link {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            text-decoration: none;
            color: rgba(255,255,255,0.7);
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.07);
            transition: color 0.15s;
            display: block;
        }

        .mobile-nav-link:hover {
            color: #fff;
        }

        .mobile-menu-actions {
            display: flex;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .mobile-menu-actions .btn-nav-outline {
            flex: 1;
            text-align: center;
            color: rgba(255,255,255,0.75);
            border-color: rgba(255,255,255,0.2);
        }

        .mobile-menu-actions .btn-nav-outline:hover {
            background: rgba(255,255,255,0.08);
            color: #fff;
        }

        .mobile-menu-actions .btn-nav-primary {
            flex: 1;
            text-align: center;
        }

        /* ─────────────────────────────────────────── HERO */
        .hero {
            min-height: 100vh;
            background: #08111f;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .hero-photo {
            position: absolute;
            inset: 0;
            background-image: url('https://eliteextra.com/wp-content/uploads/2022/06/AdobeStock_386147368-1536x910.jpeg');
            background-size: cover;
            background-position: center 25%;
            opacity: 0.42;
            mix-blend-mode: luminosity;
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(to right, rgba(8, 17, 31, 0.82) 0%, rgba(8, 17, 31, 0.55) 55%, rgba(8, 17, 31, 0.1) 100%),
                radial-gradient(ellipse at 50% 100%, rgba(8, 17, 31, 0.7) 0%, transparent 70%);
        }

        .hero-body {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 480px;
            gap: 0;
            flex: 1;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            padding: 120px 48px 80px;
            align-items: center;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 28px;
        }

        .hero-eyebrow-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--red-lt);
            animation: pulse 2s ease infinite;
            box-shadow: 0 0 6px rgba(255, 68, 68, 0.5);
            flex-shrink: 0;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50%       { opacity: 0.4; transform: scale(0.7); }
        }

        .hero-h1 {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(36px, 5.5vw, 76px);
            font-weight: 700;
            line-height: 1.0;
            color: #fff;
            letter-spacing: -0.02em;
            margin-bottom: 10px;
        }

        .hero-h1 em {
            font-style: italic;
            font-weight: 400;
            color: #f0f4ff;
        }

        .hero-h1-sub {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(16px, 2.2vw, 28px);
            font-weight: 400;
            font-style: italic;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 36px;
            line-height: 1.3;
        }

        .hero-desc {
            font-size: 16px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.75;
            max-width: 420px;
            margin-bottom: 44px;
        }

        .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }

        .btn-hero {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 14px 32px;
            border-radius: 4px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.15s;
        }

        .btn-hero-fill {
            background: var(--red);
            color: #fff;
            box-shadow: 0 4px 16px rgba(214, 48, 48, 0.4);
        }

        .btn-hero-fill:hover {
            background: #c02020;
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(214, 48, 48, 0.5);
        }

        .btn-hero-line {
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.8);
            border: 1.5px solid rgba(255, 255, 255, 0.25);
        }

        .btn-hero-line:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.55);
            background: rgba(255, 255, 255, 0.13);
        }

        /* TRUST ROW */
        .hero-trust {
            margin-top: 64px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .trust-big {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 36px;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            letter-spacing: -0.01em;
        }

        .trust-small {
            font-size: 12px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 3px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        /* BOOKING PANEL */
        .booking-panel {
            background: var(--paper);
            border-radius: 2px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .panel-top {
            background: var(--ink);
            padding: 22px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .panel-top-label {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.45);
        }

        .panel-top-status {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: #ff6b6b;
            font-weight: 500;
        }

        .status-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--red-lt);
            box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.25);
            animation: pulse 2s ease infinite;
            flex-shrink: 0;
        }

        .panel-body {
            padding: 28px;
        }

        .phone-cta {
            background: var(--forest);
            border-radius: 3px;
            padding: 20px 24px;
            margin-bottom: 24px;
            text-align: center;
        }

        .phone-cta-label {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.45);
            margin-bottom: 8px;
        }

        .phone-number {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 34px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.04em;
            display: block;
            line-height: 1;
            text-decoration: none;
            transition: color 0.15s;
        }

        .phone-number:hover { color: var(--mint); }
        .phone-number span  { color: var(--mint); }

        .phone-sub {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 6px;
        }

        .panel-steps-label {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 14px;
        }

        .panel-steps { list-style: none; margin-bottom: 24px; }

        .panel-step {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 11px 0;
            border-bottom: 1px solid var(--border);
        }

        .panel-step:last-child { border-bottom: none; }

        .step-circle {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: var(--muted);
        }

        .panel-step.active .step-circle {
            background: var(--forest);
            border-color: var(--forest);
            color: #fff;
        }

        .step-text-main { font-size: 14px; font-weight: 500; color: var(--ink); }
        .step-text-sub  { font-size: 12px; color: var(--muted); margin-top: 2px; }

        .panel-or {
            text-align: center;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--muted);
            margin: 20px 0;
            position: relative;
        }

        .panel-or::before,
        .panel-or::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 38%;
            height: 1px;
            background: var(--border);
        }

        .panel-or::before { left: 0; }
        .panel-or::after  { right: 0; }

        .btn-panel-online {
            display: block;
            width: 100%;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            text-align: center;
            text-decoration: none;
            padding: 14px;
            border-radius: 3px;
            background: var(--forest);
            color: #fff;
            transition: all 0.15s;
        }

        .btn-panel-online:hover {
            background: var(--moss);
            transform: translateY(-1px);
        }

        /* ─────────────────────────────────────────── MOBILE BOOKING CTA BAR */
        /* Shown only on mobile instead of the hidden booking panel */
        .mobile-booking-bar {
            display: none;
            position: relative;
            z-index: 2;
            background: var(--forest);
            padding: 20px 24px;
            margin: 0 16px 0;
            border-radius: 6px;
            box-shadow: 0 8px 32px rgba(21, 71, 168, 0.4);
            margin-top: 40px;
        }

        .mobile-booking-bar-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }

        .mobile-booking-phone {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: 0.03em;
            line-height: 1;
        }

        .mobile-booking-phone span { color: var(--mint); }

        .mobile-booking-label {
            font-size: 11px;
            color: rgba(255,255,255,0.5);
            margin-top: 2px;
            font-weight: 400;
        }

        .mobile-booking-bar-divider {
            height: 1px;
            background: rgba(255,255,255,0.15);
            margin: 16px 0;
        }

        .mobile-booking-bar-actions {
            display: flex;
            gap: 10px;
        }

        .mobile-booking-bar-actions a {
            flex: 1;
            display: block;
            text-align: center;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            text-decoration: none;
            padding: 13px;
            border-radius: 4px;
            transition: all 0.15s;
        }

        .mobile-booking-bar-actions .mbba-online {
            background: #fff;
            color: var(--forest);
        }

        .mobile-booking-bar-actions .mbba-online:hover {
            background: var(--mint);
        }

        .mobile-booking-bar-actions .mbba-call {
            background: rgba(255,255,255,0.12);
            color: rgba(255,255,255,0.85);
            border: 1.5px solid rgba(255,255,255,0.2);
        }

        .mobile-booking-bar-actions .mbba-call:hover {
            background: rgba(255,255,255,0.2);
            color: #fff;
        }

        /* TICKER TAPE */
        .ticker {
            background: var(--forest);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 10px 0;
            overflow: hidden;
            flex-shrink: 0;
            position: relative;
            z-index: 2;
        }

        .ticker-track {
            display: flex;
            gap: 0;
            animation: ticker 28s linear infinite;
            width: max-content;
        }

        .ticker-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0 36px;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.45);
            white-space: nowrap;
        }

        .ticker-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--sage);
            flex-shrink: 0;
        }

        @keyframes ticker {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }

        /* ─────────────────────────────────────────── SECTIONS */
        section { padding: 100px 0; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 48px;
        }

        .tag {
            display: inline-block;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--forest);
            margin-bottom: 16px;
            padding: 4px 10px;
            border: 1.5px solid var(--moss);
            border-radius: 2px;
        }

        .section-title {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(28px, 3.5vw, 46px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: var(--ink);
        }

        /* ─────────────────────────────────────────── HOW IT WORKS */
        #how-it-works { background: var(--paper); }

        .process-layout {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 80px;
            align-items: start;
        }

        .process-sidebar .tag { margin-bottom: 20px; }

        .process-sidebar p {
            font-size: 15px;
            font-weight: 300;
            color: var(--muted);
            line-height: 1.7;
            margin-top: 16px;
        }

        .process-steps { padding-top: 8px; }

        .process-step {
            display: grid;
            grid-template-columns: 60px 1fr;
            gap: 0;
            padding: 32px 0;
            border-bottom: 1px solid var(--border);
            position: relative;
        }

        .process-step:first-child { padding-top: 0; }
        .process-step:last-child  { border-bottom: none; }

        .process-num-col { padding-top: 4px; }

        .process-num {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 52px;
            font-weight: 800;
            color: var(--border);
            line-height: 1;
            letter-spacing: -0.02em;
            transition: color 0.2s;
        }

        .process-step:hover .process-num { color: var(--red); }

        .process-step-title {
            font-family: 'Libre Baskerville', serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 8px;
        }

        .process-step-body {
            font-size: 15px;
            font-weight: 300;
            color: var(--muted);
            line-height: 1.65;
        }

        /* ─────────────────────────────────────────── SERVICES */
        #services { background: var(--cream); }

        .services-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
        }

        .services-table {
            width: 100%;
            border-collapse: collapse;
        }

        .services-table thead tr {
            border-bottom: 2px solid var(--red);
        }

        .services-table th {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--muted);
            padding: 0 0 14px;
            text-align: left;
        }

        .services-table th:last-child { text-align: right; }

        .services-table tbody tr {
            border-bottom: 1px solid var(--border);
            transition: background 0.15s, box-shadow 0.15s;
        }

        .services-table tbody tr:hover {
            background: var(--warm);
            box-shadow: inset 3px 0 0 var(--red);
        }

        .services-table td {
            padding: 22px 16px 22px 0;
            vertical-align: top;
        }

        .services-table td:last-child { text-align: right; }

        .svc-name {
            font-family: 'Libre Baskerville', serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 4px;
        }

        .svc-desc {
            font-size: 13.5px;
            font-weight: 300;
            color: var(--muted);
            line-height: 1.5;
            max-width: 320px;
        }

        .svc-price-big {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: var(--red);
            display: block;
            line-height: 1;
        }

        .svc-price-small {
            font-size: 12px;
            color: var(--muted);
            margin-top: 3px;
        }

        /* ─────────────────────────────────────────── WHY US */
        #why-us { background: var(--ink); }
        #why-us .tag { border-color: var(--sage); color: var(--mint); }
        #why-us .section-title { color: #fff; }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 1px;
            background: rgba(255, 255, 255, 0.08);
            margin-top: 64px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .why-item {
            background: var(--ink);
            padding: 40px 36px;
            transition: background 0.2s;
        }

        .why-item:hover { background: rgba(255, 255, 255, 0.03); }

        .why-icon {
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .why-title {
            font-family: 'Libre Baskerville', serif;
            font-size: 17px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .why-body {
            font-size: 14px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.65;
        }

        /* ─────────────────────────────────────────── STATS BAR */
        .stats-bar { background: var(--forest); padding: 56px 0; }

        .stats-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 48px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-cell {
            background: var(--forest);
            padding: 32px 40px;
            text-align: center;
        }

        .stat-big {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 52px;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            letter-spacing: -0.01em;
        }

        .stat-label {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 8px;
        }

        /* ─────────────────────────────────────────── TESTIMONIALS */
        #testimonials { background: var(--paper); }

        .testimonials-layout {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2px;
            background: var(--border);
        }

        .testimonial { background: var(--paper); padding: 40px 36px; }

        .testi-stars { display: flex; gap: 2px; margin-bottom: 20px; }

        .testi-quote {
            font-family: 'Libre Baskerville', serif;
            font-size: 16px;
            font-style: italic;
            font-weight: 400;
            color: var(--ink);
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .testi-author { display: flex; align-items: center; gap: 12px; }

        .testi-avatar {
            width: 40px;
            height: 40px;
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            flex-shrink: 0;
        }

        .testi-name { font-size: 14px; font-weight: 600; color: var(--ink); }
        .testi-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

        /* ─────────────────────────────────────────── CTA */
        .cta-section {
            background: var(--paper);
            border-top: 1px solid var(--border);
            padding: 100px 0;
        }

        .cta-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 48px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 60px;
            align-items: center;
        }

        .cta-title {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(26px, 3vw, 44px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: var(--ink);
            margin-bottom: 16px;
        }

        .cta-body {
            font-size: 16px;
            font-weight: 300;
            color: var(--muted);
            max-width: 400px;
        }

        .cta-phone {
            text-align: center;
            padding: 36px 48px;
            background: var(--forest);
            border-radius: 2px;
        }

        .cta-phone-label {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 10px;
        }

        .cta-phone-number {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 42px;
            font-weight: 800;
            color: #fff;
            display: block;
            text-decoration: none;
            letter-spacing: 0.03em;
            line-height: 1;
        }

        .cta-phone-number span { color: var(--mint); }
        .cta-phone-number:hover { color: var(--mint); }

        .cta-phone-sub {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.35);
            margin-top: 8px;
        }

        .cta-or {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.3);
            margin: 16px 0;
        }

        .btn-cta-online {
            display: block;
            width: 100%;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-align: center;
            text-decoration: none;
            padding: 13px;
            border-radius: 2px;
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.15s;
        }

        .btn-cta-online:hover {
            background: rgba(255, 255, 255, 0.16);
            color: #fff;
        }

        /* ─────────────────────────────────────────── FOOTER */
        footer {
            background: var(--ink);
            padding: 40px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-brand {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.9);
        }

        .footer-brand span { color: var(--red-lt); }
        .footer-copy { font-size: 13px; color: rgba(255, 255, 255, 0.25); }

        .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }

        .footer-links a {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.3);
            text-decoration: none;
            transition: color 0.15s;
        }

        .footer-links a:hover { color: rgba(255, 255, 255, 0.7); }

        /* ─────────────────────────────────────────── LOGO SWAP */
        nav.dark-nav .logo-light  { display: block; }
        nav.dark-nav .logo-dark   { display: none; }
        nav.scrolled .logo-light  { display: none; }
        nav.scrolled .logo-dark   { display: block; }

        .logo-img {
            height: 44px;
            width: auto;
            display: block;
            flex-shrink: 0;
        }

        /* ═══════════════════════════════════════════
           RESPONSIVE BREAKPOINTS
        ═══════════════════════════════════════════ */

        /* ─── 1024px ─── */
        @media (max-width: 1024px) {
            nav { padding: 0 32px; }

            .hero-body {
                grid-template-columns: 1fr;
                padding: 100px 32px 60px;
            }

            .booking-panel {
                max-width: 480px;
                width: 100%;
            }

            .process-layout {
                grid-template-columns: 1fr;
                gap: 48px;
            }

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

            .stats-inner { grid-template-columns: 1fr 1fr; }
            .stats-inner { padding: 0 32px; }

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

            .cta-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .cta-phone { text-align: left; }

            footer { padding: 32px; }
        }

        /* ─── 768px ─── */
        @media (max-width: 768px) {
            section { padding: 72px 0; }

            nav { padding: 0 20px; }

            nav .nav-center { display: none; }
            nav .nav-right  { display: none; }

            .hamburger { display: flex; }
            .mobile-menu { display: block; }

            .container { padding: 0 20px; }

            /* Hero */
            .hero-body {
                grid-template-columns: 1fr;
                padding: 88px 20px 48px;
                align-items: flex-start;
            }

            .hero-desc { font-size: 15px; max-width: 100%; }

            .hero-actions { gap: 10px; }

            .btn-hero {
                font-size: 14px;
                padding: 12px 24px;
            }

            /* Trust stats — prevent crowding */
            .hero-trust {
                gap: 28px;
                margin-top: 48px;
                padding-top: 32px;
            }

            .trust-big { font-size: 30px; }

            /* Hide desktop booking panel, show mobile bar */
            .booking-panel      { display: none; }
            .mobile-booking-bar { display: block; }

            /* How it works */
            .process-step { grid-template-columns: 48px 1fr; }
            .process-num  { font-size: 40px; }
            .process-step-title { font-size: 18px; }

            /* Services */
            .services-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .services-table th:nth-child(2),
            .services-table td:nth-child(2) { display: none; }

            .svc-name { font-size: 16px; }

            /* Why us */
            .why-grid { grid-template-columns: 1fr 1fr; }
            .why-item { padding: 28px 24px; }

            /* Stats */
            .stats-bar { padding: 40px 0; }
            .stats-inner {
                grid-template-columns: 1fr 1fr;
                padding: 0 20px;
            }

            .stat-cell { padding: 24px 20px; }
            .stat-big  { font-size: 40px; }

            /* CTA */
            .cta-section { padding: 72px 0; }
            .cta-inner   { padding: 0 20px; gap: 32px; }
            .cta-phone   { padding: 28px 24px; }
            .cta-phone-number { font-size: 34px; }

            /* Footer */
            footer {
                flex-direction: column;
                align-items: flex-start;
                padding: 28px 20px;
                gap: 14px;
            }

            .footer-links { gap: 16px; }
        }

        /* ─── 480px ─── */
        @media (max-width: 480px) {
            section { padding: 56px 0; }

            /* Hero */
            .hero-body { padding: 80px 16px 40px; }

            .hero-eyebrow { font-size: 10px; margin-bottom: 20px; }

            .hero-h1 { font-size: clamp(32px, 9vw, 44px); }
            .hero-h1-sub { font-size: 15px; margin-bottom: 24px; }
            .hero-desc { font-size: 14px; margin-bottom: 32px; line-height: 1.7; }

            .btn-hero {
                font-size: 13px;
                padding: 11px 20px;
                width: 100%;
                justify-content: center;
            }

            .hero-actions { flex-direction: column; }

            .hero-trust {
                gap: 20px;
                margin-top: 36px;
                padding-top: 28px;
            }

            .trust-big  { font-size: 28px; }
            .trust-small { font-size: 11px; }

            /* Mobile booking bar */
            .mobile-booking-bar { margin: 32px 16px 0; }
            .mobile-booking-phone { font-size: 22px; }
            .mobile-booking-bar-actions { flex-direction: column; }
            .mobile-booking-bar-actions a { padding: 12px; }

            /* Container */
            .container { padding: 0 16px; }

            /* How it works */
            .process-step { grid-template-columns: 44px 1fr; gap: 0; padding: 24px 0; }
            .process-num  { font-size: 36px; }
            .process-step-title { font-size: 17px; }
            .process-step-body  { font-size: 14px; }

            /* Services */
            .services-table td { padding: 16px 12px 16px 0; }
            .svc-name     { font-size: 15px; }
            .svc-price-big { font-size: 22px; }
            .services-table th:nth-child(2),
            .services-table td:nth-child(2) { display: none; }

            /* Why us */
            .why-grid { grid-template-columns: 1fr; }
            .why-item { padding: 28px 20px; }
            #why-us .section-title { font-size: 26px; }

            /* Stats */
            .stat-cell { padding: 20px 16px; }
            .stat-big  { font-size: 36px; }
            .stat-label { font-size: 10px; }

            /* CTA */
            .cta-inner { padding: 0 16px; }
            .cta-phone { padding: 24px 20px; }
            .cta-phone-number { font-size: 28px; }
            .cta-body  { font-size: 15px; }

            /* Footer */
            footer { padding: 24px 16px; }
            .footer-links { flex-wrap: wrap; gap: 12px; }
            .footer-copy  { font-size: 12px; }
        }

        /* ─── 360px (very small) ─── */
        @media (max-width: 360px) {
            .hero-h1 { font-size: 30px; }
            .mobile-booking-phone { font-size: 20px; }
            .cta-phone-number { font-size: 24px; }
            .stat-big { font-size: 30px; }
        }