
    /* ============================================================
       TOKENS — Logo colors only: Teal #3E888B + Orange #F37321
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
        --teal:       #3E888B;
        --teal-dk:    #2d6568;
        --teal-dkk:   #1a4547;
        --teal-pale:  #eaf4f4;
        --orange:     #F37321;
        --orange-dk:  #d4611a;
        --dark:       #0d1f1f;
        --white:      #ffffff;
        --gray:       #5a6e6e;
        --bg:         #f5fafa;
        --font:       'Plus Jakarta Sans', sans-serif;
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font); background: var(--white); color: var(--dark); overflow-x: hidden; }

    /* ============================================================
       TOP BAR
    ============================================================ */
    .top-bar {
        background: var(--teal-dkk);
        color: rgba(255,255,255,.72);
        font-size: .74rem;
        padding: 7px 5%;
        display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
    }
    .tb-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
    .tb-left span { display: flex; align-items: center; gap: 7px; }
    .tb-left i { color: var(--orange); font-size: .75rem; }
    .tb-left a { color: rgba(255,255,255,.72); text-decoration: none; transition: color .2s; }
    .tb-left a:hover { color: var(--orange); }
    .tb-right { display: flex; align-items: center; gap: 14px; }
    .tb-right a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .8rem; transition: color .2s; }
    .tb-right a:hover { color: var(--orange); }
    .tb-badge { background: var(--orange); color: #fff; font-size: .62rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; }
    @media(max-width:700px){ .top-bar { justify-content: center; } .tb-right { display: none; } }

    /* ============================================================
       NAV
    ============================================================ */
    nav {
        position: sticky; top: 0; z-index: 1000;
        background: var(--teal);
        display: flex; align-items: center; justify-content: space-between;
        padding: 0 5%; height: 160px;
        box-shadow: 0 2px 20px rgba(0,0,0,.22);
    }
    .nav-logo { display: flex; align-items: center; text-decoration: none; }
    .nav-logo img { height: 150px; width: auto; object-fit: contain; }

    .nav-links { list-style: none; display: flex; align-items: center; gap: 28px; }
    .nav-links a { text-decoration: none; color: rgba(255,255,255,.88); font-size: 1.3rem; font-weight: 500; transition: color .2s; white-space: nowrap; }
    .nav-links a:hover { color: var(--orange); }

    .has-dropdown { position: relative; }
    .has-dropdown > a { display: flex; align-items: center; gap: 5px; }
    .dropdown {
        position: absolute; top: calc(100% + 12px); left: 50%;
        background: #fff; border-radius: 12px;
        box-shadow: 0 16px 48px rgba(0,0,0,.14);
        min-width: 200px; padding: 8px 0;
        opacity: 0; visibility: hidden; pointer-events: none;
        transition: opacity .25s, transform .25s;
        transform: translateX(-50%) translateY(-8px);
    }
    .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
    .dropdown li { list-style: none; }
    .dropdown a { display: flex; align-items: center; gap: 10px; color: var(--teal-dkk) !important; font-size: .86rem; padding: 10px 18px; transition: background .2s; }
    .dropdown a:hover { background: var(--teal-pale); color: var(--orange) !important; }
    .dropdown a i { width: 16px; color: var(--orange); }

    .nav-cta { background: var(--orange); color: #fff !important; padding: 9px 20px; border-radius: 8px; font-weight: 600 !important; font-size: .83rem !important; transition: background .2s !important; }
    .nav-cta:hover { background: var(--orange-dk) !important; }

    .hamburger { display: none; background: none; border: none; cursor: pointer; color: #fff; font-size: 1.4rem; }
    .mobile-nav {
        display: none; position: fixed; inset: 0; background: var(--teal-dkk); z-index: 1100;
        flex-direction: column; align-items: center;
        padding: 80px 24px 40px;
        gap: 4px; opacity: 0; pointer-events: none; transition: opacity .3s;
        overflow-y: auto;
    }
    .mobile-nav.open { opacity: 1; pointer-events: auto; }
    .mobile-nav a {
        width: 100%; max-width: 320px;
        display: flex; align-items: center; gap: 12px;
        font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.85);
        text-decoration: none; padding: 12px 18px; border-radius: 12px;
        transition: background .2s, color .2s;
    }
    .mobile-nav a i { color: var(--orange); width: 18px; text-align: center; flex-shrink: 0; }
    .mobile-nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
    .mobile-nav .m-section-label {
        width: 100%; max-width: 320px;
        font-size: .65rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
        color: rgba(255,255,255,.3); padding: 14px 18px 6px;
    }
    .mobile-nav .m-close { position: fixed; top: 22px; right: 26px; font-size: 1.8rem; color: #fff; background: none; border: none; cursor: pointer; z-index: 10; }
    .mobile-nav .m-cta { background: var(--orange); color: #fff !important; padding: 14px 34px; border-radius: 50px; justify-content: center; font-size: 1rem; margin-top: 12px; }
    .mobile-nav .m-cta:hover { background: var(--orange-dk) !important; }

    /* Mobile Accordion */
    .m-accordion { width: 100%; max-width: 320px; }
    .m-acc-toggle {
        width: 100%; display: flex; align-items: center; gap: 12px; justify-content: space-between;
        background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
        border-radius: 12px; padding: 12px 18px; cursor: pointer;
        color: rgba(255,255,255,.9); font-size: 1rem; font-weight: 600;
        transition: background .2s;
    }
    .m-acc-toggle:hover { background: rgba(255,255,255,.13); }
    .m-acc-toggle .m-acc-left { display: flex; align-items: center; gap: 12px; }
    .m-acc-toggle .m-acc-left i { color: var(--orange); width: 18px; text-align: center; }
    .m-acc-toggle .m-acc-arrow { color: rgba(255,255,255,.5); font-size: .75rem; transition: transform .3s; }
    .m-accordion.open .m-acc-toggle { background: rgba(243,115,33,.15); border-color: rgba(243,115,33,.4); }
    .m-accordion.open .m-acc-arrow { transform: rotate(180deg); }
    .m-acc-body {
        overflow: hidden; max-height: 0; transition: max-height .35s ease;
        display: flex; flex-direction: column; gap: 4px; padding: 0 0 0 12px;
    }
    .m-accordion.open .m-acc-body { max-height: 500px; padding-top: 6px; }
    .m-acc-body a {
        font-size: .9rem !important; padding: 10px 14px !important;
        border-radius: 10px !important; border-left: 2px solid rgba(243,115,33,.3);
        color: rgba(255,255,255,.72) !important;
    }
    .m-acc-body a:hover { border-left-color: var(--orange); color: #fff !important; }

    /* ── POPUP ENQUIRY FORM ── */
    .popup-overlay {
        display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55);
        z-index: 2000; align-items: center; justify-content: center; padding: 20px;
    }
    .popup-overlay.active { display: flex; }
    .popup-box {
        background: #fff; border-radius: 24px; padding: 44px 40px 36px;
        width: 100%; max-width: 520px; position: relative;
        box-shadow: 0 32px 80px rgba(0,0,0,.25); animation: popIn .3s ease;
    }
    @keyframes popIn { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
    .popup-box h3 { font-size: 1.35rem; font-weight: 800; color: var(--teal-dkk); margin-bottom: 4px; }
    .popup-box > p { color: var(--gray); font-size: .86rem; margin-bottom: 24px; }
    .popup-close {
        position: absolute; top: 18px; right: 20px;
        background: none; border: none; font-size: 1.3rem; cursor: pointer;
        color: var(--gray); width: 34px; height: 34px; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        transition: background .2s, color .2s;
    }
    .popup-close:hover { background: #f5f5f5; color: var(--dark); }
    .pf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    @media(max-width:480px){ .pf-row { grid-template-columns: 1fr; } }
    .pf-group { margin-bottom: 12px; }
    .pf-group input, .pf-group select {
        width: 100%; padding: 11px 15px; border-radius: 10px;
        border: 1.5px solid #d8eaea; background: #f9fdfd;
        color: var(--dark); font-family: var(--font); font-size: .88rem;
        outline: none; transition: border-color .2s, box-shadow .2s;
    }
    .pf-group input:focus, .pf-group select:focus {
        border-color: var(--teal); box-shadow: 0 0 0 3px rgba(62,136,139,.1);
        background: #fff;
    }
    .pf-group input::placeholder { color: #aabebe; }
    .pf-group select option { color: var(--dark); }
    .pf-submit {
        width: 100%; padding: 13px; background: var(--teal); color: #fff;
        border: none; border-radius: 50px; font-family: var(--font);
        font-size: .95rem; font-weight: 700; cursor: pointer;
        transition: background .2s, transform .2s; margin-top: 6px;
        display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .pf-submit:hover { background: var(--teal-dk); transform: translateY(-2px); }
    .pf-success {
        text-align: center; padding: 20px 0; display: none;
    }
    .pf-success i { font-size: 2.8rem; color: #22c55e; margin-bottom: 14px; display: block; }
    .pf-success h4 { font-size: 1.1rem; color: var(--teal-dkk); font-weight: 700; margin-bottom: 6px; }
    .pf-success p { color: var(--gray); font-size: .86rem; }
    .popup-trigger { cursor: pointer; }

    /* ── WHATSAPP FLOAT ── */
    .whatsapp-float {
        position: fixed; left: 18px; bottom: 28px; z-index: 900;
        width: 56px; height: 56px; border-radius: 50%;
        background: #25D366; color: #fff;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.65rem; text-decoration: none;
        box-shadow: 0 6px 22px rgba(37,211,102,.45);
        transition: transform .2s, box-shadow .2s;
        animation: waPulse 2.5s infinite;
    }
    .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.6); }
    @keyframes waPulse {
        0%,100% { box-shadow: 0 6px 22px rgba(37,211,102,.45); }
        50% { box-shadow: 0 6px 28px rgba(37,211,102,.75), 0 0 0 10px rgba(37,211,102,.1); }
    }

    /* ============================================================
       MARQUEE TICKER
    ============================================================ */
    .marquee-strip { background: var(--orange); overflow: hidden; padding: 9px 0; white-space: nowrap; }
    .marquee-track { display: inline-flex; animation: mscroll 30s linear infinite; }
    .marquee-strip:hover .marquee-track { animation-play-state: paused; }
    .marquee-item { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 0 36px; }
    .marquee-item i { font-size: .55rem; opacity: .6; }
    @keyframes mscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ============================================================
       HERO SLIDER
    ============================================================ */
    .hero { position: relative; height: calc(100vh - 112px); min-height: 560px; overflow: hidden; background: #040e0e; }
    .slide {
        position: absolute; inset: 0;
        background-size: cover; background-position: center;
        display: flex; align-items: center;
        opacity: 0; visibility: hidden;
        transition: opacity 1s ease, transform 1.5s ease;
        transform: scale(1.06);
    }
    .slide.active { opacity: 1; visibility: visible; transform: scale(1); z-index: 2; }
    .slide::before {
        content: ''; position: absolute; inset: 0;
        background: linear-gradient(110deg, rgba(10,30,30,.94) 0%, rgba(14,50,50,.75) 50%, rgba(0,0,0,.28) 100%);
    }
    .slide::after {
        content: ''; position: absolute; inset: 0;
        background: radial-gradient(ellipse at 82% 78%, rgba(243,115,33,.14) 0%, transparent 55%);
        pointer-events: none;
    }
    .slide-body { position: relative; z-index: 3; max-width: 1200px; width: 100%; padding: 0 6%; }
    .slide-body > * { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
    .slide.active .slide-tag  { opacity: 1; transform: translateY(0); transition-delay: .18s; }
    .slide.active h1          { opacity: 1; transform: translateY(0); transition-delay: .34s; }
    .slide.active .slide-desc { opacity: 1; transform: translateY(0); transition-delay: .50s; }
    .slide.active .slide-btns { opacity: 1; transform: translateY(0); transition-delay: .64s; }

    .slide-tag { display: inline-flex; align-items: center; gap: 9px; padding: 6px 16px 6px 12px; background: rgba(243,115,33,.12); border: 1px solid rgba(243,115,33,.35); border-radius: 100px; margin-bottom: 20px; }
    .tag-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; animation: sonar 2s ease-in-out infinite; }
    @keyframes sonar { 0%,100%{ box-shadow: 0 0 0 0 rgba(243,115,33,0); } 50%{ box-shadow: 0 0 0 8px rgba(243,115,33,0); } 0%{ box-shadow: 0 0 0 0 rgba(243,115,33,.7); } }
    .tag-text { font-size: .68rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #ffba80; }

    .slide-body h1 { font-size: clamp(2rem, 3.8vw, 3.6rem); font-weight: 800; line-height: 1.12; color: #fff; letter-spacing: -.6px; margin-bottom: 18px; max-width: 680px; }
    .slide-body h1 em { font-style: normal; font-weight: 800; background: linear-gradient(90deg, #f37321 10%, #ffb060 90%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .slide-desc { font-size: .92rem; font-weight: 300; color: rgba(255,255,255,.62); line-height: 1.9; max-width: 480px; margin-bottom: 36px; }

    .slide-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
    .btn-primary { display: inline-flex; align-items: center; gap: 9px; background: var(--orange); color: #fff; padding: 13px 28px; border-radius: 9px; font-weight: 700; font-size: .86rem; text-decoration: none; box-shadow: 0 8px 24px rgba(243,115,33,.38); transition: background .25s, transform .2s; }
    .btn-primary:hover { background: var(--orange-dk); transform: translateY(-2px); }
    .btn-ghost { display: inline-flex; align-items: center; gap: 9px; border: 1.5px solid rgba(255,255,255,.28); color: rgba(255,255,255,.84); padding: 13px 28px; border-radius: 9px; font-weight: 600; font-size: .86rem; text-decoration: none; backdrop-filter: blur(8px); transition: border-color .25s, background .25s; }
    .btn-ghost:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.1); color: #fff; }

    .hero-dots { position: absolute; bottom: 34px; left: 6%; display: flex; gap: 10px; z-index: 20; }
    .dot { width: 8px; height: 8px; border-radius: 8px; background: rgba(255,255,255,.25); cursor: pointer; transition: background .35s, width .35s; }
    .dot.active { background: var(--orange); width: 28px; }
    .hero-progress { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--orange); width: 0; z-index: 20; }
    .hero-counter { position: absolute; top: 24px; right: 6%; z-index: 20; font-size: .74rem; font-weight: 600; letter-spacing: 1px; color: rgba(255,255,255,.32); }
    .hero-counter b { color: rgba(255,255,255,.82); }
    .hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #fff; font-size: .88rem; display: flex; align-items: center; justify-content: center; cursor: pointer; backdrop-filter: blur(8px); transition: background .25s, transform .25s; }
    .hero-arrow:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-50%) scale(1.08); }
    .hero-arrow.prev { left: 2%; }
    .hero-arrow.next { right: 2%; }
    @media(max-width:660px){ .hero-arrow { display: none; } .slide-body { text-align: center; padding: 0 5%; } .slide-body h1 { font-size: clamp(1.6rem, 6.5vw, 2rem); max-width: 100%; } .slide-desc { max-width: 100%; } .slide-btns { justify-content: center; } .hero-dots { left: 50%; transform: translateX(-50%); } .hero-counter { display: none; } }

    /* ============================================================
       HERO STATS STRIP
    ============================================================ */
    .hero-stats-strip { background: var(--teal); }
    .hss-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); border-top: 3px solid var(--orange); }
    .hss-item { display: flex; align-items: center; gap: 20px; padding: 28px 32px; border-right: 1px solid rgba(255,255,255,.12); transition: background .3s; cursor: default; }
    .hss-item:last-child { border-right: none; }
    .hss-item:hover { background: rgba(255,255,255,.06); }
    .hss-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.4rem; flex-shrink: 0; }
    .hss-num { font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; }
    .hss-label { font-size: .78rem; color: rgba(255,255,255,.62); margin-top: 4px; }
    @media(max-width:680px){ .hss-inner { grid-template-columns: 1fr; } .hss-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); } }

    /* ============================================================
       ABOUT — Full-bleed split: dark image left, clean text right
    ============================================================ */
    #about {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 700px;
        overflow: hidden;
    }

    /* LEFT: full-bleed image with dark overlay + floating stats */
    .about-img-panel {
        position: relative;
        overflow: hidden;
        min-height: 700px;
    }
    .about-img-panel img {
        width: 100%; height: 100%;
        object-fit: cover; display: block;
        transition: transform 7s ease;
    }
    #about:hover .about-img-panel img { transform: scale(1.05); }
    .about-img-panel::before {
        content: '';
        position: absolute; inset: 0; z-index: 1;
        background: linear-gradient(175deg, rgba(13,31,31,.4) 0%, rgba(26,69,71,.88) 100%);
    }
    /* orange accent line on right edge */
    .about-img-panel::after {
        content: '';
        position: absolute; top: 0; right: 0; bottom: 0; width: 4px;
        background: linear-gradient(to bottom, var(--orange), rgba(243,115,33,.1));
        z-index: 3;
    }
    .about-img-content {
        position: absolute; inset: 0; z-index: 2;
        display: flex; flex-direction: column;
        justify-content: flex-end;
        padding: 52px 48px;
    }
    .about-img-headline {
        font-size: clamp(1.7rem, 2.2vw, 2.4rem);
        font-weight: 800; color: #fff; line-height: 1.2;
        margin-bottom: 10px;
    }
    .about-img-headline span { color: var(--orange); }
    .about-img-desc {
        font-size: .88rem; color: rgba(255,255,255,.55);
        line-height: 1.75; margin-bottom: 36px; max-width: 360px;
    }
    .about-stat-grid {
        display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
    }
    .about-stat-pill {
        background: rgba(255,255,255,.07);
        border: 1px solid rgba(255,255,255,.13);
        border-radius: 14px; padding: 16px 12px; text-align: center;
        backdrop-filter: blur(10px);
        transition: background .3s, border-color .3s, transform .3s;
        cursor: default;
    }
    .about-stat-pill:hover {
        background: rgba(243,115,33,.15);
        border-color: rgba(243,115,33,.4);
        transform: translateY(-3px);
    }
    .about-stat-pill strong {
        display: block; font-size: 1.8rem; font-weight: 800;
        color: var(--orange); line-height: 1; margin-bottom: 4px;
    }
    .about-stat-pill span {
        font-size: .68rem; color: rgba(255,255,255,.55);
        letter-spacing: .5px; line-height: 1.3; display: block;
    }

    /* RIGHT: padded text column */
    .about-text-panel {
        background: #fff;
        padding: 72px 64px;
        display: flex; flex-direction: column; justify-content: center;
        position: relative; overflow: hidden;
    }
    .about-text-panel::before {
        content: 'JCORE';
        position: absolute; bottom: -20px; right: -10px;
        font-size: 9rem; font-weight: 900;
        color: rgba(62,136,139,.04);
        pointer-events: none; line-height: 1; letter-spacing: -4px;
        white-space: nowrap;
    }

    .eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--orange); font-size: .72rem; letter-spacing: 3px; font-weight: 700; text-transform: uppercase; margin-bottom: 16px; }
    .eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--orange); flex-shrink: 0; }

    .about-text-panel h2 {
        font-size: clamp(1.7rem, 2.4vw, 2.5rem);
        line-height: 1.12; color: var(--teal-dkk);
        margin-bottom: 16px; font-weight: 800;
    }
    .about-text-panel h2 span { color: var(--orange); }
    .about-text-panel > p {
        color: var(--gray); line-height: 1.85;
        margin-bottom: 26px; font-size: .92rem;
    }

    /* checklist — hover slide effect */
    .about-checklist { list-style: none; margin-bottom: 26px; display: flex; flex-direction: column; gap: 9px; }
    .about-checklist li {
        display: flex; align-items: center; gap: 12px;
        font-size: .88rem; color: var(--dark);
        padding: 10px 16px; border-radius: 10px;
        background: var(--bg); border-left: 3px solid var(--teal);
        transition: border-color .22s, background .22s, transform .22s;
        cursor: default;
    }
    .about-checklist li:hover { border-color: var(--orange); background: #fff5ed; transform: translateX(5px); }
    .about-checklist li i { color: var(--teal); font-size: .86rem; flex-shrink: 0; transition: color .2s; }
    .about-checklist li:hover i { color: var(--orange); }

    /* quote */
    .about-quote {
        background: linear-gradient(135deg, var(--teal-dkk), var(--teal-dk));
        border-radius: 14px; padding: 18px 22px 18px 46px;
        margin-bottom: 26px; font-style: italic;
        font-size: .87rem; color: rgba(255,255,255,.78); line-height: 1.75;
        position: relative; overflow: hidden;
    }
    .about-quote::before {
        content: '"'; position: absolute; top: -6px; left: 12px;
        font-size: 4.5rem; color: rgba(243,115,33,.22);
        font-style: normal; font-weight: 800; line-height: 1;
    }

    /* 2×2 feature mini-cards */
    .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px; }
    .af-card {
        background: #fff; border-radius: 12px; padding: 14px 13px;
        display: flex; align-items: center; gap: 11px;
        border: 1px solid #e4eeee;
        box-shadow: 0 2px 10px rgba(62,136,139,.05);
        transition: transform .22s, box-shadow .22s, border-color .22s;
    }
    .af-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(62,136,139,.12); border-color: var(--teal); }
    .af-icon {
        width: 36px; height: 36px; flex-shrink: 0;
        background: linear-gradient(135deg, var(--teal), var(--teal-dk));
        border-radius: 9px; display: flex; align-items: center; justify-content: center;
        font-size: .88rem;
    }
    .af-icon i { color: #fff !important; }
    .af-card h5 { font-weight: 700; font-size: .81rem; color: var(--teal-dkk); margin-bottom: 2px; }
    .af-card p { font-size: .72rem; color: var(--gray); line-height: 1.4; margin: 0; }

    .btn-teal {
        display: inline-flex; align-items: center; gap: 10px;
        background: var(--teal); color: #fff; padding: 13px 28px;
        border-radius: 50px; font-weight: 700; font-size: .88rem;
        text-decoration: none; align-self: flex-start;
        box-shadow: 0 8px 20px rgba(62,136,139,.3);
        transition: background .2s, transform .2s, box-shadow .2s;
    }
    .btn-teal:hover { background: var(--teal-dk); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(62,136,139,.38); }
    .btn-teal i { transition: transform .2s; }
    .btn-teal:hover i { transform: translateX(4px); }

    @media(max-width:860px){
        #about { grid-template-columns: 1fr; }
        .about-img-panel { min-height: 420px; }
        .about-img-panel::after { display: none; }
        .about-text-panel { padding: 52px 28px; }
    }

    /* ============================================================
       HIRE-TRAIN-DEPLOY — Process timeline, full-bleed dark bg
    ============================================================ */
    .htd-section {
        padding: 0;
        background: var(--teal-dkk);
        overflow: hidden;
        position: relative;
    }
    /* subtle dot grid */
    .htd-section::before {
        content: '';
        position: absolute; inset: 0;
        background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
        background-size: 28px 28px;
        pointer-events: none;
    }
    /* orange glow bottom right */
    .htd-section::after {
        content: '';
        position: absolute; bottom: -80px; right: -80px;
        width: 400px; height: 400px; border-radius: 50%;
        background: radial-gradient(circle, rgba(243,115,33,.08) 0%, transparent 70%);
        pointer-events: none;
    }
    .htd-inner {
        max-width: 1240px; margin: 0 auto;
        position: relative; z-index: 2;
        display: grid; grid-template-columns: 1fr 1fr;
    }

    /* LEFT: dark panel — headline + 3-step vertical timeline */
    .htd-left {
        padding: 90px 64px 90px 5%;
        display: flex; flex-direction: column; justify-content: center;
        border-right: 1px solid rgba(255,255,255,.07);
    }
    .htd-left .eyebrow { color: var(--orange); }
    .htd-left h2 {
        font-size: clamp(1.8rem, 2.6vw, 2.8rem);
        color: #fff; font-weight: 800; line-height: 1.12;
        margin-bottom: 12px;
    }
    .htd-left h2 span { color: var(--orange); }
    .htd-left > p {
        color: rgba(255,255,255,.5); font-size: .9rem;
        line-height: 1.8; margin-bottom: 44px;
    }

    /* timeline */
    .htd-timeline { display: flex; flex-direction: column; position: relative; }
    .htd-timeline::before {
        content: '';
        position: absolute; left: 22px; top: 0; bottom: 0; width: 2px;
        background: linear-gradient(to bottom, var(--orange), rgba(243,115,33,.1));
    }
    .htd-step {
        display: flex; align-items: flex-start; gap: 20px;
        padding: 0 0 36px 0; position: relative;
    }
    .htd-step:last-child { padding-bottom: 0; }
    .htd-step-num {
        width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
        background: var(--orange);
        display: flex; align-items: center; justify-content: center;
        font-size: .95rem; font-weight: 800; color: #fff;
        box-shadow: 0 0 0 4px rgba(243,115,33,.2);
        position: relative; z-index: 1;
        transition: transform .3s, box-shadow .3s;
    }
    .htd-step:hover .htd-step-num { transform: scale(1.12); box-shadow: 0 0 0 7px rgba(243,115,33,.15); }
    .htd-step-body { padding-top: 8px; }
    .htd-step-body h4 { font-size: 1rem; color: #fff; font-weight: 700; margin-bottom: 6px; }
    .htd-step-body p { font-size: .84rem; color: rgba(255,255,255,.48); line-height: 1.65; margin: 0; }

    /* RIGHT: lighter panel — 3 accent cards stacked */
    .htd-right {
        padding: 90px 5% 90px 64px;
        background: rgba(255,255,255,.025);
        display: flex; flex-direction: column; justify-content: center; gap: 20px;
    }
    .htd-card {
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.09);
        border-radius: 20px; padding: 28px 30px;
        display: flex; align-items: flex-start; gap: 20px;
        position: relative; overflow: hidden;
        transition: background .3s, border-color .3s, transform .3s;
    }
    .htd-card::before {
        content: '';
        position: absolute; inset: 0; border-radius: 20px;
        background: linear-gradient(135deg, rgba(243,115,33,.06) 0%, transparent 55%);
        opacity: 0; transition: opacity .35s;
    }
    .htd-card:hover { background: rgba(255,255,255,.08); border-color: rgba(243,115,33,.35); transform: translateX(6px); }
    .htd-card:hover::before { opacity: 1; }
    .htd-card-icon {
        width: 54px; height: 54px; border-radius: 15px; flex-shrink: 0;
        background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
        display: flex; align-items: center; justify-content: center;
        font-size: 1.4rem; color: #fff;
        box-shadow: 0 8px 22px rgba(243,115,33,.35);
        transition: transform .3s;
    }
    .htd-card:hover .htd-card-icon { transform: rotate(-6deg) scale(1.07); }
    .htd-card-icon i { color: #fff !important; }
    .htd-card-body h3 { font-size: 1rem; color: #fff; font-weight: 700; margin-bottom: 6px; }
    .htd-card-body p { font-size: .83rem; color: rgba(255,255,255,.5); line-height: 1.6; margin: 0; }
    /* coloured tag top-right */
    .htd-card-tag {
        position: absolute; top: 16px; right: 16px;
        font-size: .64rem; font-weight: 700; letter-spacing: 1.5px;
        color: var(--orange); text-transform: uppercase;
        background: rgba(243,115,33,.1); border: 1px solid rgba(243,115,33,.2);
        padding: 3px 10px; border-radius: 20px;
    }

    @media(max-width:860px){
        .htd-inner { grid-template-columns: 1fr; }
        .htd-left { padding: 60px 28px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
        .htd-right { padding: 48px 28px; }
    }

    /* ============================================================
       PROGRAMS
    ============================================================ */
    #programs { padding: 100px 5%; background: var(--teal-dkk); }
    .section-head { max-width: 1180px; margin: 0 auto 56px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
    .section-head .left .eyebrow { color: var(--orange); }
    .section-head .left h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: #fff; font-weight: 700; }
    .section-head .left h2 span { color: var(--orange); }
    .section-head > p { color: rgba(255,255,255,.45); font-size: .88rem; max-width: 360px; line-height: 1.7; text-align: right; }
    .programs-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .prog-card {
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 16px;
        padding: 32px 26px 48px;
        position: relative; overflow: hidden;
        transition: background .3s, transform .3s, border-color .3s, box-shadow .3s;
        cursor: pointer;
    }
    .prog-card::before {
        content: '';
        position: absolute; inset: 0; border-radius: 16px;
        background: linear-gradient(135deg, rgba(243,115,33,.08) 0%, transparent 60%);
        opacity: 0; transition: opacity .4s;
    }
    .prog-card:hover { background: rgba(255,255,255,.09); transform: translateY(-6px); border-color: rgba(243,115,33,.4); box-shadow: 0 20px 48px rgba(0,0,0,.3), 0 0 0 1px rgba(243,115,33,.15); }
    .prog-card:hover::before { opacity: 1; }
    .prog-num { font-size: .62rem; font-weight: 700; letter-spacing: 2.5px; color: rgba(255,255,255,.18); margin-bottom: 20px; display: block; }
    .prog-icon-wrap {
        width: 52px; height: 52px; border-radius: 13px;
        background: rgba(243,115,33,.15);
        border: 1px solid rgba(243,115,33,.25);
        display: flex; align-items: center; justify-content: center;
        margin-bottom: 20px;
        transition: background .3s, border-color .3s;
    }
    .prog-card:hover .prog-icon-wrap { background: rgba(243,115,33,.28); border-color: rgba(243,115,33,.5); }
    .prog-icon { font-size: 1.6rem; color: var(--orange); display: block; transition: transform .3s; }
    .prog-card:hover .prog-icon { transform: scale(1.12); }
    .prog-card h3 { font-size: .95rem; color: #fff; margin-bottom: 10px; font-weight: 700; line-height: 1.35; }
    .prog-card p { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 16px; }
    .prog-link { display: inline-flex; align-items: center; gap: 6px; font-size: .75rem; font-weight: 700; color: var(--orange); letter-spacing: .5px; text-decoration: none; opacity: 0; transform: translateY(4px); transition: opacity .3s, transform .3s; }
    .prog-card:hover .prog-link { opacity: 1; transform: translateY(0); }
    .prog-link i { font-size: .65rem; }
    @media(max-width:960px){ .programs-grid { grid-template-columns: repeat(2, 1fr); } }
    @media(max-width:540px){ .programs-grid { grid-template-columns: 1fr; } }

    /* ============================================================
       WHY CHOOSE
    ============================================================ */
    #why { padding: 100px 5%; background: var(--bg); }
    .section-center { text-align: center; max-width: 1180px; margin: 0 auto; }
    .section-center .eyebrow { color: var(--orange); }
    .section-center h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--teal-dkk); font-weight: 700; margin-bottom: 14px; }
    .section-center > p { color: var(--gray); max-width: 620px; margin: 0 auto 56px; line-height: 1.75; font-style: italic; font-size: .92rem; }
    .why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
    .why-card { background: #fff; border-radius: 16px; padding: 38px 28px; text-align: center; border: 1px solid #e4eeee; box-shadow: 0 4px 18px rgba(62,136,139,.06); transition: transform .3s, box-shadow .3s, border-color .3s; opacity: 0; transform: scale(.92); }
    .why-card.visible { opacity: 1; transform: scale(1); }
    .why-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(62,136,139,.13); border-color: var(--orange); }
    .why-icon-wrap { width: 70px; height: 70px; border-radius: 50%; border: 2px solid var(--orange); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.5rem; margin: 0 auto 22px; transition: background .3s, color .3s; }
    .why-card:hover .why-icon-wrap { background: var(--orange); color: #fff; }
    .why-card h3 { font-size: 1.02rem; color: var(--teal-dkk); margin-bottom: 10px; font-weight: 700; }
    .why-card p { color: var(--gray); font-size: .86rem; line-height: 1.65; }

    /* ============================================================
       HIRE-TRAIN-DEPLOY
    ============================================================ */
    .htd-section { padding: 100px 5%; background: var(--white); }
    .htd-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
    .htd-left { display: flex; flex-direction: column; }
    .htd-left h2 { font-size: clamp(1.8rem, 2.8vw, 2.6rem); color: var(--teal-dkk); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
    .htd-left h2 span { color: var(--orange); }
    .htd-left > p { color: var(--gray); line-height: 1.8; font-size: .93rem; margin-bottom: 36px; }
    .htd-steps { display: flex; flex-direction: column; gap: 0; flex: 1; }
    .htd-step { display: flex; align-items: flex-start; gap: 18px; padding: 20px 0; border-bottom: 1px solid #e8f0f0; }
    .htd-step:last-child { border-bottom: none; }
    .htd-step-icon { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 6px 14px rgba(62,136,139,.22); }
    .htd-step-icon i { color: #fff !important; }
    .htd-step h4 { font-size: .97rem; color: var(--teal-dkk); font-weight: 700; margin-bottom: 4px; }
    .htd-step p { font-size: .84rem; color: var(--gray); line-height: 1.55; margin: 0; }
    .htd-right { display: flex; flex-direction: column; gap: 16px; justify-content: stretch; }
    .htd-card { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dk) 100%); border-radius: 18px; padding: 32px; display: flex; align-items: center; gap: 20px; transition: transform .3s, box-shadow .3s; box-shadow: 0 8px 26px rgba(62,136,139,.16); flex: 1; }
    .htd-card:hover { transform: translateX(8px); box-shadow: 0 16px 40px rgba(62,136,139,.24); }
    .htd-card-icon { width: 60px; height: 60px; border-radius: 14px; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; box-shadow: 0 8px 20px rgba(243,115,33,.32); }
    .htd-card-icon i { color: #fff !important; }
    .htd-card h3 { font-size: 1rem; color: #fff; font-weight: 700; margin-bottom: 5px; }
    .htd-card p { font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.5; margin: 0; }
    @media(max-width:820px){ .htd-inner { grid-template-columns: 1fr; gap: 48px; align-items: start; } }

    /* ============================================================
       SERVICES — full redesign with tab switcher
    ============================================================ */
    #services {
        padding: 110px 5%; background: var(--teal-dkk);
        position: relative; overflow: hidden;
    }
    /* animated mesh background */
    #services::before {
        content: '';
        position: absolute; inset: 0;
        background-image:
            radial-gradient(ellipse at 15% 50%, rgba(243,115,33,.09) 0%, transparent 55%),
            radial-gradient(ellipse at 85% 20%, rgba(62,136,139,.18) 0%, transparent 50%),
            radial-gradient(ellipse at 60% 90%, rgba(243,115,33,.05) 0%, transparent 40%);
        pointer-events: none;
    }
    /* grid dot pattern */
    #services::after {
        content: '';
        position: absolute; inset: 0;
        background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
        background-size: 32px 32px;
        pointer-events: none;
    }

    .svc-wrapper { max-width: 1180px; margin: 0 auto; position: relative; z-index: 2; }

    /* header */
    .svc-header { text-align: center; margin-bottom: 56px; }
    .svc-header .eyebrow { color: var(--orange); justify-content: center; margin-bottom: 16px; }
    .svc-header h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); color: #fff; font-weight: 800; margin-bottom: 14px; }
    .svc-header h2 span { color: var(--orange); }
    .svc-header p { color: rgba(255,255,255,.5); font-size: .92rem; max-width: 520px; margin: 0 auto; line-height: 1.75; }

    /* tab pills */
    .svc-tabs {
        display: flex; justify-content: center; gap: 12px;
        margin-bottom: 48px; flex-wrap: wrap;
    }
    .svc-tab {
        display: flex; align-items: center; gap: 9px;
        padding: 10px 22px; border-radius: 50px;
        border: 1.5px solid rgba(255,255,255,.15);
        background: transparent; color: rgba(255,255,255,.55);
        font-size: .82rem; font-weight: 600; cursor: pointer;
        transition: all .25s; font-family: var(--font);
    }
    .svc-tab i { font-size: .78rem; }
    .svc-tab:hover { border-color: rgba(255,255,255,.4); color: rgba(255,255,255,.85); }
    .svc-tab.active { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: 0 8px 24px rgba(243,115,33,.4); }

    /* panels */
    .svc-panel { display: none; }
    .svc-panel.active { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; animation: panelIn .45s ease; }
    @keyframes panelIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

    /* left: big feature card */
    .svc-feat-card {
        background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 100%);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 24px; padding: 48px 44px;
        position: relative; overflow: hidden;
    }
    .svc-feat-card::before {
        content: '';
        position: absolute; top: 0; left: 0; right: 0; height: 3px;
        background: linear-gradient(90deg, var(--orange), rgba(243,115,33,.3));
        border-radius: 24px 24px 0 0;
    }
    .svc-feat-icon {
        width: 80px; height: 80px; border-radius: 20px;
        background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
        display: flex; align-items: center; justify-content: center;
        font-size: 2.2rem; color: #fff; margin-bottom: 28px;
        box-shadow: 0 16px 36px rgba(243,115,33,.38);
    }
    .svc-feat-icon i { color: #fff !important; }
    .svc-feat-card h3 { font-size: 1.5rem; color: #fff; font-weight: 800; margin-bottom: 14px; }
    .svc-feat-card > p { color: rgba(255,255,255,.65); font-size: .92rem; line-height: 1.8; margin-bottom: 28px; }
    .svc-feat-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .svc-feat-list li {
        display: flex; align-items: center; gap: 12px;
        font-size: .88rem; color: rgba(255,255,255,.75);
        background: rgba(255,255,255,.05); border-radius: 10px; padding: 12px 16px;
        border: 1px solid rgba(255,255,255,.06);
        transition: background .2s, border-color .2s, transform .2s;
    }
    .svc-feat-list li:hover { background: rgba(243,115,33,.1); border-color: rgba(243,115,33,.25); transform: translateX(4px); }
    .svc-feat-list li i { color: var(--orange); font-size: .8rem; flex-shrink: 0; }
    .svc-feat-cta {
        display: inline-flex; align-items: center; gap: 9px;
        background: var(--orange); color: #fff;
        padding: 13px 28px; border-radius: 50px;
        font-weight: 700; font-size: .86rem; text-decoration: none;
        margin-top: 28px;
        box-shadow: 0 8px 22px rgba(243,115,33,.36);
        transition: background .2s, transform .2s;
    }
    .svc-feat-cta:hover { background: var(--orange-dk); transform: translateY(-2px); }

    /* right: stat + mini cards */
    .svc-side { display: flex; flex-direction: column; gap: 16px; }
    .svc-stat-card {
        background: var(--orange);
        border-radius: 20px; padding: 28px 30px;
        display: flex; align-items: center; gap: 20px;
        box-shadow: 0 12px 32px rgba(243,115,33,.35);
    }
    .svc-stat-num { font-size: 3rem; font-weight: 800; color: #fff; line-height: 1; }
    .svc-stat-label { font-size: .82rem; color: rgba(255,255,255,.85); line-height: 1.4; }
    .svc-mini-card {
        background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
        border-radius: 16px; padding: 22px 24px;
        display: flex; align-items: flex-start; gap: 16px;
        transition: background .3s, border-color .3s, transform .3s;
    }
    .svc-mini-card:hover { background: rgba(255,255,255,.1); border-color: rgba(243,115,33,.3); transform: translateX(-4px); }
    .svc-mini-icon {
        width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
        background: rgba(243,115,33,.15); border: 1px solid rgba(243,115,33,.25);
        display: flex; align-items: center; justify-content: center;
        color: var(--orange); font-size: 1.1rem;
        transition: background .3s;
    }
    .svc-mini-card:hover .svc-mini-icon { background: var(--orange); color: #fff; }
    .svc-mini-icon i { transition: color .3s; }
    .svc-mini-card:hover .svc-mini-icon i { color: #fff !important; }
    .svc-mini-card h4 { font-size: .9rem; color: #fff; font-weight: 700; margin-bottom: 4px; }
    .svc-mini-card p { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.5; margin: 0; }

    @media(max-width:860px){ .svc-panel.active { grid-template-columns: 1fr; } }

    /* ============================================================
       QUOTE BAND
    ============================================================ */
    .quote-band { padding: 70px 5%; background: var(--teal-pale); text-align: center; border-top: 3px solid var(--teal); border-bottom: 3px solid var(--teal); }
    .quote-band blockquote { max-width: 800px; margin: 0 auto; font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; color: var(--teal-dkk); line-height: 1.5; font-style: italic; }
    .quote-band blockquote span { color: var(--orange); }
    .quote-band .qb-sub { margin-top: 20px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .qb-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--teal); color: #fff; padding: 12px 26px; border-radius: 9px; font-weight: 600; font-size: .86rem; text-decoration: none; transition: background .2s, transform .2s; }
    .qb-btn:hover { background: var(--teal-dk); transform: translateY(-2px); }

    /* ============================================================
       STATS
    ============================================================ */
    #stats { padding: 80px 5%; background: #fff; }
    .stats-bar { max-width: 1100px; margin: 0 auto; background: #fff; border-radius: 20px; padding: 50px 40px; box-shadow: 0 16px 56px rgba(62,136,139,.1); border-bottom: 4px solid var(--orange); display: grid; grid-template-columns: repeat(4,1fr); }
    .stat-item { text-align: center; padding: 0 20px; border-right: 1px solid #dff0f0; }
    .stat-item:last-child { border-right: none; }
    .stat-top { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 8px; }
    .stat-num { font-size: 2.7rem; font-weight: 800; color: var(--orange); }
    .stat-unit { font-size: 1.9rem; font-weight: 700; color: var(--orange); }
    .stat-label { font-size: .95rem; font-weight: 600; color: var(--teal); margin-left: 4px; }
    .stat-sub { color: var(--gray); font-size: .84rem; }
    .stat-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); margin-right: 6px; display: inline-block; box-shadow: 0 0 8px rgba(243,115,33,.5); }
    @media(max-width:700px){ .stats-bar { grid-template-columns: 1fr 1fr; } .stat-item { border-right: none; padding: 22px 0; border-bottom: 1px solid #dff0f0; } .stat-item:nth-child(odd){ border-right: 1px solid #dff0f0; } }

    /* ============================================================
       TESTIMONIALS
    ============================================================ */
    #testimonials { padding: 100px 5%; background: var(--bg); }
    .test-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: center; }
    .test-rating { text-align: center; }
    .test-rating h2 { font-size: 1.9rem; color: var(--teal-dkk); letter-spacing: 2px; margin-bottom: 10px; font-weight: 800; }
    .stars { color: var(--orange); font-size: 1.4rem; margin-bottom: 10px; }
    .test-rating p { color: var(--gray); font-size: .88rem; margin-bottom: 16px; }
    .g-logo { font-size: 1.5rem; font-weight: 700; display: flex; justify-content: center; gap: 1px; }
    .g-b { color: #4285F4; } .g-r { color: #EA4335; } .g-y { color: #FBBC05; } .g-g { color: #34A853; }
    .test-slider { position: relative; min-height: 200px; }
    .review-card { display: none; background: #fff; border-radius: 18px; padding: 32px; border: 1px solid #e4eeee; box-shadow: 0 8px 28px rgba(62,136,139,.07); }
    .review-card.active { display: block; animation: fadeSlide .4s ease; }
    @keyframes fadeSlide { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
    .rv-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
    .rv-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
    .rv-name { font-weight: 700; font-size: .9rem; color: var(--teal-dkk); }
    .rv-date { font-size: .75rem; color: var(--gray); }
    .rv-stars { color: var(--orange); font-size: .85rem; margin-bottom: 12px; }
    .verified { color: #1e88e5 !important; margin-left: 4px; }
    .review-card p { color: var(--gray); font-size: .88rem; line-height: 1.7; }
    .test-nav { display: flex; gap: 10px; margin-top: 20px; }
    .test-nav button { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--teal); background: transparent; color: var(--teal); cursor: pointer; font-size: .88rem; transition: background .2s, color .2s; }
    .test-nav button:hover { background: var(--teal); color: #fff; }
    @media(max-width:700px){ .test-inner { grid-template-columns: 1fr; } }

    /* ============================================================
       CTA BAND
    ============================================================ */
    .cta-band { padding: 80px 5%; background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%); position: relative; overflow: hidden; text-align: center; }
    .cta-band::before { content: ''; position: absolute; top: -100px; left: -100px; width: 380px; height: 380px; border-radius: 50%; background: rgba(255,255,255,.07); pointer-events: none; }
    .cta-band::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.05); pointer-events: none; }
    .cta-band-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
    .cta-band h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); color: #fff; font-weight: 800; margin-bottom: 14px; }
    .cta-band p { color: rgba(255,255,255,.82); font-size: .93rem; line-height: 1.7; margin-bottom: 34px; }
    .cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .btn-white { display: inline-flex; align-items: center; gap: 9px; background: #fff; color: var(--orange); padding: 13px 30px; border-radius: 10px; font-weight: 700; font-size: .88rem; text-decoration: none; transition: transform .2s, box-shadow .2s; box-shadow: 0 8px 22px rgba(0,0,0,.14); }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.2); }
    .btn-outline-white { display: inline-flex; align-items: center; gap: 9px; border: 2px solid rgba(255,255,255,.55); color: #fff; padding: 13px 30px; border-radius: 10px; font-weight: 600; font-size: .88rem; text-decoration: none; transition: border-color .2s, background .2s; }
    .btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.12); }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer { background: var(--teal-dkk); color: rgba(255,255,255,.7); padding: 70px 5% 0; }
    .footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 56px; }
    .f-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
    .f-logo img { height: 52px; width: auto; object-fit: contain; }
    .f-desc { font-size: .83rem; line-height: 1.8; color: rgba(255,255,255,.52); margin-bottom: 24px; }
    .f-socials { display: flex; gap: 10px; }
    .f-socials a { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); font-size: .82rem; text-decoration: none; transition: background .2s, color .2s, border-color .2s; }
    .f-socials a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
    .footer-col h4 { color: #fff; font-size: .9rem; font-weight: 700; letter-spacing: .5px; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--orange); display: inline-block; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { color: rgba(255,255,255,.52); text-decoration: none; font-size: .83rem; transition: color .2s; display: flex; align-items: center; gap: 7px; }
    .footer-col ul li a::before { content: '›'; color: var(--orange); font-weight: 700; }
    .footer-col ul li a:hover { color: var(--orange); }
    .f-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
    .f-contact-item i { color: var(--orange); margin-top: 3px; font-size: .9rem; flex-shrink: 0; }
    .f-contact-item p { font-size: .82rem; line-height: 1.6; color: rgba(255,255,255,.52); }
    .f-contact-item a { color: rgba(255,255,255,.52); text-decoration: none; transition: color .2s; }
    .f-contact-item a:hover { color: var(--orange); }
    .footer-bottom { max-width: 1180px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; text-align: center; font-size: .78rem; color: rgba(255,255,255,.32); }
    @media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
    @media(max-width:540px){ .footer-grid { grid-template-columns: 1fr; } }

    /* ============================================================
       ENQUIRE FLOAT
    ============================================================ */
    .enquire-float { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 900; writing-mode: vertical-rl; text-orientation: mixed; background: var(--orange); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; padding: 18px 10px; text-decoration: none; border-radius: 6px 0 0 6px; transition: background .2s, padding .2s; box-shadow: -3px 0 16px rgba(243,115,33,.35); }
    .enquire-float:hover { background: var(--orange-dk); padding-left: 14px; }

    /* ============================================================
       SCROLL ANIMATIONS & UTILITIES
    ============================================================ */
    .transition-delay-1 { transition-delay: .1s; }
    .transition-delay-2 { transition-delay: .2s; }
    .transition-delay-3 { transition-delay: .3s; }
    .transition-delay-4 { transition-delay: .4s; }
    .transition-delay-5 { transition-delay: .5s; }
    .anim { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
    .anim.visible { opacity: 1; transform: translateY(0); }
    
/* ============================================================
   INNER PAGE HERO BANNER
============================================================ */
.page-hero {
    background: linear-gradient(110deg, var(--teal-dkk) 0%, var(--teal-dk) 60%, rgba(26,69,71,.9) 100%);
    padding: 80px 5% 70px;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 28px 28px; pointer-events: none;
}
.page-hero::after {
    content: ''; position: absolute; bottom: -60px; right: -60px;
    width: 340px; height: 340px; border-radius: 50%;
    background: radial-gradient(circle, rgba(243,115,33,.12) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero-inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 2; }
.ph-breadcrumb { display:flex; align-items:center; gap:8px; font-size:.78rem; color:rgba(255,255,255,.5); margin-bottom:18px; }
.ph-breadcrumb a { color:rgba(255,255,255,.5); text-decoration:none; transition:color .2s; }
.ph-breadcrumb a:hover { color:var(--orange); }
.ph-breadcrumb span { color:var(--orange); }
.page-hero h1 { font-size:clamp(2rem,4vw,3.4rem); font-weight:800; color:#fff; line-height:1.15; margin-bottom:14px; }
.page-hero h1 em { font-style:normal; color:var(--orange); }
.page-hero p.ph-sub { font-size:.96rem; color:rgba(255,255,255,.62); max-width:560px; line-height:1.8; }
.ph-accent-line { width:56px; height:4px; background:var(--orange); border-radius:4px; margin-bottom:24px; }

/* ============================================================
   CONTENT LAYOUT (course pages)
============================================================ */
.content-wrap { max-width:1180px; margin:0 auto; padding:80px 5%; display:grid; grid-template-columns:1fr 340px; gap:56px; align-items:start; }
@media(max-width:960px){ .content-wrap { grid-template-columns:1fr; } }

.course-img { width:100%; border-radius:20px; overflow:hidden; margin-bottom:36px; }
.course-img img { width:100%; height:380px; object-fit:cover; display:block; transition:transform .5s; }
.course-img:hover img { transform:scale(1.03); }
.course-main h2 { font-size:1.6rem; font-weight:800; color:var(--teal-dkk); margin-bottom:14px; line-height:1.3; }
.course-main h2 span { color:var(--orange); }
.course-main > p.intro { color:var(--gray); line-height:1.85; font-size:.95rem; margin-bottom:36px; }

.section-title { font-size:1.1rem; font-weight:800; color:var(--teal-dkk); margin:36px 0 18px; display:flex; align-items:center; gap:10px; }
.section-title i { color:var(--orange); }

/* Learn Grid */
.learn-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(230px,1fr)); gap:12px; margin-bottom:36px; }
.learn-item { background:var(--bg); border-radius:12px; padding:14px 18px; border-left:3px solid var(--teal); display:flex; align-items:center; gap:12px; font-size:.87rem; color:var(--dark); font-weight:500; transition:border-color .2s, background .2s, transform .2s; }
.learn-item:hover { border-color:var(--orange); background:#fff5ed; transform:translateX(4px); }
.learn-item i { color:var(--teal); flex-shrink:0; transition:color .2s; }
.learn-item:hover i { color:var(--orange); }

/* Why Rows */
.why-rows { display:flex; flex-direction:column; gap:12px; margin-bottom:36px; }
.why-row { background:#fff; border-radius:14px; padding:16px 20px; border:1px solid #e4eeee; display:flex; align-items:center; gap:14px; box-shadow:0 3px 12px rgba(62,136,139,.06); transition:transform .25s, box-shadow .25s, border-color .25s; }
.why-row:hover { transform:translateX(6px); box-shadow:0 8px 28px rgba(62,136,139,.12); border-color:var(--orange); }
.wr-icon { width:40px; height:40px; border-radius:10px; background:linear-gradient(135deg, var(--teal), var(--teal-dk)); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.wr-icon i { color:#fff !important; font-size:.9rem; }
.why-row p { font-size:.88rem; color:var(--gray); line-height:1.55; margin:0; }

/* Who Can Join */
.who-box { background:linear-gradient(135deg, var(--teal-dkk), var(--teal-dk)); border-radius:20px; padding:36px; margin-bottom:36px; }
.who-box h3 { font-size:1.05rem; font-weight:800; color:#fff; margin-bottom:18px; display:flex; align-items:center; gap:10px; }
.who-box h3 i { color:var(--orange); }
.who-list { list-style:none; display:flex; flex-direction:column; gap:12px; }
.who-list li { display:flex; align-items:flex-start; gap:12px; font-size:.88rem; color:rgba(255,255,255,.78); }
.who-list li i { color:var(--orange); margin-top:2px; flex-shrink:0; }

/* CTA Strip */
.inner-cta { background:linear-gradient(135deg, var(--orange), var(--orange-dk)); border-radius:20px; padding:36px; display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-bottom:36px; box-shadow:0 16px 48px rgba(243,115,33,.25); }
.inner-cta h3 { font-size:1.25rem; font-weight:800; color:#fff; margin-bottom:4px; }
.inner-cta p { font-size:.86rem; color:rgba(255,255,255,.8); }
.btn-cta-white { display:inline-flex; align-items:center; gap:9px; background:#fff; color:var(--orange); padding:13px 28px; border-radius:50px; font-weight:700; font-size:.88rem; text-decoration:none; white-space:nowrap; transition:background .2s, transform .2s; }
.btn-cta-white:hover { background:rgba(255,255,255,.9); transform:translateY(-2px); }

/* SIDEBAR */
.course-sidebar { position:sticky; top:100px; display:flex; flex-direction:column; gap:24px; }
.sidebar-courses { background:var(--teal-dkk); border-radius:20px; padding:26px 22px; }
.sidebar-courses h4 { font-size:.78rem; font-weight:800; color:rgba(255,255,255,.45); letter-spacing:2px; text-transform:uppercase; margin-bottom:16px; }
.sc-list { list-style:none; display:flex; flex-direction:column; gap:5px; }
.sc-list li a { display:flex; align-items:center; gap:12px; padding:11px 14px; border-radius:12px; color:rgba(255,255,255,.65); text-decoration:none; font-size:.86rem; font-weight:500; border:1px solid rgba(255,255,255,.06); transition:background .2s, color .2s, border-color .2s, transform .2s; }
.sc-list li a:hover, .sc-list li a.active { background:rgba(243,115,33,.15); color:#fff; border-color:rgba(243,115,33,.35); transform:translateX(4px); }
.sc-list li a i { color:var(--orange); width:18px; text-align:center; flex-shrink:0; }
.sidebar-benefits { background:var(--bg); border-radius:20px; padding:26px 22px; border:1px solid #dff0f0; }
.sidebar-benefits h4 { font-size:.78rem; font-weight:800; color:var(--teal-dkk); letter-spacing:1.5px; text-transform:uppercase; margin-bottom:16px; }
.sb-list { list-style:none; display:flex; flex-direction:column; gap:10px; }
.sb-list li { display:flex; align-items:center; gap:10px; font-size:.86rem; color:var(--dark); }
.sb-list li i { color:var(--orange); flex-shrink:0; }
.sidebar-form { background:var(--teal); border-radius:20px; padding:26px 22px; }
.sidebar-form h4 { font-size:.94rem; font-weight:800; color:#fff; margin-bottom:4px; }
.sidebar-form p { font-size:.78rem; color:rgba(255,255,255,.65); margin-bottom:18px; }
.sf-group { margin-bottom:12px; }
.sf-group input, .sf-group select { width:100%; padding:10px 14px; border-radius:10px; border:1.5px solid rgba(255,255,255,.2); background:rgba(255,255,255,.12); color:#fff; font-family:var(--font); font-size:.85rem; outline:none; transition:border-color .2s; }
.sf-group input::placeholder { color:rgba(255,255,255,.5); }
.sf-group input:focus, .sf-group select:focus { border-color:var(--orange); }
.sf-group select option { color:var(--dark); background:#fff; }
.btn-submit { width:100%; padding:12px; background:var(--orange); color:#fff; border:none; border-radius:50px; font-family:var(--font); font-size:.88rem; font-weight:700; cursor:pointer; transition:background .2s, transform .2s; }
.btn-submit:hover { background:var(--orange-dk); transform:translateY(-2px); }

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-section { max-width:1180px; margin:0 auto; padding:80px 5%; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.about-section.reverse { direction:rtl; }
.about-section.reverse > * { direction:ltr; }
@media(max-width:820px){ .about-section { grid-template-columns:1fr; padding:60px 5%; } .about-section.reverse { direction:ltr; } }
.as-img { border-radius:20px; overflow:hidden; box-shadow:0 20px 56px rgba(62,136,139,.15); }
.as-img img { width:100%; height:380px; object-fit:cover; display:block; transition:transform .6s; }
.as-img:hover img { transform:scale(1.04); }
.as-text h2 { font-size:clamp(1.6rem,2.5vw,2.2rem); font-weight:800; color:var(--teal-dkk); margin-bottom:14px; line-height:1.2; }
.as-text h2 span { color:var(--orange); }
.as-text p { color:var(--gray); line-height:1.85; font-size:.93rem; margin-bottom:20px; }
.as-bullets { list-style:none; display:flex; flex-direction:column; gap:10px; }
.as-bullets li { display:flex; align-items:center; gap:10px; font-size:.88rem; color:var(--dark); }
.as-bullets li i { color:var(--orange); flex-shrink:0; }
.bg-pale { background:var(--bg); }
.mv-section { background:var(--teal-dkk); padding:80px 5%; }
.mv-inner { max-width:1180px; margin:0 auto; }
.mv-inner .sec-head { text-align:center; margin-bottom:48px; }
.mv-inner .sec-head h2 { font-size:clamp(1.7rem,2.8vw,2.4rem); color:#fff; font-weight:700; }
.mv-inner .sec-head h2 span { color:var(--orange); }
.mv-inner .sec-head p { color:rgba(255,255,255,.5); font-size:.9rem; margin-top:10px; }
.mv-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
@media(max-width:680px){ .mv-grid { grid-template-columns:1fr; } }
.mv-card { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:20px; padding:44px 36px; text-align:center; transition:background .3s, transform .3s; }
.mv-card:hover { background:rgba(243,115,33,.08); transform:translateY(-6px); }
.mv-icon { width:72px; height:72px; border-radius:50%; border:2px solid var(--orange); display:flex; align-items:center; justify-content:center; color:var(--orange); font-size:1.8rem; margin:0 auto 22px; transition:background .3s, color .3s; }
.mv-card:hover .mv-icon { background:var(--orange); color:#fff; }
.mv-card h3 { font-size:1.2rem; font-weight:800; color:#fff; margin-bottom:12px; }
.mv-card p { font-size:.88rem; color:rgba(255,255,255,.58); line-height:1.8; }
.trainers-section { padding:80px 5%; background:var(--bg); }
.trainers-inner { max-width:1180px; margin:0 auto; }
.trainers-inner .sec-head { text-align:center; margin-bottom:48px; }
.trainers-inner .sec-head h2 { font-size:clamp(1.7rem,2.8vw,2.4rem); color:var(--teal-dkk); font-weight:700; }
.trainers-inner .sec-head h2 span { color:var(--orange); }
.trainers-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(220px,1fr)); gap:22px; }
.trainer-card { background:#fff; border-radius:16px; padding:32px 24px; text-align:center; border:1px solid #e4eeee; box-shadow:0 4px 18px rgba(62,136,139,.06); transition:transform .3s, box-shadow .3s; }
.trainer-card:hover { transform:translateY(-8px); box-shadow:0 20px 48px rgba(62,136,139,.13); }
.trainer-icon { width:64px; height:64px; border-radius:50%; background:linear-gradient(135deg, var(--teal), var(--teal-dk)); display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.6rem; margin:0 auto 16px; }
.trainer-card h4 { font-size:.95rem; color:var(--teal-dkk); font-weight:700; margin-bottom:6px; }
.trainer-card p { font-size:.81rem; color:var(--gray); line-height:1.6; }

/* ============================================================
   SERVICES PAGE
============================================================ */
.services-section { max-width:1180px; margin:0 auto; padding:80px 5%; display:grid; grid-template-columns:repeat(auto-fill, minmax(320px,1fr)); gap:28px; }
.svc-card { background:#fff; border-radius:20px; padding:40px 32px; border:1px solid #e4eeee; box-shadow:0 4px 20px rgba(62,136,139,.07); transition:transform .3s, box-shadow .3s, border-color .3s; display:flex; flex-direction:column; gap:14px; }
.svc-card:hover { transform:translateY(-8px); box-shadow:0 24px 56px rgba(62,136,139,.13); border-color:var(--orange); }
.svc-card-icon { width:66px; height:66px; border-radius:16px; background:linear-gradient(135deg, var(--teal), var(--teal-dk)); display:flex; align-items:center; justify-content:center; font-size:1.8rem; color:#fff; box-shadow:0 8px 20px rgba(62,136,139,.28); }
.svc-card-icon i { color:#fff !important; }
.svc-card-tag { display:inline-flex; align-items:center; gap:6px; background:var(--teal-pale); color:var(--teal-dkk); font-size:.7rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:4px 12px; border-radius:50px; align-self:flex-start; }
.svc-card-tag i { color:var(--orange); }
.svc-card h3 { font-size:1.1rem; font-weight:800; color:var(--teal-dkk); }
.svc-card p { font-size:.87rem; color:var(--gray); line-height:1.75; flex:1; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-wrap { max-width:1100px; margin:0 auto; padding:80px 5%; display:grid; grid-template-columns:1.2fr 1fr; gap:60px; align-items:start; }
@media(max-width:860px){ .contact-wrap { grid-template-columns:1fr; } }
.contact-form-box { background:var(--bg); border-radius:24px; padding:44px 40px; border:1px solid #dff0f0; }
.contact-form-box h2 { font-size:1.6rem; font-weight:800; color:var(--teal-dkk); margin-bottom:6px; }
.contact-form-box > p { color:var(--gray); font-size:.9rem; margin-bottom:28px; }
.cf-group { margin-bottom:16px; }
.cf-group label { display:block; font-size:.76rem; font-weight:700; color:var(--teal-dkk); margin-bottom:6px; letter-spacing:.5px; text-transform:uppercase; }
.cf-group input, .cf-group select, .cf-group textarea { width:100%; padding:11px 15px; border-radius:12px; border:1.5px solid #cde4e4; background:#fff; color:var(--dark); font-family:var(--font); font-size:.9rem; outline:none; transition:border-color .2s, box-shadow .2s; }
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus { border-color:var(--teal); box-shadow:0 0 0 3px rgba(62,136,139,.1); }
.cf-group textarea { resize:vertical; min-height:110px; }
.cf-submit { width:100%; padding:13px; background:var(--teal); color:#fff; border:none; border-radius:50px; font-family:var(--font); font-size:.92rem; font-weight:700; cursor:pointer; transition:background .2s, transform .2s; margin-top:4px; }
.cf-submit:hover { background:var(--teal-dk); transform:translateY(-2px); }
.contact-info { display:flex; flex-direction:column; gap:20px; }
.ci-card { background:var(--teal-dkk); border-radius:18px; padding:26px 24px; display:flex; align-items:flex-start; gap:16px; transition:transform .3s; }
.ci-card:hover { transform:translateX(6px); }
.ci-icon { width:46px; height:46px; border-radius:12px; background:var(--orange); display:flex; align-items:center; justify-content:center; color:#fff; font-size:1rem; flex-shrink:0; }
.ci-card h4 { font-size:.76rem; font-weight:700; color:rgba(255,255,255,.45); letter-spacing:1px; text-transform:uppercase; margin-bottom:5px; }
.ci-card p, .ci-card a { font-size:.9rem; color:#fff; line-height:1.6; text-decoration:none; }
.ci-card a:hover { color:var(--orange); }
.map-embed { border-radius:18px; overflow:hidden; }
.map-embed iframe { width:100%; height:230px; border:none; display:block; }

/* Eyebrow for inner pages */
.eyebrow-inner { display:inline-flex; align-items:center; gap:8px; color:var(--orange); font-size:.72rem; letter-spacing:3px; font-weight:700; text-transform:uppercase; margin-bottom:14px; }
.eyebrow-inner::before { content:''; width:24px; height:2px; background:var(--orange); flex-shrink:0; }
    @media(max-width:900px){ .nav-links { display: none; } .hamburger { display: block; } .mobile-nav { display: flex; } }
