    /* ============================================================
   DESIGN SYSTEM – Royal POS (Apple-Inspired Premium Redesign)
   ============================================================ */

    /* --- Reset & Base --- */
    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        /* Colors */
        --primary: #009688;
        --primary-hover: #00796b;
        --primary-light: #20b5a9;
        --primary-rgb: 0, 150, 136;
        --royal-red: var(--primary);
        --royal-red-hover: var(--primary-hover);
        --navy: #031d2d;
        --navy-light: #0b3641;
        --navy-deep: #0f555d;
        --teal: var(--primary);
        --teal-light: var(--primary-light);
        --white: #ffffff;
        --off-white: #f5f5f7;
        --gray-100: #fafafa;
        --gray-200: #e8e8ed;
        --gray-300: #d2d2d7;
        --gray-500: #86868b;
        --gray-700: #424245;
        --gray-900: #1d1d1f;

        /* Typography */
        --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

        /* Spacing */
        --section-pad: clamp(80px, 10vw, 140px);
        --container-max: 1200px;

        /* Effects */
        --glass-bg: rgba(255, 255, 255, 0.88);
        --glass-border: rgba(var(--primary-rgb), 0.14);
        --shadow-card: 0 16px 34px rgba(3, 29, 45, 0.08);
        --shadow-card-hover: 0 24px 54px rgba(3, 29, 45, 0.14);
        --radius-lg: 20px;
        --radius-md: 14px;
        --radius-sm: 10px;
        --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
    }

    html {
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
    }

    body {
        font-family: var(--font);
        color: var(--gray-900);
        background: var(--white);
        line-height: 1.6;
        overflow-x: hidden;
    }

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

    a {
        text-decoration: none;
        color: inherit;
    }

    .container {
        width: 90%;
        max-width: var(--container-max);
        margin: 0 auto;
    }

    /* --- Scroll Reveal Animation (Initial state, JS adds .revealed) --- */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    /* ============================================================
   PRELOADER
   ============================================================ */
    .preloader {
        position: fixed;
        inset: 0;
        z-index: 99999;
        background: var(--navy);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .preloader.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .preloader::after {
        content: '';
        width: 40px;
        height: 40px;
        border: 3px solid rgba(255, 255, 255, 0.15);
        border-top-color: var(--royal-red);
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    /* ============================================================
   NAVIGATION
   ============================================================ */
    .navbar {
        position: fixed;
        top: 18px;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 0 24px;
        transition: transform 0.3s ease, padding 0.3s ease;
    }

    .navbar.scrolled {
        background: transparent;
        box-shadow: none;
    }

    .navbar__inner {
        max-width: var(--container-max);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        height: 74px;
        padding: 0 16px 0 26px;
        border-radius: 28px;
        background: rgba(5, 28, 40, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
        backdrop-filter: saturate(180%) blur(24px);
        -webkit-backdrop-filter: saturate(180%) blur(24px);
        transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    }

    .navbar.scrolled .navbar__inner {
        background: var(--glass-bg);
        border-color: var(--glass-border);
        box-shadow: 0 20px 48px rgba(3, 29, 45, 0.12);
    }

    .navbar__logo {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
    }

    .navbar__logo img {
        height: 34px;
        transition: filter 0.3s ease;
    }

    .navbar__logo .logo-dark {
        display: none;
    }

    .navbar.scrolled .navbar__logo .logo-light {
        display: none;
    }

    .navbar.scrolled .navbar__logo .logo-dark {
        display: block;
    }

    .navbar__links {
        display: flex;
        align-items: center;
        gap: 6px;
        list-style: none;
        padding: 6px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.08);
        margin-left: auto;
    }

    .navbar.scrolled .navbar__links {
        background: rgba(var(--primary-rgb), 0.05);
        border-color: rgba(var(--primary-rgb), 0.12);
    }

    .navbar__links a {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
        letter-spacing: 0.01em;
        padding: 10px 14px;
        border-radius: 999px;
        transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
        position: relative;
    }

    .navbar__links a::after {
        content: none;
    }

    .navbar.scrolled .navbar__links a {
        color: var(--gray-900);
    }

    .navbar__links a:hover {
        color: var(--white);
        background: rgba(255, 255, 255, 0.1);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    }

    .navbar.scrolled .navbar__links a:hover {
        color: var(--primary);
        background: rgba(var(--primary-rgb), 0.1);
        box-shadow: none;
    }

    .navbar__cta {
        font-size: 13px;
        font-weight: 600;
        padding: 11px 20px;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        color: var(--white);
        box-shadow: 0 14px 32px rgba(var(--primary-rgb), 0.28);
        transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
    }

    .navbar__cta:hover {
        background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
        transform: translateY(-1px);
        box-shadow: 0 18px 34px rgba(var(--primary-rgb), 0.34);
    }

    /* Mobile nav */
    .navbar__toggle {
        display: none;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 999px;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
        width: 42px;
        height: 42px;
        flex-shrink: 0;
        transition: background 0.3s ease, border-color 0.3s ease;
    }

    .navbar__toggle span {
        display: block;
        height: 2px;
        width: 18px;
        border-radius: 2px;
        background: var(--white);
        transition: background 0.3s ease, transform 0.3s ease;
    }

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

    .navbar__toggle.open span:nth-child(2) {
        transform: scaleX(0);
    }

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

    .navbar.scrolled .navbar__toggle {
        background: rgba(var(--primary-rgb), 0.08);
        border-color: rgba(var(--primary-rgb), 0.16);
    }

    .navbar.scrolled .navbar__toggle span {
        background: var(--gray-900);
    }

    @media (max-width: 1024px) {
        .navbar {
            top: 14px;
            padding: 0 16px;
        }

        .navbar__inner {
            height: 66px;
            padding: 0 14px 0 18px;
            border-radius: 22px;
        }

        .navbar__toggle {
            display: flex;
        }

        .navbar__links {
            position: fixed;
            top: 92px;
            right: 16px;
            width: min(82vw, 340px);
            height: auto;
            max-height: calc(100vh - 116px);
            background: linear-gradient(180deg, rgba(5, 28, 40, 0.98) 0%, rgba(10, 53, 60, 0.98) 100%);
            flex-direction: column;
            align-items: stretch;
            padding: 22px;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 28px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-12px) scale(0.98);
            transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
            box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
            z-index: 999;
            overflow-y: auto;
            margin-left: 0;
        }

        .navbar__links li {
            width: 100%;
        }

        .navbar__links.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .navbar__links a {
            color: rgba(255, 255, 255, 0.86) !important;
            font-size: 15px;
            padding: 12px 14px;
        }

        .navbar__links a:hover {
            color: var(--white) !important;
            background: rgba(255, 255, 255, 0.08);
        }

        .navbar__cta-mobile {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin-top: 12px;
            font-size: 14px;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: var(--white);
            box-shadow: 0 16px 32px rgba(var(--primary-rgb), 0.28);
        }

        .navbar__cta {
            display: none;
        }

        .mobile-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            backdrop-filter: blur(6px);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }
    }

    /* ============================================================
   HERO
   ============================================================ */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 48%, var(--navy-deep) 100%);
        overflow: hidden;
        padding: 150px 0 80px;
    }

    .hero::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(var(--primary-rgb), 0.18) 0%, transparent 70%);
        top: -100px;
        right: -100px;
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
        bottom: -50px;
        left: -50px;
        pointer-events: none;
    }

    .hero__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .hero__text {
        z-index: 1;
    }

    .hero__badge {
        display: inline-block;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--teal);
        background: rgba(var(--primary-rgb), 0.12);
        padding: 6px 16px;
        border-radius: 20px;
        margin-bottom: 24px;
    }

    .hero__title {
        font-size: clamp(36px, 5vw, 64px);
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -0.03em;
        color: var(--white);
        margin-bottom: 12px;
    }

    .hero__subtitle {
        font-size: clamp(18px, 2.5vw, 24px);
        font-weight: 400;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .hero__desc {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.55);
        margin-bottom: 8px;
        line-height: 1.6;
    }

    .hero__desc a {
        color: var(--teal);
        font-weight: 500;
    }

    .hero__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 32px;
    }

    .store-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 20px;
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: var(--white);
        transition: background 0.3s ease, border 0.3s ease, transform 0.2s ease;
        font-size: 13px;
    }

    .store-btn:hover {
        background: rgba(255, 255, 255, 0.18);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .store-btn img {
        height: 24px;
        width: 24px;
        flex-shrink: 0;
    }

    .store-btn__label {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.6);
    }

    .store-btn__name {
        font-weight: 600;
        font-size: 14px;
    }

    .hero__cta-secondary {
        display: inline-block;
        margin-top: 16px;
        font-size: 13px;
        font-weight: 600;
        color: var(--primary);
        background: rgba(var(--primary-rgb), 0.12);
        border: 1px solid rgba(var(--primary-rgb), 0.22);
        padding: 10px 24px;
        border-radius: var(--radius-sm);
        transition: background 0.3s ease, transform 0.2s ease;
    }

    .hero__cta-secondary:hover {
        background: rgba(var(--primary-rgb), 0.18);
        transform: translateY(-2px);
    }

    .hero__image {
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero__image img {
        max-height: 520px;
        width: auto;
        filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
        animation: heroFloat 6s ease-in-out infinite;
    }

    @keyframes heroFloat {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-14px);
        }
    }

    @media (max-width: 768px) {
        .hero__inner {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero__actions {
            justify-content: center;
        }

        .hero__image img {
            max-height: 320px;
            margin-top: 40px;
        }

        .hero {
            min-height: auto;
            padding: 140px 0 80px;
        }
    }

    /* ============================================================
   TRUSTED LOGOS MARQUEE
   ============================================================ */
    .logos-section {
        padding: 50px 0 60px;
        background: var(--off-white);
    }

    .logos-section__title {
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        color: var(--gray-500);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 32px;
    }

    .logos-track {
        display: flex;
        gap: 60px;
        animation: marquee 30s linear infinite;
        width: max-content;
    }

    .logos-container {
        overflow: hidden;
    }

    .logos-track img {
        height: 40px;
        width: auto;
        object-fit: contain;
        filter: grayscale(1) opacity(0.5);
        transition: filter 0.4s ease;
    }

    .logos-track img:hover {
        filter: grayscale(0) opacity(1);
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* ============================================================
   SECTION DEFAULTS
   ============================================================ */
    .section {
        padding: var(--section-pad) 0;
    }

    .section--gray {
        background: var(--off-white);
    }

    .section--navy {
        background: var(--navy);
        color: var(--white);
    }

    .section__eyebrow {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--teal);
        margin-bottom: 12px;
    }

    .section__title {
        font-size: clamp(28px, 4vw, 48px);
        font-weight: 700;
        letter-spacing: -0.025em;
        line-height: 1.12;
        margin-bottom: 16px;
    }

    .section__desc {
        font-size: 17px;
        color: var(--gray-500);
        max-width: 580px;
        line-height: 1.65;
    }

    .section--navy .section__desc {
        color: rgba(255, 255, 255, 0.6);
    }

    .section__header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section__header .section__desc {
        margin-left: auto;
        margin-right: auto;
    }

    /* ============================================================
   CLOUD BUSINESS SECTION (Understand Area)
   ============================================================ */
    .cloud-biz {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .cloud-biz__text .section__title {
        font-size: clamp(24px, 3vw, 36px);
    }

    .cloud-biz__text p {
        font-size: 15px;
        color: var(--gray-500);
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .btn-primary {
        display: inline-block;
        font-size: 14px;
        font-weight: 600;
        padding: 12px 28px;
        border-radius: 24px;
        background: var(--royal-red);
        color: var(--white);
        transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    }

    .btn-primary:hover {
        background: var(--royal-red-hover);
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(var(--primary-rgb), 0.25);
    }

    .cloud-biz__image img {
        border-radius: var(--radius-lg);
    }

    .cloud-biz__features {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .cloud-biz__feat {
        padding: 20px 24px;
        border-radius: var(--radius-md);
        background: var(--white);
        box-shadow: var(--shadow-card);
        border-left: 3px solid var(--teal);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .cloud-biz__feat:hover {
        box-shadow: var(--shadow-card-hover);
        transform: translateY(-3px);
    }

    .cloud-biz__feat h4 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .cloud-biz__feat p {
        font-size: 13px;
        color: var(--gray-500);
    }

    @media (max-width: 900px) {
        .cloud-biz {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .cloud-biz__features {
            margin-top: 20px;
        }
    }

    /* ============================================================
   WHY CHOOSE – BENTO GRID CARDS
   ============================================================ */
    .bento-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .bento-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 36px 28px;
        text-align: center;
        box-shadow: var(--shadow-card);
        transition: box-shadow 0.3s ease, transform 0.35s ease;
        position: relative;
        overflow: hidden;
    }

    .bento-card::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: var(--radius-lg);
        background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%);
        pointer-events: none;
    }

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

    .bento-card__icon {
        width: 72px;
        height: 72px;
        margin: 0 auto 20px;
        object-fit: contain;
    }

    .bento-card__title {
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4;
    }

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

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

    /* ============================================================
   FEATURE SPLIT (image + text, alternating)
   ============================================================ */
    .feature-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .feature-split--reversed {
        direction: rtl;
    }

    .feature-split--reversed>* {
        direction: ltr;
    }

    .feature-split__image img {
        border-radius: var(--radius-lg);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    }

    .feature-split__content .section__title {
        font-size: clamp(24px, 3vw, 36px);
    }

    .feature-split__content p {
        font-size: 15px;
        color: var(--gray-500);
        line-height: 1.7;
        margin-bottom: 10px;
    }

    .feature-split__content .btn-primary {
        margin-top: 16px;
    }

    .feature-list {
        list-style: none;
        padding: 0;
        margin-top: 16px;
    }

    .feature-list li {
        position: relative;
        padding-left: 24px;
        font-size: 15px;
        color: var(--gray-700);
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .feature-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--teal);
        font-weight: 700;
    }

    @media (max-width: 768px) {
        .feature-split {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .feature-split--reversed {
            direction: ltr;
        }
    }

    /* ============================================================
   B2C CUSTOMER ORDERING (3-col feature row)
   ============================================================ */
    .feature-trio {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .feature-trio__col {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .feature-trio__item {
        display: flex;
        gap: 14px;
        align-items: flex-start;
    }

    .feature-trio__icon {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--teal), var(--teal-light));
        color: var(--white);
        font-size: 20px;
        font-weight: 700;
    }

    .feature-trio__text h4 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .feature-trio__text p {
        font-size: 13px;
        color: var(--gray-500);
    }

    .feature-trio__image {
        text-align: center;
    }

    .feature-trio__image img {
        max-height: 420px;
        margin: 0 auto;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    }

    @media (max-width: 768px) {
        .feature-trio {
            grid-template-columns: 1fr;
        }

        .feature-trio__image {
            order: -1;
        }
    }

    /* ============================================================
   PRICING
   ============================================================ */
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .pricing-card {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-lg);
        padding: 40px 32px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .pricing-card:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .pricing-card--featured {
        background: linear-gradient(160deg, rgba(var(--primary-rgb), 0.16) 0%, rgba(var(--primary-rgb), 0.04) 100%);
        border-color: var(--royal-red);
        transform: scale(1.04);
        box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.15);
    }

    .pricing-card--featured:hover {
        transform: scale(1.06) translateY(-4px);
    }

    .pricing-card__name {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 16px;
        color: rgba(255, 255, 255, 0.7);
    }

    .pricing-card__price {
        font-size: 40px;
        font-weight: 800;
        letter-spacing: -0.03em;
        margin-bottom: 4px;
    }

    .pricing-card__period {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 24px;
    }

    .pricing-card__feature {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.65);
        margin-bottom: 24px;
    }

    .pricing-card__badge {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        background: var(--royal-red);
        color: var(--white);
        padding: 4px 14px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .btn-outline {
        display: inline-block;
        font-size: 14px;
        font-weight: 600;
        padding: 12px 32px;
        border-radius: 24px;
        border: 1.5px solid rgba(255, 255, 255, 0.3);
        color: var(--white);
        transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    }

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }

    .pricing-card--featured .btn-outline {
        background: var(--royal-red);
        border-color: var(--royal-red);
    }

    .pricing-card--featured .btn-outline:hover {
        background: var(--royal-red-hover);
        border-color: var(--royal-red-hover);
    }

    .pricing-tip {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.5);
        margin-top: 12px;
        text-align: center;
    }

    @media (max-width: 768px) {
        .pricing-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin: 0 auto;
        }

        .pricing-card--featured {
            transform: none;
        }

        .pricing-card--featured:hover {
            transform: translateY(-6px);
        }
    }

    /* ============================================================
   FAQ – ACCORDION
   ============================================================ */
    .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .faq-item {
        background: var(--white);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-card);
        overflow: hidden;
        transition: box-shadow 0.3s ease;
    }

    .faq-item:hover {
        box-shadow: var(--shadow-card-hover);
    }

    .faq-item__q {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 20px 24px;
        cursor: pointer;
        user-select: none;
    }

    .faq-item__q-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
        color: var(--teal);
        font-size: 18px;
        font-weight: 700;
    }

    .faq-item__q h4 {
        font-size: 15px;
        font-weight: 600;
        flex: 1;
    }

    .faq-item__q-arrow {
        font-size: 18px;
        color: var(--gray-300);
        transition: transform 0.3s ease;
    }

    .faq-item.open .faq-item__q-arrow {
        transform: rotate(180deg);
    }

    .faq-item__a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .faq-item.open .faq-item__a {
        max-height: 200px;
    }

    .faq-item__a p {
        padding: 0 24px 20px;
        font-size: 14px;
        color: var(--gray-500);
        line-height: 1.65;
    }

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

    /* ============================================================
   CONTACT SECTION
   ============================================================ */
    .contact-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .contact-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 32px 28px;
        box-shadow: var(--shadow-card);
        display: flex;
        align-items: center;
        gap: 16px;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .contact-card:hover {
        box-shadow: var(--shadow-card-hover);
        transform: translateY(-4px);
    }

    .contact-icon {
        width: 52px;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: linear-gradient(135deg, var(--primary), var(--teal-light));
        color: var(--white);
        font-size: 22px;
        flex-shrink: 0;
    }

    .contact-card h4 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .contact-card p {
        font-size: 14px;
        color: var(--gray-500);
    }

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

    /* ============================================================
   CTA BANNER
   ============================================================ */
    .cta-banner {
        text-align: center;
        padding: 60px 40px;
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
        border-radius: var(--radius-lg);
        position: relative;
        overflow: hidden;
    }

    .cta-banner::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
        top: -100px;
        right: -50px;
        pointer-events: none;
    }

    .cta-banner .section__title {
        color: var(--white);
        margin-bottom: 20px;
    }

    .cta-banner .btn-primary {
        font-size: 16px;
        padding: 14px 36px;
    }

    /* ============================================================
   FOOTER
   ============================================================ */
    .footer {
        background: var(--navy);
        padding: 48px 0 0;
    }

    .footer__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 24px;
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer__logo img {
        height: 28px;
    }

    .footer__links {
        display: flex;
        gap: 28px;
        list-style: none;
        flex-wrap: wrap;
    }

    .footer__links a {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.6);
        transition: color 0.3s ease;
    }

    .footer__links a:hover {
        color: var(--white);
    }

    .footer__social {
        display: flex;
        gap: 16px;
        list-style: none;
    }

    .footer__social a {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.6);
        font-size: 16px;
        transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    }

    .footer__social a:hover {
        background: var(--royal-red);
        color: var(--white);
        transform: translateY(-2px);
    }

    .footer__copy {
        text-align: center;
        padding: 20px 0;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.35);
    }

    @media (max-width: 768px) {
        .footer__inner {
            flex-direction: column;
            text-align: center;
        }
    }

    /* ============================================================
   LEAD POPUP
   ============================================================ */
    .popup-overlay {
        position: fixed;
        inset: 0;
        z-index: 10000;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(6px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .popup-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .popup-box {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 40px 36px;
        max-width: 420px;
        width: 90%;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
        position: relative;
        animation: popupIn 0.5s cubic-bezier(.4, 0, .2, 1);
    }

    @keyframes popupIn {
        from {
            opacity: 0;
            transform: translateY(30px) scale(0.96);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .popup-close {
        position: absolute;
        top: 14px;
        right: 14px;
        background: none;
        border: none;
        font-size: 28px;
        color: var(--gray-300);
        cursor: pointer;
        line-height: 1;
        transition: color 0.2s ease;
    }

    .popup-close:hover {
        color: var(--gray-700);
    }

    .popup-box h2 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 20px;
        text-align: center;
    }

    .popup-box input[type="tel"],
    .popup-box input[type="text"],
    .popup-box input[type="email"] {
        width: 100%;
        padding: 12px 16px;
        border: 1.5px solid var(--gray-200);
        border-radius: var(--radius-sm);
        font-family: var(--font);
        font-size: 14px;
        margin-bottom: 12px;
        outline: none;
        transition: border-color 0.3s ease;
    }

    .popup-box input:focus {
        border-color: var(--teal);
    }

    .bt-heading {
        font-size: 13px;
        font-weight: 600;
        color: var(--gray-700);
        margin: 8px 0 10px;
    }

    .business-type-grid {
        display: flex;
        gap: 10px;
        margin-bottom: 14px;
    }

    .bt-option {
        flex: 1;
        cursor: pointer;
    }

    .bt-option input {
        display: none;
    }

    .bt-box {
        text-align: center;
        padding: 12px 8px;
        border: 1.5px solid var(--gray-200);
        border-radius: var(--radius-sm);
        font-size: 13px;
        font-weight: 500;
        transition: border-color 0.3s ease, background 0.3s ease;
    }

    .bt-box .bt-emoji {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .bt-option input:checked+.bt-box {
        border-color: var(--teal);
        background: rgba(var(--primary-rgb), 0.06);
    }

    .popup-box button[type="submit"] {
        width: 100%;
        padding: 13px;
        border: none;
        border-radius: 24px;
        background: var(--royal-red);
        color: var(--white);
        font-family: var(--font);
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease, transform 0.2s ease;
        margin-top: 6px;
    }

    .popup-box button[type="submit"]:hover {
        background: var(--royal-red-hover);
        transform: translateY(-1px);
    }

    #statusMsg {
        text-align: center;
        font-size: 13px;
        color: var(--teal);
        margin-top: 10px;
        min-height: 20px;
    }

    /* ============================================================
   MAP SECTION
   ============================================================ */
    .map-section {
        position: relative;
    }

    .map-panel {
        display: grid;
        grid-template-columns: minmax(0, 1.8fr) minmax(260px, 0.9fr);
        gap: 24px;
        align-items: stretch;
    }

    .map-panel__main,
    .map-panel__sidebar {
        position: relative;
        border-radius: 26px;
        border: 1px solid rgba(var(--primary-rgb), 0.12);
        box-shadow: var(--shadow-card);
        overflow: hidden;
    }

    .map-panel__main {
        padding: 30px;
        background: linear-gradient(180deg, #ffffff 0%, #f4fbf9 100%);
    }

    .map-panel__main::before {
        content: '';
        position: absolute;
        width: 260px;
        height: 260px;
        top: -120px;
        right: -80px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(var(--primary-rgb), 0.18) 0%, transparent 70%);
        pointer-events: none;
    }

    .map-panel__intro {
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 24px;
    }

    .map-panel__kicker {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--teal);
        margin-bottom: 10px;
    }

    .map-panel__desc {
        max-width: 560px;
        font-size: 15px;
        line-height: 1.7;
        color: var(--gray-500);
    }

    .map-panel__stats {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .map-stat {
        min-width: 114px;
        padding: 14px 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.86);
        border: 1px solid rgba(var(--primary-rgb), 0.1);
        box-shadow: 0 12px 26px rgba(3, 29, 45, 0.06);
    }

    .map-stat strong {
        display: block;
        font-size: 28px;
        font-weight: 700;
        line-height: 1;
        color: var(--gray-900);
        margin-bottom: 6px;
    }

    .map-stat span {
        display: block;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--gray-500);
    }

    #map {
        position: relative;
        display: flex;
        align-items: stretch;
        justify-content: stretch;
        width: 100%;
        height: clamp(320px, 34vw, 430px);
        border-radius: 22px;
        overflow: hidden;
        background: linear-gradient(180deg, #f7fcfb 0%, #edf7f5 100%);
        border: 1px solid rgba(var(--primary-rgb), 0.12);
    }

    #map::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 20% 20%, rgba(var(--primary-rgb), 0.07), transparent 28%),
            radial-gradient(circle at 78% 30%, rgba(var(--primary-rgb), 0.06), transparent 24%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
        pointer-events: none;
        z-index: 0;
    }

    .map-svg {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        display: block;
    }

    .map-regions {
        opacity: 0.96;
    }

    .map-region {
        fill: #d9ece8;
        stroke: rgba(255, 255, 255, 0.92);
        stroke-width: 1;
        transition: fill 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
    }

    .map-region--active {
        fill: rgba(var(--primary-rgb), 0.22);
    }

    .map-region.is-active {
        fill: rgba(var(--primary-rgb), 0.4);
    }

    .map-markers {
        filter: drop-shadow(0 10px 18px rgba(var(--primary-rgb), 0.18));
    }

    .map-marker {
        cursor: pointer;
        outline: none;
    }

    .map-marker__pulse {
        fill: rgba(var(--primary-rgb), 0.14);
        animation: mapPulse 2.8s ease-out infinite;
        transform-origin: center;
        transform-box: fill-box;
    }

    .map-marker__ring {
        fill: rgba(255, 255, 255, 0.96);
        stroke: rgba(var(--primary-rgb), 0.22);
        stroke-width: 1.5;
    }

    .map-marker__dot {
        fill: var(--primary);
    }

    .map-marker.is-active .map-marker__ring,
    .map-marker:hover .map-marker__ring,
    .map-marker:focus .map-marker__ring {
        fill: rgba(var(--primary-rgb), 0.18);
        stroke: rgba(var(--primary-rgb), 0.6);
    }

    .map-marker.is-active .map-marker__dot,
    .map-marker:hover .map-marker__dot,
    .map-marker:focus .map-marker__dot {
        fill: var(--primary-hover);
    }

    .map-tooltip {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 4;
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, calc(-100% - 14px));
        border: 1px solid var(--primary);
        border-radius: 999px;
        background: rgba(3, 29, 45, 0.94);
        color: var(--white);
        font-family: var(--font);
        font-size: 13px;
        font-weight: 600;
        padding: 8px 12px;
        white-space: nowrap;
        box-shadow: 0 12px 28px rgba(3, 29, 45, 0.22);
        transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .map-tooltip.is-visible {
        opacity: 1;
        transform: translate(-50%, calc(-100% - 18px));
    }

    @keyframes mapPulse {
        0% {
            transform: scale(0.6);
            opacity: 0.7;
        }

        70% {
            transform: scale(1.5);
            opacity: 0;
        }

        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }

    .map-panel__sidebar {
        padding: 28px 24px;
        background: linear-gradient(180deg, #fcfffe 0%, #f1faf8 100%);
    }

    .map-panel__sidebar-title {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--gray-700);
        margin-bottom: 10px;
    }

    .map-panel__sidebar-copy {
        font-size: 14px;
        line-height: 1.7;
        color: var(--gray-500);
        margin-bottom: 18px;
    }

    .map-country-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .map-country-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 14px;
        border-radius: 999px;
        background: rgba(var(--primary-rgb), 0.08);
        border: 1px solid rgba(var(--primary-rgb), 0.12);
        color: var(--gray-700);
        font-size: 13px;
        font-weight: 600;
        transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .map-country-pill::before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--primary);
        box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.12);
    }

    .map-country-pill.is-active,
    .map-country-pill:hover {
        transform: translateY(-1px);
        background: rgba(var(--primary-rgb), 0.14);
        border-color: rgba(var(--primary-rgb), 0.2);
        color: var(--gray-900);
    }

    @media (max-width: 1024px) {
        .map-panel {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {

        .map-panel__main,
        .map-panel__sidebar {
            padding: 22px;
        }

        .map-panel__intro {
            flex-direction: column;
        }

        .map-panel__stats {
            width: 100%;
        }

        .map-stat {
            flex: 1 1 120px;
        }

        #map {
            height: 300px;
        }
    }

    /* ============================================================
   SVG ICONS (inline)
   ============================================================ */
    .icon-svg {
        display: inline-block;
        width: 1em;
        height: 1em;
        vertical-align: -0.125em;
        fill: currentColor;
    }

    /* ============================================================
   UTILITY
   ============================================================ */
    .text-center {
        text-align: center;
    }

    .mt-40 {
        margin-top: 40px;
    }