    /* ========== CSS VARIABLES — BCONNECT / MGP Palette ========== */
    :root {
        --navy: #0b2d48;
        --navy-dark: #061c2e;
        --navy-light: #133d60;
        --teal: #0a6b58;
        --teal-light: #0d9b7e;
        --teal-dark: #074d3f;
        --deep-blue: #0a4a3a;
        --orange: #f5821f;
        --orange-dark: #d96a10;
        --gold: #f5c518;
        --green: #4caf50;
        --white: #ffffff;
        --off-white: #f0f8f5;
        --gray-light: #ddeee8;
        --gray: #7a8a95;
        --gray-dark: #3a4a55;
        --gradient-primary: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 50%, var(--navy-dark) 100%);
        --gradient-teal: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
        --gradient-hero: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--teal-dark) 100%);
        --gradient-orange: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
        --shadow-sm: 0 2px 8px rgba(11, 45, 72, 0.08);
        --shadow-md: 0 8px 30px rgba(11, 45, 72, 0.12);
        --shadow-lg: 0 20px 60px rgba(11, 45, 72, 0.15);
        --shadow-teal: 0 8px 30px rgba(10, 107, 88, 0.3);
        --shadow-orange: 0 8px 30px rgba(245, 130, 31, 0.3);
        --radius: 12px;
        --radius-lg: 20px;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ========== RESET & BASE ========== */
    *, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }

    body {
        font-family: 'Inter', sans-serif;
        color: var(--navy);
        background: var(--white);
        line-height: 1.7;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, h5 {
        font-family: 'Playfair Display', serif;
        line-height: 1.2;
    }

    .nav-links a:hover, .nav-links a.active {
        color: var(--white) !important;
    }

    .nav-links a {
        font-size: 0.9rem;
        font-weight: 500;
        color: rgba(255,255,255,0.80) !important;
        position: relative;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition);
    }

    img {
        max-width: 100%;
        display: block;
    }

    ul { list-style: none; }

    .container {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ========== UTILITY ========== */
    .section-padding {
        padding: 100px 0;
    }

    .section-header {
        text-align: center;
        max-width: 640px;
        margin: 0 auto 64px;
    }

    .section-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--teal);
        margin-bottom: 16px;
    }

    .section-label::before,
    .section-label::after {
        content: '';
        width: 24px;
        height: 2px;
        background: var(--teal);
        border-radius: 2px;
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 16px;
    }

    .section-title span {
        color: var(--teal);
    }

    .section-desc {
        font-size: 1.05rem;
        color: var(--gray);
        line-height: 1.8;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 32px;
        border-radius: 50px;
        font-family: 'Inter', sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        border: none;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .btn-primary {
        background: var(--gradient-teal);
        color: var(--white);
        box-shadow: var(--shadow-teal);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(10, 107, 88, 0.4);
    }

    .btn-outline {
        background: transparent;
        color: var(--white);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .btn-outline:hover {
        border-color: var(--teal-light);
        background: rgba(10, 107, 88, 0.1);
        color: var(--teal-light);
    }

    .btn-dark {
        background: var(--navy);
        color: var(--white);
    }

    .btn-dark:hover {
        background: var(--navy-light);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    /* ========== PRELOADER ========== */
    #preloader {
        position: fixed;
        inset: 0;
        z-index: 99999;
        background: var(--navy-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    #preloader.hidden {
        opacity: 0;
        visibility: hidden;
    }

    .loader {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .loader-icon {
        width: 60px;
        height: 60px;
        border: 3px solid rgba(0, 196, 204, 0.2);
        border-top-color: var(--teal);
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

    .loader-text {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--white);
        letter-spacing: 4px;
    }

    .loader-text span { color: var(--teal); }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }

    /* ========== NAVIGATION ========== */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 10px 0;
        transition: var(--transition);
    }

    .navbar.scrolled {
        background: rgba(15, 18, 53, 0.95);
        backdrop-filter: blur(20px);
        padding: 12px 0;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    }

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-logo img {
        background: #ffffff;
        padding: 6px 12px;
        border-radius: 8px;
    }

    .nav-logo img {
        height: 50px ;
        width: auto;
        max-width: 230px ;
        object-fit: contain;
    }

    @media (max-width: 768px) {
        .nav-logo img {
            height: 50px ;
            max-width: 230px ;
        }
    }

    @media (max-width: 480px) {
        .nav-logo img {
            height: 50px ;
            max-width: 200px ;
        }
    }

    .nav-logo-text {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--white);
    }

    .nav-logo-text span {
        display: block;
        font-family: 'Inter', sans-serif;
        font-size: 0.6rem;
        font-weight: 500;
        letter-spacing: 6px;
        color: var(--teal);
        text-transform: uppercase;
        margin-top: -2px;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 36px;
    }

    .nav-links a {
        font-size: 0.9rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.75);
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--teal);
        transition: var(--transition);
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--white);
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
        width: 100%;
    }

    .nav-cta {
        padding: 10px 24px !important;
        font-size: 0.85rem !important;
    }

    .nav-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 4px;
    }

    .nav-toggle span {
        width: 26px;
        height: 2.5px;
        background: var(--white) !important;
        border-radius: 4px;
        transition: var(--transition);
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ========== HERO ========== */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: linear-gradient(150deg, #f0f8f5 0%, #ffffff 40%, #f5fbf9 100%);
        overflow: hidden;
    }

    /* Subtle grid overlay */
    .hero-bg-grid {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(10,107,88,0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(10,107,88,0.04) 1px, transparent 1px);
        background-size: 56px 56px;
    }

    /* Glow orbs */
    .hero-bg-glow {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        filter: blur(80px);
    }
    .hero-glow-1 {
        width: 600px; height: 600px;
        top: -120px; right: -100px;
        background: radial-gradient(circle, rgba(245,130,31,0.06) 0%, transparent 70%);
    }
    .hero-glow-2 {
        width: 500px; height: 500px;
        bottom: -100px; left: -80px;
        background: radial-gradient(circle, rgba(10,107,88,0.06) 0%, transparent 70%);
    }
    .hero-glow-3 {
        width: 350px; height: 350px;
        top: 40%; left: 40%;
        background: radial-gradient(circle, rgba(245,197,24,0.04) 0%, transparent 70%);
    }

    /* Decorative rotating diamonds */
    .hero-diamonds {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
    }
    .hero-diamond {
        position: absolute;
        border: 1.5px solid rgba(10,107,88,0.07);
        transform: rotate(45deg);
        border-radius: 4px;
    }
    .hero-diamond.d1 { width: 180px; height: 180px; top: 8%; right: 22%; animation: spinSlow 28s linear infinite; }
    .hero-diamond.d2 { width: 90px;  height: 90px;  top: 55%; right: 5%;  animation: spinSlow 20s linear infinite reverse; opacity: 0.6; }
    .hero-diamond.d3 { width: 60px;  height: 60px;  top: 20%; left: 6%;  animation: spinSlow 16s linear infinite; opacity: 0.5; }
    .hero-diamond.d4 { width: 120px; height: 120px; bottom: 12%; left: 42%; animation: spinSlow 24s linear infinite reverse; opacity: 0.4; }
    @keyframes spinSlow { to { transform: rotate(225deg); } }

    /* Floating particles */
    .hero-particles {
        position: absolute;
        inset: 0;
        overflow: hidden;
        pointer-events: none;
    }
    .particle {
        position: absolute;
        opacity: 0;
        animation: floatParticle 7s ease-in-out infinite;
    }
    .p-dot {
        width: 5px; height: 5px;
        background: var(--orange);
        border-radius: 50%;
    }
    .p-star {
        font-size: 0.85rem;
        color: var(--gold);
    }
    .particle:nth-child(1) { left: 8%;  top: 25%; animation-delay: 0s;   }
    .particle:nth-child(2) { left: 18%; top: 65%; animation-delay: 1.2s; }
    .particle:nth-child(3) { left: 38%; top: 28%; animation-delay: 2.4s; }
    .particle:nth-child(4) { left: 55%; top: 72%; animation-delay: 0.6s; }
    .particle:nth-child(5) { left: 75%; top: 18%; animation-delay: 3.0s; }
    .particle:nth-child(6) { left: 88%; top: 78%; animation-delay: 1.8s; }
    .particle:nth-child(7) { left: 48%; top: 12%; animation-delay: 4.2s; }
    .particle:nth-child(8) { left: 65%; top: 58%; animation-delay: 2.8s; }
    @keyframes floatParticle {
        0%, 100% { opacity: 0; transform: translateY(0) scale(0.8); }
        50%       { opacity: 0.8; transform: translateY(-36px) scale(1.1); }
    }

    /* Container layout */
    .hero .container {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
        padding-top: 110px;
        padding-bottom: 80px;
    }

    /* ---- Hero content (left) ---- */
    .hero-content {
        animation: fadeInUp 0.9s ease forwards;
    }

    /* Top badge */
    .hero-top-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 22px 8px 14px;
        background: rgba(245,197,24,0.10);
        border: 1px solid rgba(245,197,24,0.25);
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--gold);
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 28px;
        position: relative;
    }
    .hero-badge-pulse {
        width: 8px; height: 8px;
        background: var(--orange);
        border-radius: 50%;
        display: inline-block;
        flex-shrink: 0;
        animation: pulseDot 1.8s ease-in-out infinite;
    }
    @keyframes pulseDot {
        0%, 100% { box-shadow: 0 0 0 0 rgba(245,130,31,0.5); }
        50%       { box-shadow: 0 0 0 6px rgba(245,130,31,0); }
    }

    /* Headline */
    .hero-title {
        font-size: clamp(2.4rem, 5vw, 3.8rem);
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 20px;
        line-height: 1.12;
        letter-spacing: -0.5px;
    }
    .hero-amount {
        display: inline-block;
        background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 1.1em;
    }
    .hero-amount sup {
        font-size: 0.45em;
        vertical-align: super;
    }
    .hero-title-accent {
        display: block;
        font-size: 0.72em;
        font-weight: 600;
        color: var(--gray-dark);
        letter-spacing: 0;
        margin-top: 4px;
    }

    /* Description */
    .hero-desc {
        font-size: 1.05rem;
        color: var(--gray-dark);
        max-width: 480px;
        margin-bottom: 32px;
        line-height: 1.85;
    }

    /* Stats strip */
    .hero-stats-strip {
        display: flex;
        align-items: center;
        gap: 0;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 16px;
        padding: 18px 24px;
        margin-bottom: 36px;
        backdrop-filter: blur(10px);
    }
    .hero-stat-chip {
        flex: 1;
        text-align: center;
    }
    .chip-value {
        display: block;
        font-family: 'Playfair Display', serif;
        font-size: 1.55rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--orange), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.1;
        margin-bottom: 4px;
    }
    .chip-label {
        display: block;
        font-size: 0.72rem;
        font-weight: 600;
        color: var(--gray);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .hero-stat-sep {
        width: 1px;
        height: 40px;
        background: var(--gray-light);
        flex-shrink: 0;
    }

    /* Buttons */
    .hero-buttons {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
    }
    .hero-cta-primary {
        padding: 15px 34px;
        font-size: 0.95rem;
        border-radius: 50px;
    }
    .hero-cta-ghost {
        padding: 14px 30px;
        border-radius: 50px;
        background: rgba(10,107,88,0.06);
        border: 1.5px solid rgba(10,107,88,0.20);
        color: var(--teal);
        font-size: 0.92rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: var(--transition);
    }
    .hero-cta-ghost:hover {
        background: rgba(10,107,88,0.12);
        border-color: var(--teal);
        color: var(--teal-dark);
    }

    /* ---- Hero visual (right) ---- */
    .hero-visual {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: fadeInRight 0.9s 0.25s ease forwards;
        opacity: 0;
    }

    /* Income card */
    .hero-income-card {
        background: var(--white);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: 1px solid var(--gray-light);
        border-radius: 24px;
        padding: 32px;
        width: 100%;
        max-width: 420px;
        box-shadow: var(--shadow-lg);
    }

    /* Card header */
    .inc-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 28px;
    }
    .inc-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: 'Inter', sans-serif;
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--navy);
        letter-spacing: 1px;
    }
    .inc-brand-icon {
        width: 34px; height: 34px;
        background: linear-gradient(135deg, var(--teal), var(--teal-light));
        border-radius: 8px;
        display: flex; align-items: center; justify-content: center;
        font-size: 0.8rem;
        color: #fff;
    }
    .inc-live-badge {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--orange);
        background: rgba(245,130,31,0.12);
        border: 1px solid rgba(245,130,31,0.25);
        padding: 4px 12px;
        border-radius: 20px;
        letter-spacing: 1px;
    }
    .inc-live-dot {
        width: 6px; height: 6px;
        background: var(--orange);
        border-radius: 50%;
        animation: pulseDot 1.5s infinite;
    }

    /* Prize block */
    .inc-prize {
        background: linear-gradient(135deg, rgba(245,130,31,0.14) 0%, rgba(245,197,24,0.08) 100%);
        border: 1px solid rgba(245,197,24,0.2);
        border-radius: 16px;
        padding: 22px 24px;
        margin-bottom: 24px;
        text-align: center;
    }
    .inc-prize-label {
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--gray);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    .inc-prize-amount {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--orange), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        margin-bottom: 8px;
    }
    .inc-prize-unit {
        font-size: 0.45em;
        font-weight: 600;
        opacity: 0.8;
    }
    .inc-prize-note {
        font-size: 0.8rem;
        color: var(--gray);
        line-height: 1.5;
    }

    /* Divider */
    .inc-divider {
        height: 1px;
        background: var(--gray-light);
        margin-bottom: 22px;
    }

    /* Metrics */
    .inc-metrics {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin-bottom: 22px;
    }
    .inc-metric {
        display: flex;
        align-items: center;
        gap: 12px;
        background: var(--off-white);
        border: 1px solid var(--gray-light);
        border-radius: 12px;
        padding: 14px;
    }
    .inc-metric-icon {
        width: 36px; height: 36px;
        border-radius: 10px;
        display: flex; align-items: center; justify-content: center;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    .inc-metric-icon.orange    { background: rgba(245,130,31,0.18); color: var(--orange); }
    .inc-metric-icon.teal-icon { background: rgba(10,107,88,0.22); color: var(--teal-light); }
    .inc-metric-val {
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--navy);
        line-height: 1.1;
    }
    .inc-metric-lbl {
        font-size: 0.68rem;
        color: var(--gray);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 2px;
    }

    /* BV progress */
    .inc-bv { margin-bottom: 22px; }
    .inc-bv-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }
    .inc-bv-label {
        font-size: 0.78rem;
        color: var(--gray);
        font-weight: 500;
    }
    .inc-bv-count {
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--teal-light);
    }
    .inc-bv-track {
        height: 6px;
        background: var(--gray-light);
        border-radius: 99px;
        overflow: hidden;
    }
    .inc-bv-fill {
        height: 100%;
        width: 0%;
        border-radius: 99px;
        background: linear-gradient(90deg, var(--teal), var(--teal-light));
        animation: bvFill 2s 1s cubic-bezier(0.4,0,0.2,1) forwards;
    }
    @keyframes bvFill { to { width: 72%; } }

    /* Footer / member avatars */
    .inc-footer {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-top: 18px;
        border-top: 1px solid var(--gray-light);
    }
    .inc-avatars {
        display: flex;
    }
    .inc-av {
        width: 30px; height: 30px;
        border-radius: 50%;
        border: 2px solid var(--gray-light);
        background: linear-gradient(135deg, var(--teal), var(--teal-light));
        display: flex; align-items: center; justify-content: center;
        font-size: 0.65rem;
        font-weight: 700;
        color: #fff;
        margin-left: -8px;
    }
    .inc-av:first-child { margin-left: 0; }
    .inc-members-text {
        font-size: 0.78rem;
        color: var(--gray);
        font-weight: 500;
    }

    /* Floating badge */
    .hero-float-badge {
        position: absolute;
        bottom: -16px;
        left: -24px;
        display: flex;
        align-items: center;
        gap: 8px;
        background: var(--white);
        backdrop-filter: none;
        border: 1px solid rgba(245,197,24,0.40);
        border-radius: 50px;
        padding: 10px 20px;
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--gold);
        animation: floatBadge 4s ease-in-out infinite;
        white-space: nowrap;
        box-shadow: var(--shadow-md);
    }
    @keyframes floatBadge {
        0%, 100% { transform: translateY(0); }
        50%       { transform: translateY(-8px); }
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50%       { transform: translateY(-10px); }
    }
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(32px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInRight {
        from { opacity: 0; transform: translateX(32px); }
        to   { opacity: 1; transform: translateX(0); }
    }

    /* ---- Hero responsive ---- */
    @media (max-width: 1024px) {
        .hero .container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 48px;
        }
        .hero-desc { margin-left: auto; margin-right: auto; }
        .hero-stats-strip { max-width: 440px; margin-left: auto; margin-right: auto; }
        .hero-buttons { justify-content: center; }
        .hero-visual { margin-top: 0; }
        .hero-float-badge { left: 50%; transform: translateX(-50%); bottom: -20px; }
    }
    @media (max-width: 600px) {
        .hero-income-card { padding: 24px 20px; }
        .inc-prize-amount { font-size: 2.2rem; }
        .inc-metrics { grid-template-columns: 1fr; }
        .hero-float-badge { font-size: 0.72rem; padding: 8px 16px; }
    }

    /* ========== CLIENTS BAR ========== */
    .clients-bar {
        background: var(--off-white);
        padding: 40px 0;
        border-bottom: 1px solid var(--gray-light);
    }

    .clients-bar .container {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .clients-label {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--gray);
        text-transform: uppercase;
        letter-spacing: 2px;
        white-space: nowrap;
    }

    .clients-logos {
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex: 1;
        gap: 32px;
        overflow: hidden;
    }

    .client-logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--gray);
        opacity: 0.4;
        transition: var(--transition);
        white-space: nowrap;
    }

    .client-logo:hover { opacity: 0.8; }

    /* ========== ABOUT ========== */
    .about {
        background: var(--white);
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .about-image {
        position: relative;
    }

    .about-image-main {
        width: 100%;
        height: 500px;
        background: var(--gradient-primary);
        border-radius: var(--radius-lg);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-image-main::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(0, 196, 204, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 196, 204, 0.05) 1px, transparent 1px);
        background-size: 30px 30px;
    }

    .about-image-icon {
        font-size: 6rem;
        color: rgba(0, 196, 204, 0.2);
        z-index: 1;
    }

    .about-exp-badge {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: var(--white);
        border-radius: var(--radius);
        padding: 24px 32px;
        box-shadow: var(--shadow-lg);
        text-align: center;
    }

    .about-exp-number {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--teal);
        line-height: 1;
    }

    .about-exp-text {
        font-size: 0.8rem;
        color: var(--gray);
        font-weight: 600;
        margin-top: 4px;
    }

    .about-content .section-label { justify-content: flex-start; }
    .about-content .section-label::before { display: none; }

    .about-text {
        font-size: 1.05rem;
        color: var(--gray-dark);
        margin-bottom: 32px;
        line-height: 1.9;
    }

    .about-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 36px;
    }

    .about-feature {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .about-feature-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: rgba(0, 196, 204, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--teal);
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .about-feature span {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--navy);
    }

    /* ========== SERVICES ========== */
    .services {
        background: var(--off-white);
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .service-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 40px 32px;
        transition: var(--transition);
        border: 1px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-teal);
        transform: scaleX(0);
        transform-origin: left;
        transition: var(--transition);
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(0, 196, 204, 0.1);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        background: rgba(0, 196, 204, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--teal);
        margin-bottom: 24px;
        transition: var(--transition);
    }

    .service-card:hover .service-icon {
        background: var(--gradient-teal);
        color: var(--white);
        box-shadow: var(--shadow-teal);
    }

    .service-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 12px;
    }

    .service-desc {
        font-size: 0.92rem;
        color: var(--gray);
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .service-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--teal);
    }

    .service-link i {
        transition: var(--transition);
    }

    .service-link:hover i {
        transform: translateX(4px);
    }

    /* ========== WHY US / FEATURES ========== */
    .why-us {
        background: #ffffff;
        position: relative;
        overflow: hidden;
    }

    .why-us::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: radial-gradient(circle at top right, rgba(10,107,88,0.03) 0%, transparent 60%);
    }

    .why-us .section-title { color: var(--navy); }
    .why-us .section-desc { color: var(--gray-dark); }

    .why-us-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        position: relative;
        z-index: 1;
    }

    .why-card {
        background: var(--off-white);
        border: 1px solid var(--gray-light);
        border-radius: var(--radius-lg);
        padding: 36px 28px;
        text-align: center;
        transition: var(--transition);
    }

    .why-card:hover {
        background: var(--white);
        border-color: rgba(10,107,88,0.20);
        transform: translateY(-4px);
        box-shadow: var(--shadow-sm);
    }

    .why-card-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: rgba(0, 196, 204, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: var(--teal);
        margin: 0 auto 20px;
    }

    .why-card-title {
        font-family: 'Inter', sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 10px;
    }

    .why-card-desc {
        font-size: 0.85rem;
        color: var(--gray-dark);
        line-height: 1.7;
    }

    /* ========== PROCESS ========== */
    .process {
        background: var(--white);
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        position: relative;
    }

    .process-steps::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 15%;
        width: 70%;
        height: 2px;
        background: linear-gradient(to right, var(--teal), rgba(0, 196, 204, 0.1));
    }

    .process-step {
        text-align: center;
        position: relative;
    }

    .step-number {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--off-white);
        border: 3px solid var(--gray-light);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--navy);
        transition: var(--transition);
        position: relative;
        z-index: 1;
    }

    .process-step:hover .step-number {
        background: var(--gradient-teal);
        border-color: var(--teal);
        color: var(--white);
        box-shadow: var(--shadow-teal);
    }

    .step-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 8px;
    }

    .step-desc {
        font-size: 0.88rem;
        color: var(--gray);
        line-height: 1.7;
    }

    /* ========== STATS ========== */
    .stats {
        background: var(--off-white);
        padding: 80px 0;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }

    .stat-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 40px 24px;
        text-align: center;
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
    }

    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        background: rgba(0, 196, 204, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--teal);
        margin: 0 auto 16px;
    }

    .stat-number {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--navy);
        line-height: 1;
        margin-bottom: 6px;
    }

    .stat-label {
        font-size: 0.85rem;
        color: var(--gray);
        font-weight: 500;
    }

    /* ========== TESTIMONIALS ========== */
    .testimonials {
        background: var(--white);
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .testimonial-card {
        background: var(--off-white);
        border-radius: var(--radius-lg);
        padding: 36px;
        transition: var(--transition);
        border: 1px solid transparent;
    }

    .testimonial-card:hover {
        background: var(--white);
        box-shadow: var(--shadow-md);
        border-color: rgba(0, 196, 204, 0.15);
    }

    .testimonial-stars {
        display: flex;
        gap: 4px;
        margin-bottom: 20px;
    }

    .testimonial-stars i {
        font-size: 0.85rem;
        color: #f5b731;
    }

    .testimonial-text {
        font-size: 0.95rem;
        color: var(--gray-dark);
        line-height: 1.8;
        margin-bottom: 24px;
        font-style: italic;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .testimonial-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--gradient-teal);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: var(--white);
        font-size: 0.9rem;
    }

    .testimonial-name {
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--navy);
    }

    .testimonial-role {
        font-size: 0.8rem;
        color: var(--gray);
    }

    /* ========== CTA ========== */
    .cta {
        background: var(--off-white);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .cta::before {
        display: none;
    }

    .cta-content {
        position: relative;
        text-align: center;
        max-width: 680px;
        margin: 0 auto;
    }

    .cta-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 20px;
    }

    .cta-title span { color: var(--teal); }

    .cta-desc {
        font-size: 1.1rem;
        color: var(--gray-dark);
        margin-bottom: 40px;
        line-height: 1.8;
    }

    .cta .btn-outline {
        color: var(--navy);
        border-color: var(--gray-light);
    }

    .cta .btn-outline:hover {
        border-color: var(--teal);
        background: rgba(10,107,88,0.06);
        color: var(--teal);
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    /* ========== CONTACT ========== */
    .contact {
        background: var(--off-white);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
        align-items: start;
    }

    .contact-info-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-info-card {
        display: flex;
        gap: 16px;
        background: var(--white);
        border-radius: var(--radius);
        padding: 24px;
        transition: var(--transition);
    }

    .contact-info-card:hover {
        box-shadow: var(--shadow-md);
    }

    .contact-info-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(0, 196, 204, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: var(--teal);
        flex-shrink: 0;
    }

    .contact-info-label {
        font-size: 0.8rem;
        color: var(--gray);
        font-weight: 500;
        margin-bottom: 4px;
    }

    .contact-info-value {
        font-size: 1rem;
        font-weight: 600;
        color: var(--navy);
    }

    .contact-social {
        display: flex;
        gap: 12px;
        margin-top: 12px;
    }

    .social-link {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        color: var(--navy);
        transition: var(--transition);
        border: 1px solid var(--gray-light);
    }

    .social-link:hover {
        background: var(--gradient-teal);
        color: var(--white);
        border-color: transparent;
        transform: translateY(-2px);
        box-shadow: var(--shadow-teal);
    }

    .contact-form {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 44px;
        box-shadow: var(--shadow-sm);
    }

    .contact-form h3 {
        font-size: 1.5rem;
        color: var(--navy);
        margin-bottom: 8px;
    }

    .contact-form > p {
        font-size: 0.9rem;
        color: var(--gray);
        margin-bottom: 28px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid var(--gray-light);
        border-radius: var(--radius);
        font-family: 'Inter', sans-serif;
        font-size: 0.92rem;
        color: var(--navy);
        transition: var(--transition);
        background: var(--off-white);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--teal);
        background: var(--white);
        box-shadow: 0 0 0 4px rgba(0, 196, 204, 0.1);
    }

    .form-group textarea {
        height: 120px;
        resize: vertical;
    }

    .form-submit {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 1rem;
    }

    /* ========== FOOTER ========== */
    .footer {
        background: var(--navy-dark);
        padding: 80px 0 0;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 48px;
        padding-bottom: 60px;
    }

    .footer-brand-text {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.45);
        line-height: 1.8;
        margin: 20px 0;
    }

    .footer-title {
        font-family: 'Inter', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 24px;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.45);
        transition: var(--transition);
    }

    .footer-links a:hover {
        color: var(--teal);
        padding-left: 4px;
    }

    .footer-newsletter p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 16px;
        line-height: 1.7;
    }

    .newsletter-form {
        display: flex;
        gap: 8px;
    }

    .newsletter-form input {
        flex: 1;
        padding: 12px 16px;
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.05);
        color: var(--white);
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        transition: var(--transition);
    }

    .newsletter-form input::placeholder {
        color: rgba(255, 255, 255, 0.3);
    }

    .newsletter-form input:focus {
        outline: none;
        border-color: var(--teal);
    }

    .newsletter-form button {
        padding: 12px 24px;
        border-radius: 50px;
        background: var(--gradient-teal);
        color: var(--white);
        border: none;
        font-weight: 600;
        font-size: 0.85rem;
        cursor: pointer;
        transition: var(--transition);
    }

    .newsletter-form button:hover {
        box-shadow: var(--shadow-teal);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding: 24px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-bottom p {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.35);
    }

    .footer-bottom p span { color: var(--teal); }

    .footer-bottom-links {
        display: flex;
        gap: 24px;
    }

    .footer-bottom-links a {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.35);
    }

    .footer-bottom-links a:hover {
        color: var(--teal);
    }

    /* ========== BACK TO TOP ========== */
    .back-to-top {
        position: fixed;
        bottom: 32px;
        right: 32px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--gradient-teal);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        cursor: pointer;
        border: none;
        box-shadow: var(--shadow-teal);
        transition: var(--transition);
        opacity: 0;
        visibility: hidden;
        z-index: 999;
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-4px);
    }

    /* ========== RESPONSIVE — GLOBAL ========== */
    @media (max-width: 1024px) {
        .services-grid      { grid-template-columns: repeat(2, 1fr); }
        .why-us-grid        { grid-template-columns: repeat(2, 1fr); }
        .process-steps      { grid-template-columns: repeat(2, 1fr); }
        .process-steps::before { display: none; }
        .stats-grid         { grid-template-columns: repeat(2, 1fr); }
        .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
        .footer-grid        { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: var(--navy-dark);
            flex-direction: column;
            justify-content: center;
            padding: 40px;
            transition: var(--transition);
            box-shadow: -10px 0 30px rgba(0,0,0,0.4);
        }
        .nav-links.open        { right: 0; }
        .nav-toggle            { display: flex; z-index: 1001; }
        .about-grid            { grid-template-columns: 1fr; gap: 40px; }
        .about-image           { order: -1; }
        .services-grid         { grid-template-columns: 1fr; }
        .why-us-grid           { grid-template-columns: 1fr; }
        .contact-grid          { grid-template-columns: 1fr; }
        .form-row              { grid-template-columns: 1fr; }
        .clients-bar .container{ flex-direction: column; gap: 20px; }
        .clients-logos         { flex-wrap: wrap; justify-content: center; }
        .footer-grid           { grid-template-columns: 1fr; }
        .footer-bottom         { flex-direction: column; text-align: center; }
        .section-padding       { padding: 70px 0; }
        .hero-stats-strip      { flex-wrap: wrap; gap: 12px; }
        .hero-stat-sep         { display: none; }
    }

    @media (max-width: 480px) {
        .about-features     { grid-template-columns: 1fr; }
        .process-steps      { grid-template-columns: 1fr; }
        .stats-grid         { grid-template-columns: 1fr; }
        .testimonials-grid  { grid-template-columns: 1fr; }
        .contact-form       { padding: 28px 20px; }
    }

    /* ========== LUCKY DRAW SECTION ========== */
    .lucky-draw {
        background: #f0f8f5;
        padding: 80px 0;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .lucky-draw::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            radial-gradient(circle at 15% 50%, rgba(245,130,31,0.04) 0%, transparent 45%),
            radial-gradient(circle at 85% 50%, rgba(245,197,24,0.04) 0%, transparent 45%);
    }

    .lucky-draw-stars {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
    }

    .lucky-draw-stars span {
        position: absolute;
        font-size: 1.2rem;
        opacity: 0;
        animation: starPop 3s ease-in-out infinite;
        color: var(--gold);
    }

    .lucky-draw-stars span:nth-child(1)  { left: 5%;  top: 20%; animation-delay: 0s;    }
    .lucky-draw-stars span:nth-child(2)  { left: 12%; top: 70%; animation-delay: 0.4s;  }
    .lucky-draw-stars span:nth-child(3)  { left: 20%; top: 35%; animation-delay: 0.8s;  }
    .lucky-draw-stars span:nth-child(4)  { left: 30%; top: 80%; animation-delay: 1.2s;  }
    .lucky-draw-stars span:nth-child(5)  { left: 70%; top: 15%; animation-delay: 0.2s;  }
    .lucky-draw-stars span:nth-child(6)  { left: 78%; top: 65%; animation-delay: 0.6s;  }
    .lucky-draw-stars span:nth-child(7)  { left: 85%; top: 40%; animation-delay: 1.0s;  }
    .lucky-draw-stars span:nth-child(8)  { left: 92%; top: 75%; animation-delay: 1.4s;  }
    .lucky-draw-stars span:nth-child(9)  { left: 50%; top: 10%; animation-delay: 1.6s;  }
    .lucky-draw-stars span:nth-child(10) { left: 50%; top: 85%; animation-delay: 0.3s;  }

    @keyframes starPop {
        0%, 100% { opacity: 0; transform: scale(0.6) rotate(0deg); }
        50%       { opacity: 1; transform: scale(1.2) rotate(15deg); }
    }

    .lucky-draw-inner {
        position: relative;
        z-index: 2;
    }

    .lucky-draw-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, var(--orange), var(--gold));
        color: var(--navy-dark);
        font-weight: 800;
        font-size: 0.82rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        padding: 8px 24px;
        border-radius: 50px;
        margin-bottom: 24px;
    }

    .lucky-draw-title {
        font-size: clamp(1.8rem, 4vw, 3rem);
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .lucky-draw-title .ld-amount {
        color: var(--gold);
    }

    .lucky-draw-subtitle {
        font-size: 1.05rem;
        color: var(--gray-dark);
        max-width: 600px;
        margin: 0 auto 40px;
        line-height: 1.8;
    }

    .lucky-draw-highlight {
        color: var(--orange);
        font-weight: 700;
    }

    /* ========== PRODUCT CATEGORIES ========== */
    .products {
        background: var(--off-white);
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .product-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 36px 24px;
        text-align: center;
        transition: var(--transition);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .product-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 4px;
        background: var(--gradient-teal);
        transform: scaleX(0);
        transform-origin: left;
        transition: var(--transition);
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(10,107,88,0.12);
    }

    .product-card:hover::before { transform: scaleX(1); }

    .product-icon {
        width: 72px;
        height: 72px;
        border-radius: 18px;
        background: rgba(10,107,88,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: var(--teal);
        margin: 0 auto 20px;
        transition: var(--transition);
    }

    .product-card:hover .product-icon {
        background: var(--gradient-teal);
        color: var(--white);
        box-shadow: var(--shadow-teal);
    }

    .product-name {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 10px;
    }

    .product-bv {
        display: inline-block;
        background: rgba(10,107,88,0.08);
        color: var(--teal);
        font-size: 0.8rem;
        font-weight: 700;
        padding: 4px 14px;
        border-radius: 20px;
        margin-top: 8px;
    }

    /* ========== OPPORTUNITY TO EARN ========== */
    .earn-section {
        background: var(--off-white);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .earn-section::before {
        display: none;
    }

    .earn-section .section-title { color: var(--navy); }
    .earn-section .section-desc  { color: var(--gray); }

    .earn-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        max-width: 860px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .earn-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        background: var(--white);
        border: 1px solid var(--gray-light);
        border-radius: var(--radius-lg);
        padding: 24px 28px;
        transition: var(--transition);
    }

    .earn-item:hover {
        background: var(--white);
        border-color: rgba(10,107,88,0.20);
        transform: translateY(-3px);
        box-shadow: var(--shadow-sm);
    }

    .earn-check {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: linear-gradient(135deg, var(--orange), var(--gold));
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy-dark);
        font-size: 0.85rem;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .earn-text {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--gray-dark);
        line-height: 1.6;
    }

    .earn-text strong {
        color: var(--navy);
        display: block;
        font-size: 1.05rem;
        margin-bottom: 2px;
    }

    /* ========== LOGIN TABS ========== */
    .login-tabs {
        display: flex;
        gap: 8px;
        background: var(--off-white);
        border-radius: 50px;
        padding: 5px;
        margin-bottom: 28px;
    }

    .login-tab {
        flex: 1;
        padding: 10px 20px;
        border-radius: 50px;
        border: none;
        background: transparent;
        font-family: 'Inter', sans-serif;
        font-size: 0.88rem;
        font-weight: 600;
        color: var(--gray);
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .login-tab.active {
        background: var(--gradient-teal);
        color: var(--white);
        box-shadow: var(--shadow-teal);
    }

    .login-tab:hover:not(.active) {
        color: var(--teal);
        background: rgba(10,107,88,0.06);
    }

    /* ========== BTN ORANGE (CTA accent) ========== */
    .btn-orange {
        background: var(--gradient-orange);
        color: var(--white);
        box-shadow: var(--shadow-orange);
    }

    .btn-orange:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(245,130,31,0.45);
    }

    /* ========== RESPONSIVE — NEW SECTIONS ========== */
    @media (max-width: 1024px) {
        .products-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
        .products-grid { grid-template-columns: repeat(2, 1fr); }
        .earn-grid     { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
        .products-grid { grid-template-columns: 1fr; }
    }

    /* ========== STATS BAR ========== */
    .stats-bar {
        background: var(--navy);
        padding: 48px 0;
        border-top: 1px solid rgba(10,107,88,0.2);
        border-bottom: 1px solid rgba(10,107,88,0.2);
    }

    .stats-bar-grid {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        gap: 32px;
    }

    .stat-item {
        text-align: center;
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .stat-item .stat-number {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 800;
        color: var(--gold);
        line-height: 1;
    }

    .stat-suffix {
        font-size: clamp(1.5rem, 3vw, 2.2rem);
        font-weight: 800;
        color: var(--gold);
        line-height: 1;
    }

    .stat-label {
        font-size: 0.82rem;
        font-weight: 500;
        color: rgba(255,255,255,0.55);
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    .stat-sep {
        width: 1px;
        height: 60px;
        background: rgba(255,255,255,0.12);
    }

    @media (max-width: 640px) {
        .stat-sep { display: none; }
        .stats-bar-grid { gap: 24px; }
    }

    /* ========== LUCKY DRAW — ANIMATED WHEEL ========== */
    .lucky-draw-inner {
        position: relative;
    }

    .ld-animated-wheel {
        position: relative;
        width: 110px;
        height: 110px;
        margin: 0 auto 32px;
    }

    .ld-wheel-ring {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 3px solid transparent;
    }

    .ld-ring-outer {
        border-color: var(--gold);
        border-top-color: transparent;
        animation: spinCW 2s linear infinite;
    }

    .ld-ring-inner {
        inset: 12px;
        border-color: var(--orange);
        border-bottom-color: transparent;
        animation: spinCCW 1.5s linear infinite;
    }

    .ld-wheel-center {
        position: absolute;
        inset: 24px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--gold), var(--orange));
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.6rem;
        animation: pulseGlow 1.5s ease-in-out infinite;
        box-shadow: 0 0 20px rgba(245,197,24,0.5);
    }

    @keyframes spinCW  { to { transform: rotate(360deg); } }
    @keyframes spinCCW { to { transform: rotate(-360deg); } }
    @keyframes pulseGlow {
        0%,100% { transform: scale(1);    box-shadow: 0 0 20px rgba(245,197,24,0.4); }
        50%      { transform: scale(1.12); box-shadow: 0 0 35px rgba(245,197,24,0.8); }
    }

    /* Confetti dots */
    .ld-confetti {
        position: absolute;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        pointer-events: none;
        animation: confettiFall 3.5s ease-in-out infinite;
    }

    @keyframes confettiFall {
        0%   { transform: translateY(-20px) scale(1)  rotate(0deg);   opacity: 0.9; }
        60%  { opacity: 0.6; }
        100% { transform: translateY(80px)  scale(0.6) rotate(360deg); opacity: 0;   }
    }

    /* Lucky draw CTA pulse */
    .ld-cta-btn {
        animation: ctaPulse 2.5s ease-in-out infinite;
    }

    @keyframes ctaPulse {
        0%,100% { box-shadow: var(--shadow-orange); }
        50%      { box-shadow: 0 0 30px rgba(245,130,31,0.65), 0 0 60px rgba(245,197,24,0.3); }
    }

    /* Lucky draw stars twinkle */
    .lucky-draw-stars span {
        animation: twinkle 2s ease-in-out infinite;
    }

    .lucky-draw-stars span:nth-child(even) { animation-delay: 1s; }
    .lucky-draw-stars span:nth-child(3n)   { animation-delay: 0.5s; }

    @keyframes twinkle {
        0%,100% { opacity: 0.3; transform: scale(1); }
        50%      { opacity: 1;   transform: scale(1.4); }
    }

    /* ========== ABOUT — STAT CHIPS & IMAGE BADGE ========== */
    .about-stat-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 24px;
    }

    .about-stat-chip {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(10,107,88,0.08);
        border: 1px solid rgba(10,107,88,0.22);
        border-radius: 50px;
        padding: 8px 18px;
        font-size: 0.84rem;
        font-weight: 600;
        color: var(--teal);
        transition: var(--transition);
    }

    .about-stat-chip:hover {
        background: rgba(10,107,88,0.15);
        transform: translateY(-2px);
    }

    .about-image-wrap {
        position: relative;
    }

    .about-image-badge {
        position: absolute;
        bottom: -16px;
        right: -16px;
        background: var(--gradient-teal);
        color: #fff;
        padding: 12px 20px;
        border-radius: 12px;
        font-size: 0.85rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: var(--shadow-teal);
        animation: badgeFloat 3s ease-in-out infinite;
    }

    @keyframes badgeFloat {
        0%,100% { transform: translateY(0); }
        50%      { transform: translateY(-6px); }
    }

    @media (max-width: 600px) {
        .about-image-badge { right: 0; bottom: -20px; font-size:0.78rem; padding:10px 14px; }
    }

    /* ========== MISSION SECTION ========== */
    .mission {
        background: #ffffff;
        position: relative;
        overflow: hidden;
    }

    .mission .section-label::before,
    .mission .section-label::after {
        background: var(--gold);
    }

    /* Floating background stars */
    .mission-stars {
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

    .mission-stars span {
        position: absolute;
        color: var(--gold);
        opacity: 0.12;
        font-size: clamp(0.9rem, 1.5vw, 1.4rem);
        animation: starFloat 6s ease-in-out infinite;
    }

    .mission-stars span:nth-child(even)  { animation-delay: 3s; animation-duration: 8s; }
    .mission-stars span:nth-child(3n)    { animation-delay: 1.5s; opacity: 0.07; }

    @keyframes starFloat {
        0%,100% { transform: translateY(0) rotate(0deg);   opacity: 0.12; }
        50%      { transform: translateY(-22px) rotate(180deg); opacity: 0.20; }
    }

    /* Mission grid */
    .mission-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
    }

    /* Mission icon decoration */
    .mission-icon-wrap {
        position: relative;
        width: 80px;
        height: 80px;
        margin-bottom: 28px;
    }

    .mission-icon-ring {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 2px solid var(--gold);
        opacity: 0.4;
        animation: missionRing 3s ease-in-out infinite;
    }

    @keyframes missionRing {
        0%,100% { transform: scale(1);   opacity: 0.4; }
        50%      { transform: scale(1.2); opacity: 0.1; }
    }

    .mission-icon-center {
        position: absolute;
        inset: 10px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--teal), var(--teal-dark));
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.6rem;
        box-shadow: 0 0 20px rgba(10,107,88,0.4);
    }

    .mission-text {
        color: var(--gray-dark);
        font-size: 1.04rem;
        line-height: 1.9;
    }

    /* Mission pillars */
    .mission-pillars {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mission-pillar {
        background: var(--off-white);
        border-left: 3px solid var(--gold);
        border-radius: 0 14px 14px 0;
        padding: 20px 24px;
        display: flex;
        gap: 18px;
        align-items: flex-start;
        transition: var(--transition);
        backdrop-filter: none;
    }

    .mission-pillar:hover {
        background: rgba(10,107,88,0.05);
        transform: translateX(8px);
        border-left-color: var(--teal);
    }

    .mission-pillar-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--gold), var(--orange));
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.1rem;
        flex-shrink: 0;
        box-shadow: 0 4px 15px rgba(245,130,31,0.3);
        transition: var(--transition);
    }

    .mission-pillar:hover .mission-pillar-icon {
        transform: scale(1.1) rotate(-5deg);
    }

    .mission-pillar-title {
        color: var(--navy);
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .mission-pillar-desc {
        color: var(--gray-dark);
        font-size: 0.9rem;
        line-height: 1.65;
    }

    /* Responsive */
    @media (max-width: 900px) {
        .mission-grid { grid-template-columns: 1fr; gap: 48px; }
    }

    @media (max-width: 480px) {
        .mission-pillar { padding: 16px 18px; }
        .mission-icon-wrap { width: 60px; height: 60px; }
    }