/* Keezark HOME page sections. Enqueued only on the Keezark Homepage template. */

        /* ── HERO ── */
        .hero {
            padding: 0;
            position: relative;
            overflow: hidden;
            background: var(--navy);
            min-height: 600px;
        }
        /* Background map fills the right side */
        .hero-map-bg {
            position: absolute;
            inset: 0;
            background-image: url('assets/img/hero-map-bg.svg');
            background-size: cover;
            background-position: center right;
            opacity: 0.07;
        }
        .hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 48px;
            align-items: center;
            min-height: 600px;
            padding: 72px 0;
        }
        .hero-text {}
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.18);
            color: rgba(255,255,255,0.9);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.82rem;
            font-weight: 500;
            margin-bottom: 24px;
        }
        .hero-badge span { color: #F9BF47; }
        .hero-text h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 12px;
        }
        .hero-text h1 em {
            font-style: normal;
            color: #F9BF47;
        }
        .hero-subline {
            font-size: 1.2rem;
            font-weight: 600;
            color: rgba(255,255,255,0.88);
            margin-bottom: 16px;
            line-height: 1.4;
        }
        .hero-text p {
            color: rgba(255,255,255,0.72);
            font-size: 1rem;
            max-width: 520px;
            margin-bottom: 32px;
        }
        .hero-cta {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 36px;
        }
        .hero-trust {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .hero-trust-item {
            display: flex;
            align-items: center;
            gap: 7px;
            color: rgba(255,255,255,0.65);
            font-size: 0.85rem;
        }
        .hero-trust-item svg { flex-shrink: 0; }

        /* Hero form card (right column) */
        .hero-form-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            box-shadow: var(--shadow-lg);
        }
        .hero-form-card h3 {
            font-size: 1.2rem;
            color: var(--navy);
            margin-bottom: 6px;
        }
        .hero-form-card p {
            font-size: 0.88rem;
            color: var(--text-mid);
            margin-bottom: 22px;
        }
        .form-group { margin-bottom: 14px; }
        .form-group label {
            display: block;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 5px;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 11px 14px;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 0.92rem;
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background: var(--white);
            transition: border-color 0.15s;
            outline: none;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus { border-color: var(--coral); }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        /* Teams-required tick chips */
        .team-chips { display: flex; flex-wrap: wrap; gap: 7px; }
        .team-chip { display: inline-flex; align-items: center; cursor: pointer; }
        .team-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
        .team-chip span {
            display: inline-block;
            padding: 6px 12px;
            border: 1.5px solid var(--border);
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-mid);
            background: var(--white);
            transition: all 0.15s;
        }
        .team-chip input:checked + span {
            background: rgba(232,77,107,0.1);
            border-color: var(--coral);
            color: var(--coral);
            font-weight: 600;
        }
        .team-chip input:focus-visible + span { outline: 2px solid var(--coral); outline-offset: 2px; }
        /* Property-type tick chips (Draft B) */
        .ptype-chips { display: flex; flex-wrap: wrap; gap: 7px; }
        .ptype-chip { display: inline-flex; align-items: center; cursor: pointer; }
        .ptype-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
        .ptype-chip span {
            display: inline-block;
            padding: 6px 12px;
            border: 1.5px solid var(--border);
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-mid);
            background: var(--white);
            transition: all 0.15s;
        }
        .ptype-chip input:checked + span {
            background: rgba(232,77,107,0.1);
            border-color: var(--coral);
            color: var(--coral);
            font-weight: 600;
        }
        .ptype-chip input:focus-visible + span { outline: 2px solid var(--coral); outline-offset: 2px; }
        /* Category ("Rooms" / "Apartments") group chips — slightly stronger */
        .ptype-chip-group span { border-color: var(--navy); color: var(--navy); font-weight: 600; }
        .ptype-chip-group input:checked + span { background: rgba(232,77,107,0.12); border-color: var(--coral); color: var(--coral); }
        /* Per-type room-count rows (Draft B) */
        .unit-rows { display: flex; flex-direction: column; gap: 8px; }
        .unit-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            background: var(--bg-light);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 8px 12px;
        }
        .unit-row .unit-name { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
        .unit-row input[type="number"] {
            width: 68px;
            padding: 7px 10px;
            border: 1.5px solid var(--border);
            border-radius: 8px;
            font-size: 0.88rem;
            font-family: 'Inter', sans-serif;
            color: var(--text);
            text-align: center;
            outline: none;
            transition: border-color 0.15s;
        }
        .unit-row input[type="number"]:focus { border-color: var(--coral); }
        .form-submit {
            width: 100%;
            padding: 13px;
            background: var(--coral);
            color: var(--white);
            border: none;
            border-radius: 40px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            margin-top: 6px;
            transition: background 0.15s, transform 0.1s;
        }
        .form-submit:hover { background: #d43a58; transform: translateY(-1px); }
        /* Lead-form thank-you panel */
        .lead-form-panel.hidden { display: none; }
        .lead-thanks { display: none; text-align: center; padding: 22px 6px 12px; }
        .lead-thanks.show { display: block; }
        .lead-thanks-tick {
            width: 62px; height: 62px;
            margin: 0 auto 18px;
            background: rgba(232,77,107,0.1);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
        }
        .lead-thanks h3 { font-family: 'Poppins', sans-serif; color: var(--navy); font-size: 1.4rem; margin-bottom: 10px; }
        .lead-thanks p { color: var(--text-mid); font-size: 0.98rem; }
        .form-divider {
            text-align: center;
            color: var(--text-light);
            font-size: 0.82rem;
            margin: 10px 0;
        }
        .btn-callback {
            width: 100%;
            padding: 12px;
            background: transparent;
            border: 1.5px solid var(--border);
            border-radius: 40px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--navy);
            cursor: pointer;
            transition: border-color 0.15s, background 0.15s;
        }
        .btn-callback:hover { border-color: var(--navy); background: var(--bg-light); }

        /* ── USP TICKER STRIP ── */
        .usp-strip {
            background: var(--coral);
            padding: 14px 0;
        }
        .usp-strip-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .usp-strip-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--white);
            font-size: 0.9rem;
            font-weight: 500;
        }
        .usp-strip-item svg { opacity: 0.85; }

        /* ── MAP SECTION (Operating Centres, 1new) ── */
        .map-section {
            background: var(--white);
            padding: 80px 0;
        }
        .map-section .section-header { margin-bottom: 36px; }
        /* Coverage highlight cards (graphical elements alongside coverage copy) */
        .coverage-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 32px;
        }
        .coverage-card {
            background: var(--bg-light);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 26px 24px;
            text-align: center;
            transition: box-shadow 0.18s, transform 0.18s;
        }
        .coverage-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
        .coverage-icon {
            width: 52px; height: 52px;
            margin: 0 auto 14px;
            background: rgba(232,77,107,0.08);
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
        }
        .coverage-icon svg { width: 26px; height: 26px; stroke: var(--coral); }
        .coverage-card h4 { color: var(--navy); font-size: 1.02rem; margin-bottom: 7px; }
        .coverage-card p { color: var(--text-mid); font-size: 0.9rem; }
        .map-container {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            height: 460px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }
        #keezark-map { width: 100%; height: 100%; background: #eaf0f5; z-index: 1; }
        /* Custom Keezark marker (coral pin) */
        .keezark-pin {
            width: 16px; height: 16px;
            background: var(--coral);
            border: 3px solid #fff;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(232,77,107,0.6);
        }
        .leaflet-popup-content-wrapper { border-radius: 10px; }
        .leaflet-popup-content {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            color: var(--navy);
            margin: 10px 14px;
        }
        .keezark-tip {
            background: var(--navy);
            color: #fff;
            border: none;
            border-radius: 5px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.7rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            padding: 3px 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .keezark-tip::before { border-top-color: var(--navy); }
        .map-bold-line {
            background: var(--navy);
            color: var(--white);
            text-align: center;
            padding: 16px 24px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            letter-spacing: 0.01em;
        }

        /* ── MAXIMUM EXPOSURE + REVENUE (2new) ── */
        .exposure-section {
            background: var(--bg-light);
            padding: 80px 0;
        }
        .exposure-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            min-width: 0;
        }
        .exposure-grid > * { min-width: 0; }
        .exposure-left h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            color: var(--navy);
            margin-bottom: 20px;
        }
        .exposure-left h2 em {
            font-style: normal;
            color: var(--coral);
        }
        .exposure-body p {
            color: var(--text-mid);
            margin-bottom: 14px;
            font-size: 0.98rem;
        }
        .revenue-highlight {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 24px;
            margin-top: 20px;
            border-left: 4px solid var(--coral);
        }
        .revenue-highlight h4 {
            color: var(--navy);
            font-size: 1rem;
            margin-bottom: 10px;
        }
        .revenue-highlight ul {
            list-style: none;
        }
        .revenue-highlight ul li {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            padding: 6px 0;
            font-size: 0.93rem;
            color: var(--text-mid);
        }
        .revenue-highlight ul li::before {
            content: "✓";
            color: var(--coral);
            font-weight: 700;
            margin-top: 1px;
            flex-shrink: 0;
        }
        /* ── CHANNEL MARQUEE (scrolling ticker) ── */
        .channel-logos {
            display: flex;
            flex-direction: column;
            gap: 16px;
            min-width: 0;   /* prevent grid blowout */
        }
        .channels-count {
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 4px;
        }
        .channels-count strong { color: var(--navy); font-size: 2rem; font-family: 'Poppins', sans-serif; display: block; line-height: 1; }
        .marquee-track {
            overflow: hidden;
            width: 100%;
            position: relative;
        }
        .marquee-track::before,
        .marquee-track::after {
            content: '';
            position: absolute;
            top: 0; bottom: 0;
            width: 40px;
            z-index: 2;
            pointer-events: none;
        }
        .marquee-track::before { left: 0; background: linear-gradient(to right, var(--bg-light), transparent); }
        .marquee-track::after  { right: 0; background: linear-gradient(to left, var(--bg-light), transparent); }
        .marquee-inner {
            display: flex;
            gap: 14px;
            width: max-content;
            animation: marquee-scroll 24s linear infinite;
        }
        .marquee-track:hover .marquee-inner { animation-play-state: paused; }
        @keyframes marquee-scroll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .channel-logo {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            height: 72px;
            min-width: 148px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: var(--shadow-sm);
            flex-shrink: 0;
        }
        /* Monochrome brand marks — neutral grey */
        .channel-logo svg.brand-mark { width: 22px; height: 22px; fill: #64748B; flex-shrink: 0; }
        .channel-logo .brand-name {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            color: #64748B;
            letter-spacing: -0.01em;
            white-space: nowrap;
        }

        /* ── CORE SERVICES ── */
        .services-section { background: var(--white); }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .service-card {
            background: var(--white);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            transition: all 0.2s;
            position: relative;
            overflow: hidden;
        }
        .service-card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-4px); }
        .service-card-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }
        .service-card-body {
            padding: 26px 26px 28px;
        }
        .service-icon {
            width: 46px;
            height: 46px;
            background: rgba(232,77,107,0.08);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
        }
        .service-icon svg { width: 22px; height: 22px; stroke: var(--coral); fill: none; stroke-width: 1.6; }
        /* Shared minimal line-icon helper */
        .ico { display: inline-flex; align-items: center; justify-content: center; }
        .ico svg { stroke: var(--coral); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
        .service-card h3 {
            font-size: 1.1rem;
            color: var(--navy);
            margin-bottom: 8px;
        }
        .service-card p {
            color: var(--text-mid);
            font-size: 0.91rem;
            margin-bottom: 14px;
        }
        .service-card ul {
            list-style: none;
        }
        .service-card ul li {
            font-size: 0.87rem;
            color: var(--text-mid);
            padding: 4px 0 4px 18px;
            position: relative;
        }
        .service-card ul li::before {
            content: "·";
            position: absolute;
            left: 4px;
            color: var(--coral);
            font-weight: 900;
        }

        /* ── 24/7 SIGNATURE SECTION ── */
        .comms-section {
            background: var(--navy);
            padding: 80px 0;
        }
        .comms-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }
        .comms-text .section-label {
            background: rgba(249,191,71,0.15);
            color: #F9BF47;
        }
        .comms-text h2 {
            color: var(--white);
            margin-bottom: 16px;
        }
        .comms-text p {
            color: rgba(255,255,255,0.72);
            font-size: 1rem;
            margin-bottom: 28px;
        }
        .comms-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .comms-features li {
            display: flex;
            gap: 14px;
        }
        .comms-feat-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .comms-feat-icon svg { width: 20px; height: 20px; stroke: #F9BF47; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
        .comms-feat-text h4 {
            font-size: 0.95rem;
            color: var(--white);
            margin-bottom: 3px;
        }
        .comms-feat-text p {
            font-size: 0.87rem;
            color: rgba(255,255,255,0.58);
            margin: 0;
        }
        .comms-panel {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
        }
        .comms-stat {
            text-align: center;
            margin-bottom: 28px;
            padding-bottom: 28px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .comms-stat .big-num {
            font-family: 'Poppins', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            color: #F9BF47;
            line-height: 1;
        }
        .comms-stat p {
            color: rgba(255,255,255,0.65);
            font-size: 0.9rem;
            margin: 6px 0 0;
        }
        .clock-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .clock-pill {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 30px;
            padding: 8px 18px;
            color: rgba(255,255,255,0.8);
            font-size: 0.88rem;
            font-weight: 500;
        }
        .clock-pill.active {
            background: var(--coral);
            border-color: var(--coral);
            color: var(--white);
        }

        /* ── PRICING GIST (summary + link) ── */
        .pricing-section {
            background: var(--bg-light);
        }
        .pricing-gist {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 820px;
            margin: 0 auto;
        }
        .gist-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 34px 30px;
            text-align: center;
            transition: box-shadow 0.18s, transform 0.18s;
        }
        .gist-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
        .gist-icon {
            width: 56px; height: 56px;
            background: rgba(232,77,107,0.08);
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 18px;
        }
        .gist-icon svg { width: 26px; height: 26px; stroke: var(--coral); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
        .gist-card h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 10px; }
        .gist-card p { color: var(--text-mid); font-size: 0.93rem; }
        .pricing-gist-cta {
            text-align: center;
            margin-top: 40px;
        }
        .pricing-gist-cta p {
            color: var(--text-mid);
            font-size: 1rem;
            margin-bottom: 20px;
        }

        /* ── PRICING (legacy detailed — retained for reference) ── */
        .pricing-center {
            max-width: 780px;
            margin: 0 auto;
        }
        .pricing-card-main {
            background: var(--navy);
            border-radius: var(--radius-lg);
            padding: 52px 52px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .pricing-card-main::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.03);
            border-radius: 50%;
        }
        .pricing-card-main::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 160px;
            height: 160px;
            background: rgba(255,255,255,0.03);
            border-radius: 50%;
        }
        .pricing-badge {
            display: inline-block;
            background: rgba(249,191,71,0.15);
            color: #F9BF47;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 16px;
        }
        .pricing-card-main h3 {
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 12px;
        }
        .pricing-rate {
            font-family: 'Poppins', sans-serif;
            font-size: 5rem;
            font-weight: 800;
            color: #F9BF47;
            line-height: 1;
            margin-bottom: 4px;
        }
        .pricing-rate small {
            font-size: 1.1rem;
            font-weight: 400;
            color: rgba(255,255,255,0.6);
        }
        .pricing-desc {
            color: rgba(255,255,255,0.65);
            font-size: 0.95rem;
            margin-bottom: 32px;
        }
        .pricing-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            text-align: left;
            margin-bottom: 36px;
        }
        .pricing-feature {
            display: flex;
            align-items: center;
            gap: 9px;
            color: rgba(255,255,255,0.82);
            font-size: 0.9rem;
        }
        .pricing-feature::before {
            content: "✓";
            color: #F9BF47;
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .pricing-cta-row {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .pricing-note {
            text-align: center;
            color: var(--text-light);
            font-size: 0.88rem;
            margin-top: 24px;
        }
        .pricing-addons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 28px;
        }
        .addon-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 24px 22px;
            display: flex;
            gap: 14px;
        }
        .addon-icon {
            width: 44px;
            height: 44px;
            background: rgba(232,77,107,0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .addon-icon svg { width: 22px; height: 22px; stroke: var(--coral); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
        .addon-body h4 { color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
        .addon-body .rate { color: var(--coral); font-weight: 700; font-size: 0.92rem; margin-bottom: 4px; }
        .addon-body p { color: var(--text-mid); font-size: 0.87rem; }

        /* ── HOW IT WORKS (8new) ── */
        .how-section { background: var(--white); }
        .steps-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            position: relative;
        }
        .steps-row::before {
            content: '';
            position: absolute;
            top: 36px;
            left: calc(33% - 20px);
            right: calc(33% - 20px);
            height: 2px;
            background: linear-gradient(90deg, var(--coral), var(--coral));
            z-index: 0;
        }
        .step-item {
            text-align: center;
            padding: 0 28px;
            position: relative;
            z-index: 1;
        }
        .step-num {
            width: 72px;
            height: 72px;
            background: var(--coral);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--white);
            margin: 0 auto 22px;
            border: 4px solid var(--white);
            box-shadow: 0 0 0 2px var(--coral);
            position: relative;
            z-index: 2;
        }
        .step-item h4 {
            color: var(--navy);
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        .step-item p {
            color: var(--text-mid);
            font-size: 0.92rem;
        }
        .how-cta {
            text-align: center;
            margin-top: 52px;
        }

        /* ── WHY KEEZARK ── */
        .why-section { background: var(--bg-light); }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }
        .why-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 28px 22px;
            border: 1px solid var(--border);
            transition: box-shadow 0.18s;
        }
        .why-card:hover { box-shadow: var(--shadow-md); }
        .why-card .icon {
            width: 46px;
            height: 46px;
            background: rgba(232,77,107,0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }
        .why-card .icon svg { width: 24px; height: 24px; stroke: var(--coral); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
        .why-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 7px; }
        .why-card p { color: var(--text-mid); font-size: 0.88rem; }

        /* ── WHO IT'S FOR ── */
        .for-section { background: var(--white); }
        .audience-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin-top: 36px;
        }
        .audience-tag {
            background: var(--bg-light);
            border: 1.5px solid var(--border);
            color: var(--navy);
            font-weight: 600;
            font-size: 0.9rem;
            padding: 11px 22px;
            border-radius: 40px;
            transition: all 0.15s;
        }
        .audience-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

        /* ── HASSLE FREE / CTA SECTION ── */
        .hassle-section {
            background: linear-gradient(135deg, var(--navy) 0%, #0e2540 100%);
            padding: 80px 0;
        }
        .hassle-inner {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }
        .hassle-inner .section-label {
            background: rgba(249,191,71,0.15);
            color: #F9BF47;
        }
        .hassle-inner h2 {
            color: var(--white);
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            margin-bottom: 16px;
        }
        .hassle-inner p {
            color: rgba(255,255,255,0.7);
            font-size: 1.05rem;
            margin-bottom: 36px;
        }
        .hassle-cta-row {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ── FAQ (accordion) ── */
        .faq-section { background: var(--bg-light); }
        .faq-list { max-width: 760px; margin: 0 auto; }
        .faq-item {
            background: var(--white);
            border-radius: var(--radius-md);
            margin-bottom: 10px;
            border: 1px solid var(--border);
            overflow: hidden;
            transition: box-shadow 0.18s;
        }
        .faq-item.open { box-shadow: var(--shadow-md); }
        .faq-q {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 18px 22px;
            color: var(--navy);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        .faq-q .faq-toggle {
            position: relative;
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }
        .faq-q .faq-toggle::before,
        .faq-q .faq-toggle::after {
            content: "";
            position: absolute;
            background: var(--coral);
            border-radius: 2px;
            transition: transform 0.25s ease;
        }
        .faq-q .faq-toggle::before { top: 8px; left: 0; width: 18px; height: 2px; }      /* horizontal */
        .faq-q .faq-toggle::after  { top: 0; left: 8px; width: 2px; height: 18px; }       /* vertical */
        .faq-item.open .faq-q .faq-toggle::after { transform: rotate(90deg); opacity: 0; }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .faq-answer p {
            padding: 0 22px 20px;
            color: var(--text-mid);
            font-size: 0.93rem;
            margin: 0;
        }
        .faq-readmore-wrap { text-align: center; margin-top: 22px; }
        .faq-readmore {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: transparent;
            color: var(--coral);
            border: 1.5px solid var(--coral);
            padding: 11px 26px;
            border-radius: 40px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.92rem;
            cursor: pointer;
            transition: background 0.15s, color 0.15s;
        }
        .faq-readmore:hover { background: var(--coral); color: var(--white); }

        /* ── KPI POP-UP (modal) ── */
        .kpi-overlay {
            position: fixed;
            inset: 0;
            background: rgba(16, 40, 64, 0.6);
            backdrop-filter: blur(3px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }
        .kpi-overlay.open { opacity: 1; visibility: visible; }
        .kpi-modal {
            position: relative;
            background: var(--white);
            border-radius: var(--radius-lg);
            max-width: 460px;
            width: 100%;
            padding: 40px 36px 34px;
            box-shadow: 0 24px 60px rgba(0,0,0,0.3);
            transform: translateY(16px) scale(0.98);
            transition: transform 0.28s ease;
            overflow: hidden;
        }
        .kpi-overlay.open .kpi-modal { transform: translateY(0) scale(1); }
        .kpi-modal::before {
            content: '';
            position: absolute;
            top: -70px; right: -70px;
            width: 180px; height: 180px;
            background: radial-gradient(circle, rgba(232,77,107,0.10) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .kpi-close {
            position: absolute;
            top: 14px; right: 16px;
            width: 32px; height: 32px;
            border: none;
            background: var(--bg-light);
            border-radius: 50%;
            color: var(--text-mid);
            font-size: 1.2rem;
            line-height: 1;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: background 0.15s, color 0.15s;
            z-index: 2;
        }
        .kpi-close:hover { background: var(--coral); color: #fff; }
        .kpi-badge {
            display: inline-block;
            background: rgba(232,77,107,0.1);
            color: var(--coral);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 5px 12px;
            border-radius: 20px;
            margin-bottom: 14px;
        }
        .kpi-modal h3 {
            font-family: 'Poppins', sans-serif;
            color: var(--navy);
            font-size: 1.35rem;
            line-height: 1.25;
            margin-bottom: 10px;
        }
        .kpi-modal h3 em { font-style: normal; color: var(--coral); }
        .kpi-modal .kpi-sub {
            color: var(--text-mid);
            font-size: 0.95rem;
            margin-bottom: 22px;
        }
        .kpi-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: 100%;
            justify-content: center;
            background: var(--coral);
            color: #fff;
            border: none;
            padding: 14px;
            border-radius: 40px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.98rem;
            cursor: pointer;
            transition: background 0.15s, transform 0.1s;
        }
        .kpi-cta:hover { background: #d43a58; transform: translateY(-1px); }
        .kpi-form { margin-top: 4px; }
        .kpi-form.hidden { display: none; }
        .kpi-field { margin-bottom: 14px; text-align: left; }
        .kpi-field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
        .kpi-field input,
        .kpi-field select {
            width: 100%;
            padding: 12px 14px;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 0.92rem;
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background: var(--white);
            outline: none;
            transition: border-color 0.15s;
        }
        .kpi-field input:focus,
        .kpi-field select:focus { border-color: var(--coral); }
        .kpi-field .ptype-chips { margin-top: 2px; }
        .kpi-thanks { display: none; text-align: center; padding: 12px 0 4px; }
        .kpi-thanks.show { display: block; }
        .kpi-thanks .kpi-tick {
            width: 54px; height: 54px;
            margin: 0 auto 16px;
            background: rgba(232,77,107,0.1);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
        }
        .kpi-thanks h3 { margin-bottom: 8px; }
        .kpi-thanks p { color: var(--text-mid); font-size: 0.95rem; }

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            .hero-inner { grid-template-columns: 1fr; }
            .hero-form-card { max-width: 480px; }
            .hero-inner { padding: 60px 0; }
            .exposure-grid { grid-template-columns: 1fr; gap: 40px; }
            .comms-inner { grid-template-columns: 1fr; gap: 40px; }
            .pricing-features { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .services-grid { grid-template-columns: 1fr; }
            .steps-row { grid-template-columns: 1fr; gap: 32px; }
            .steps-row::before { display: none; }
            .why-grid { grid-template-columns: 1fr 1fr; }
            nav .nav-link { display: none; }
            .pricing-card-main { padding: 36px 24px; }
            .pricing-addons { grid-template-columns: 1fr; }
            .pricing-gist { grid-template-columns: 1fr; }
            .coverage-grid { grid-template-columns: 1fr; }
            .hero-text h1 { font-size: 1.9rem; }
            footer .footer-grid { grid-template-columns: 1fr 1fr; }
            .form-row { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .why-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
        }
