       /* =========================================================
           Design tokens
           ========================================================= */
        :root {
            --primary: #0B8B29;
            --primary-2: #0fa131;
            --primary-3: #86EFAC;
            --primary-dark: #087822;
            --primary-soft: #E7F6EF;
            --primary-soft-2: #D6EEE2;

            --accent: #F59E0B;
            --accent-soft: #FEF3C7;
            --coral: #FB7185;
            --sky: #38BDF8;
            --violet: #A78BFA;
            --success: #10B981;
            --danger: #EF4444;

            --text: #0B1220;
            --text-soft: #1F2937;
            --text-light: #475569;
            --text-mute: #94A3B8;
            --border: #E5E7EB;
            --border-soft: #EEF2F7;
            --bg: #FFFFFF;
            --section: #F8FAFC;
            --section-2: #F1F8F4;
            --card: #FFFFFF;
            --card-2: #FBFEFC;

            --shadow-xs: 0 2px 6px rgba(15, 23, 42, .04);
            --shadow-sm: 0 6px 18px rgba(15, 23, 42, .06);
            --shadow: 0 18px 40px rgba(15, 23, 42, .08);
            --shadow-lg: 0 30px 80px rgba(15, 23, 42, .10);
            --glow: 0 20px 60px rgba(14, 138, 95, .25);
            --ring: 0 0 0 4px rgba(14, 138, 95, .15);

            --r-sm: 12px;
            --r: 18px;
            --r-lg: 26px;
            --r-xl: 36px;
            --r-2xl: 48px;

            --ease: cubic-bezier(.2, .7, .2, 1);
            --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
            --t-fast: .25s;
            --t: .4s;
            --t-slow: .8s;

            --tabs-h: 128px;
            --form-w: 400px;
            --container: 1320px;
        }

        * {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: calc(var(--tabs-h) + 20px);
            overflow-x: hidden;
        }
        html.menu-open {
            overflow: hidden;
        }
        body {
            margin: 0;
            font-family: 'Inter', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
            color: var(--text);
            background: var(--bg);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        img,
        svg {
            display: block;
            max-width: 100%;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        button {
            font: inherit;
            cursor: pointer;
            border: 0;
            background: none;
            color: inherit;
        }
        input,
        select,
        textarea {
            font: inherit;
        }
        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Poppins', Inter, sans-serif;
            color: var(--text);
            line-height: 1.2;
            margin: 0;
            letter-spacing: -.02em;
        }
        p {
            margin: 0;
        }

        .container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width:768px) {
            .container {
                padding: 0 16px;
            }
        }
        .section-pad {
            padding: 110px 0;
            position: relative;
        }
        @media (max-width:768px) {
            .section-pad {
                padding: 64px 0;
            }
        }

        /* =========================================================
           Scroll progress bar
           ========================================================= */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            width: 0%;
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-2) 50%, #0EA5E9 100%);
            z-index: 9999;
            transition: width .1s linear;
            box-shadow: 0 0 16px rgba(14, 138, 95, .5);
        }

        /* =========================================================
           Buttons
           ========================================================= */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .5rem;
            padding: 10px 22px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 13.5px;
            transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
            white-space: nowrap;
            position: relative;
            overflow: hidden;
            letter-spacing: .01em;
            cursor: pointer;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
            color: #fff;
            box-shadow: 0 4px 14px rgba(14, 138, 95, .25);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(14, 138, 95, .35);
        }
        .btn-outline {
            border: 1.5px solid var(--primary);
            color: var(--primary);
            background: transparent;
        }
        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-ghost {
            background: rgba(255, 255, 255, .12);
            color: #fff;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, .25);
        }
        .btn-ghost:hover {
            background: rgba(255, 255, 255, .22);
            transform: translateY(-1px);
        }
        .btn-white {
            background: #fff;
            color: var(--primary);
        }
        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
        }
        .btn-pill {
            padding: 6px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 500;
            background: var(--primary-soft);
            color: var(--primary);
        }
        .btn-lg {
            padding: 12px 28px;
            font-size: 15px;
        }
        .btn-sm {
            padding: 8px 16px;
            font-size: 12.5px;
        }

        .btn::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, .35), transparent 50%);
            opacity: 0;
            transition: opacity .4s;
        }
        .btn:active::after {
            opacity: 1;
            transition: 0s;
        }

        /* =========================================================
           STICKY NAVBAR — Desktop 2 rows / Mobile drawer
           ========================================================= */
        .tabs-wrap {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 500;
            background: rgba(255, 255, 255, .92);
            backdrop-filter: saturate(160%) blur(14px);
            -webkit-backdrop-filter: saturate(160%) blur(14px);
            border-bottom: 1px solid transparent;
            transition: box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
        }
        .tabs-wrap.scrolled {
            box-shadow: 0 8px 32px rgba(15, 23, 42, .10), 0 0 0 1px rgba(14, 138, 95, .08);
            background: rgba(255, 255, 255, .98);
            border-bottom-color: var(--border-soft);
        }
        body {
            padding-top: var(--tabs-h);
        }
        body.menu-open {
            position: fixed;
            width: 100%;
            overflow: hidden;
            touch-action: none;
        }

        .navbar-inner {
            display: flex;
            flex-direction: column;
            gap: 0;
            padding: 8px 24px 10px;
            max-width: var(--container);
            margin: 0 auto;
        }
        .nav-top-row {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr) auto;
            align-items: center;
            column-gap: 16px;
            width: 100%;
            min-height: 62px;
        }

        .tabs-brand {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            transition: none;
        }
        .tabs-brand:hover {
            transform: none;
        }
        .nav-logo {
            height: 60px;
            width: auto;
            object-fit: contain;
            border: none;
            background: transparent;
            transition: none;
            pointer-events: none;
        }
        .tabs-brand:hover .nav-logo {
            transform: none;
        }

        .nav-course-title {
            display: flex;
            flex-direction: column;
            min-width: 0;
            text-align: center;
            align-items: center;
        }
        .nav-course-name {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 23px;
            color: var(--text);
            line-height: 1.1;
            letter-spacing: -.02em;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }
        .nav-course-sub {
            font-size: 13px;
            font-weight: 500;
            color: var(--primary);
            letter-spacing: .02em;
            line-height: 1.25;
            opacity: .9;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }

        .tabs-desktop {
            display: flex;
            gap: 4px;
            width: 100%;
            justify-content: flex-start;
            align-items: center;
            overflow-x: auto;
            scrollbar-width: none;
            padding: 6px 0 0;
            border-top: 0;
            margin-left: 250px;
        }
        .tabs-desktop::-webkit-scrollbar {
            display: none;
        }
        .tabs-desktop .tab {
            padding: 9px 16px;
            border-radius: 999px;
            font-weight: 500;
            font-size: 14px;
            color: var(--text-light);
            white-space: nowrap;
            transition: color var(--t) var(--ease), background var(--t) var(--ease), transform var(--t) var(--ease);
            cursor: pointer;
            text-decoration: none;
        }
        .tabs-desktop .tab:hover {
            color: var(--primary);
            background: var(--primary-soft);
            transform: translateY(-1px);
        }
        .tabs-desktop .tab.active {
            color: #fff;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
            font-weight: 600;
            box-shadow: 0 4px 14px rgba(14, 138, 95, .28);
        }

        .btn-enroll {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 18px;
            border-radius: 999px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 12.5px;
            color: #fff;
            background: linear-gradient(135deg, var(--primary) 0%, #0fb976 50%, var(--primary-2) 100%);
            background-size: 200% 200%;
            text-decoration: none;
            overflow: hidden;
            flex-shrink: 0;
            transition: transform .25s var(--ease), box-shadow .25s var(--ease);
            box-shadow: 0 2px 8px rgba(14, 138, 95, .25);
            animation: btnGradient 3s ease infinite;
        }
        @keyframes btnGradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        .btn-enroll:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(14, 138, 95, .35);
        }
        .btn-enroll:active {
            transform: translateY(0) scale(.97);
            box-shadow: 0 1px 6px rgba(14, 138, 95, .25);
        }
        .btn-enroll-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
            animation: btnShine 3s ease-in-out infinite;
        }
        @keyframes btnShine {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }
        .btn-enroll-text,
        .btn-enroll-arrow {
            position: relative;
            z-index: 2;
        }
        .btn-enroll-arrow {
            width: 14px;
            height: 14px;
            transition: transform .25s var(--ease);
        }
        .btn-enroll:hover .btn-enroll-arrow {
            transform: translateX(3px);
        }

        .section-rail {
            display: none;
            position: relative;
            align-items: center;
            justify-content: flex-end;
            gap: 8px;
            min-width: 200px;
            width: min(100%, 260px);
            height: 58px;
            padding: 0 2px;
            margin-left: auto;
            isolation: isolate;
            overflow: visible;
        }
        @keyframes railRiseIn {
            from {
                opacity: 0;
                transform: translateY(-6px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .section-rail::before {
            content: "";
            position: absolute;
            left: 8px;
            right: 8px;
            top: 23px;
            height: 2px;
            transform: translateY(-50%);
            background: #111827;
            border-radius: 999px;
            z-index: 0;
        }
        .rail-item {
            position: relative;
            z-index: 1;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #fff;
            border: 3px solid #111827;
            box-shadow: none;
            flex: 0 0 auto;
            transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
        }
        .rail-item:hover,
        .rail-item:focus-visible {
            background: #fff;
            transform: translateY(-1px) scale(1.12);
            box-shadow: 0 0 0 4px rgba(17, 24, 39, .10);
            outline: none;
        }
        .rail-item.active {
            background: var(--primary);
            border-color: var(--primary);
            box-shadow: 0 0 0 5px rgba(14, 138, 95, .16);
            transform: scale(1.12);
        }
        .rail-item.active::after {
            content: "";
            position: absolute;
            inset: -7px;
            border-radius: 50%;
            border: 1px solid rgba(14, 138, 95, .24);
            animation: railPulse 1.8s ease-out infinite;
        }
        .rail-item:focus-visible {
            box-shadow: 0 0 0 4px rgba(17, 24, 39, .12);
        }
        .rail-caption {
            position: absolute;
            left: 0;
            top: 34px;
            margin-top: 0;
            padding: 5px 10px;
            min-width: 68px;
            border-radius: 999px;
            background: #fff;
            color: #111827;
            border: 1px solid rgba(17, 24, 39, .18);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            white-space: nowrap;
            text-align: center;
            box-shadow: 0 10px 24px rgba(17, 24, 39, .08);
            pointer-events: none;
            transform: translateX(var(--rail-label-x, 0px));
            transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), left var(--t-fast) var(--ease), top var(--t-fast) var(--ease);
        }
        .section-rail:hover .rail-caption,
        .section-rail:focus-within .rail-caption {
            background: #111827;
            color: #fff;
            border-color: #111827;
        }
        @keyframes railPulse {
            0% {
                transform: scale(.75);
                opacity: 0;
            }
            40% {
                opacity: .9;
            }
            100% {
                transform: scale(1.45);
                opacity: 0;
            }
        }
        .mobile-drawer {
            display: none;
        }
        .nav-overlay {
            display: none;
        }

        .mobile-rail-shell {
            display: none;
        }

        /* =========================================================
           MOBILE — top row + right drawer (<= 900px)
           ========================================================= */
        @media (max-width: 900px) {
            :root {
                --tabs-h: 128px;
            }
            body {
                padding-top: var(--tabs-h);
            }

            .navbar-inner {
                position: relative;
                padding: 10px 14px 12px;
            }
            .nav-top-row {
                grid-template-columns: auto minmax(0, 1fr) auto;
                column-gap: 10px;
                min-height: 58px;
            }

            .tabs-desktop,
            .btn-enroll {
                display: none !important;
            }
            .section-rail {
                display: none !important;
            }

            .mobile-rail-shell {
                display: block;
                position: relative;
                left: auto;
                right: auto;
                top: auto;
                z-index: 2;
                margin-top: 6px;
                padding: 0;
                pointer-events: auto;
            }
            .mobile-rail-track {
                position: relative;
                width: 100%;
                max-width: 100%;
                margin: 0 auto;
                padding: 8px 12px 18px;
                border-radius: 16px;
                background: linear-gradient(135deg, rgba(11, 139, 41, .12), rgba(15, 161, 49, .05));
                border: 0;
                box-shadow: 0 10px 22px rgba(11, 139, 41, .08), inset 0 1px 0 rgba(255,255,255,.45);
                display: flex;
                align-items: center;
                justify-content: space-between;
                pointer-events: auto;
                overflow: visible;
                animation: railRiseIn .45s var(--ease) both, mobileRailGlow 5s ease-in-out infinite;
            }
            .mobile-rail-line {
                position: absolute;
                left: 14px;
                right: 14px;
                top: 18px;
                height: 3px;
                border-radius: 999px;
                background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-2));
                z-index: 0;
                opacity: .95;
            }
            .mobile-rail-dot {
                position: relative;
                z-index: 1;
                width: 14px;
                height: 14px;
                border-radius: 50%;
                background: #fff;
                border: 2px solid var(--primary-dark);
                box-shadow: 0 0 0 2px rgba(255,255,255,.90), 0 6px 12px rgba(11, 139, 41, .08);
                flex: 0 0 auto;
                transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease), filter .2s var(--ease);
            }
            .mobile-rail-dot.active {
                background: var(--primary-2);
                border-color: var(--primary-2);
                box-shadow: 0 0 0 4px rgba(14, 138, 95, .14), 0 8px 16px rgba(11, 139, 41, .12);
                transform: scale(1.08);
            }
            .mobile-rail-dot:hover,
            .mobile-rail-dot:focus-visible {
                background: #fff;
                border-color: var(--primary-2);
                box-shadow: 0 0 0 4px rgba(14, 138, 95, .12), 0 6px 14px rgba(11, 139, 41, .08);
                transform: translateY(-1px) scale(1.05);
                filter: saturate(1.08);
                outline: none;
            }
            .mobile-rail-dot.active::after {
                content: "";
                position: absolute;
                inset: -7px;
                border-radius: 50%;
                border: 1px solid rgba(14, 138, 95, .26);
                animation: railPulse 1.6s ease-out infinite;
            }
            .mobile-rail-label {
                position: absolute;
                left: 0;
                top: 28px;
                padding: 4px 8px;
                min-width: 54px;
                border-radius: 999px;
                background: var(--primary-dark);
                color: #fff;
                border: 0;
                font-size: 8.5px;
                font-weight: 800;
                letter-spacing: .05em;
                text-transform: uppercase;
                text-align: center;
                box-shadow: 0 8px 16px rgba(11, 139, 41, .14);
                pointer-events: none;
                white-space: nowrap;
                animation: railLabelPop .28s var(--ease-bounce) both;
            }

            .nav-logo {
                height: 44px;
            }
            .nav-course-title {
                text-align: center;
            }
            .nav-course-name {
                font-size: 30px;
                font-weight: 700;
            }
            .nav-course-sub {
                font-size: 19px;
                opacity: .82;
            }
        }

        @media (max-width: 480px) {
            .nav-logo {
                height: 40px;
            }
            .nav-course-name {
                font-size: 18.5px;
            }
            .nav-course-sub {
                font-size: 12px;
            }
            .mobile-rail-shell {
                margin-top: 5px;
            }
            .mobile-rail-track {
                padding: 7px 10px 16px;
            }
            .mobile-rail-dot {
                width: 13px;
                height: 13px;
                border-width: 2px;
            }
            .mobile-rail-label {
                top: 26px;
                min-width: 50px;
                font-size: 8px;
            }
        }

        @keyframes mobileRailGlow {
            0%, 100% {
                box-shadow: 0 12px 28px rgba(11, 139, 41, .10), inset 0 1px 0 rgba(255,255,255,.45);
            }
            50% {
                box-shadow: 0 14px 34px rgba(11, 139, 41, .16), inset 0 1px 0 rgba(255,255,255,.55);
            }
        }

        @keyframes railLabelPop {
            from {
                opacity: 0;
                transform: translateY(4px) scale(.96);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* =========================================================
           Section heading
           ========================================================= */
        .heading-xl {
            font-size: clamp(30px, 4.2vw, 50px);
            font-weight: 800;
            letter-spacing: -.03em;
        }
        .heading-lg {
            font-size: clamp(24px, 2.8vw, 34px);
            font-weight: 700;
            letter-spacing: -.02em;
        }
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            border-radius: 999px;
            font-family: 'Poppins', Inter, sans-serif;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .14em;
            line-height: 1.1;
            color: var(--primary-dark);
            background: rgba(14, 138, 95, .12);
            border: 1px solid rgba(14, 138, 95, .24);
            box-shadow: 0 12px 32px rgba(14, 138, 95, .06);
            backdrop-filter: blur(12px);
            transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
            margin-bottom: 16px;
        }
        .eyebrow svg {
            width: 16px;
            height: 16px;
            color: var(--primary);
        }
        .eyebrow:hover {
            transform: translateY(-2px);
            background: rgba(14, 138, 95, .18);
            box-shadow: 0 16px 40px rgba(14, 138, 95, .12);
        }
        .sr-block-head .eyebrow,
        .overview-content .eyebrow {
            display: inline-flex;
            align-items: center;
        }
        .sr-block-head h2,
        .overview-content h1 {
            color: var(--text);
        }
        .sr-block-head h2 span,
        .overview-content h1 .accent {
            background: linear-gradient(90deg, var(--primary), var(--primary-2));
            -webkit-background-clip: text;
            color: transparent;
        }
        .text-mute {
            color: var(--text-light);
        }
        .text-center {
            text-align: center;
        }
        .center {
            margin-left: auto;
            margin-right: auto;
        }

        /* =========================================================
           Overview
           ========================================================= */
        .overview-section {
            position: relative;
            padding: 60px 0 80px;
        }
        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }
        @media (max-width:1200px) {
            .overview-grid {
                gap: 34px;
            }
            .img-wrap {
                width: min(100%, 560px);
                max-width: 560px;
                max-height: 74vh;
            }
        }
        @media (max-width:960px) {
            .overview-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .img-wrap {
                width: min(100%, 560px);
                max-width: 560px;
            }
        }
        .img-wrap {
            width: min(100%, 620px);
            max-width: 620px;
            margin: 0 auto;
            position: relative;
            display: block;
            aspect-ratio: 1 / 1;
            max-height: 72vh;
            overflow: visible;
        }

        .overview-img {
            position: relative;
            border-radius: var(--r-2xl);
            overflow: hidden;
            box-shadow: none;
            border: none;
            transition: transform var(--t) var(--ease);
            background: transparent;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .overview-img:hover {
            transform: scale(1.01);
        }
        /* Removed the green gradient overlay — now using a clean image */
        .overview-img img.ov-image {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center center;
            z-index: 0;
        }
        .overview-img::before {
            /* remove decorative overlay so the image shows cleanly */
            content: "";
            position: absolute;
            inset: 0;
            background: none;
            z-index: 1;
            pointer-events: none;
        }
        .overview-img .ov-content {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 28px;
            color: #fff;
        }
        .overview-img .ov-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 99px;
            background: transparent;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .04em;
            text-transform: uppercase;
            width: fit-content;
        }
        .overview-img .ov-tag svg {
            width: 14px;
            height: 14px;
        }
        .overview-img .ov-bottom {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .overview-img .ov-emoji {
            font-size: 80px;
            line-height: 1;
            display: grid;
            place-items: center;
            width: 100px;
            height: 100px;
            border-radius: 24px;
            background: transparent;
            backdrop-filter: none;
            margin-bottom: 8px;
        }
        .overview-img .ov-emoji svg {
            width: 56px;
            height: 56px;
            color: #fff;
        }
        .overview-img .ov-title {
            font-family: 'Poppins';
            font-weight: 800;
            font-size: 28px;
            letter-spacing: -.01em;
            line-height: 1.15;
        }
        .overview-img .ov-sub {
            font-size: 14px;
            opacity: .9;
            line-height: 1.4;
        }
        .overview-content h1 {
            font-size: clamp(30px, 3.6vw, 44px);
            font-weight: 800;
            letter-spacing: -.03em;
        }
        .overview-content h1 .accent {
            color: var(--primary);
        }
        .overview-content p {
            margin-top: 16px;
            color: var(--text-light);
            font-size: 15.5px;
            line-height: 1.75;
        }
        .overview-content .quick-list-card {
            margin-top: 24px;
            padding: 18px 22px;
            border-radius: 18px;
            width: fit-content;
            max-width: 100%;
            background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 40%, #ecfdf5 100%);
            border: 1px solid rgba(11, 139, 41, 0.12);
            position: relative;
            overflow: visible;
            animation: qlcZoom 1.4s cubic-bezier(.33,.6,.2,1) infinite, qlcGlow 1s cubic-bezier(.33,.6,.2,1) infinite;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 6px;
            transform-origin: center;
        }
        /* — glow layer 1: outer halo — */
        .overview-content .quick-list-card::before {
            content: '';
            position: absolute;
            inset: -10px;
            border-radius: 30px;
            background: radial-gradient(ellipse at 50% 50%, rgba(11,139,41,0.12), transparent 65%);
            animation: qlcOuterGlow 1s cubic-bezier(.33,.6,.2,1) infinite;
            pointer-events: none;
            z-index: -2;
        }
        /* — glow layer 2: animated brand border — */
        .overview-content .quick-list-card::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 25px;
            background: conic-gradient(from 0deg,
                rgba(11,139,41,0.35),
                rgba(15,161,49,0.12),
                rgba(11,139,41,0.35),
                rgba(8,120,34,0.2),
                rgba(11,139,41,0.35)
            );
            background-size: 400% 400%;
            animation: qlcBorderGlow 2s linear infinite;
            z-index: -1;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            padding: 3px;
        }
        /* — glow layer 3: internal shimmer sweep — */
        .overview-content .quick-list-card .qlc-shine {
            position: absolute;
            inset: 0;
            border-radius: 22px;
            background: linear-gradient(105deg,
                transparent 30%,
                rgba(255,255,255,0.35) 45%,
                rgba(255,255,255,0.6) 50%,
                rgba(255,255,255,0.35) 55%,
                transparent 70%
            );
            background-size: 300% 300%;
            animation: qlcShimmer 1s cubic-bezier(.33,.6,.2,1) infinite;
            pointer-events: none;
            z-index: 1;
        }
        /* — pulsing glow ring — */
        .overview-content .quick-list-card .qlc-glow-ring {
            position: absolute;
            inset: -14px;
            border-radius: 34px;
            border: 2px solid rgba(11,139,41,0.08);
            animation: qlcRingPulse 1s cubic-bezier(.33,.6,.2,1) infinite;
            pointer-events: none;
            z-index: -1;
        }
        /* — sparkle particles — */
        .overview-content .quick-list-card .qlc-sparkle {
            position: absolute;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: radial-gradient(circle at center, rgba(11,139,41,0.5), transparent);
            pointer-events: none;
            z-index: 1;
            animation: qlcSparkle 1s cubic-bezier(.33,.6,.2,1) infinite;
        }
        .overview-content .quick-list-card .qlc-sparkle.s1 { top: 8%; left: 12%; animation-delay: 0s; }
        .overview-content .quick-list-card .qlc-sparkle.s2 { top: 60%; right: 8%; animation-delay: 0.8s; width: 14px; height: 14px; }
        .overview-content .quick-list-card .qlc-sparkle.s3 { bottom: 15%; left: 40%; animation-delay: 1.6s; width: 8px; height: 8px; }
        /* — glow dots (corner) — */
        .overview-content .quick-list-card .qlc-glow-dots {
            position: absolute;
            top: 12px;
            right: 14px;
            display: flex;
            gap: 5px;
            z-index: 10;
            pointer-events: none;
        }
        .overview-content .quick-list-card .qlc-glow-dots span {
            display: block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary);
            opacity: 0.25;
            animation: qlcDotPulse 1s cubic-bezier(.33,.6,.2,1) infinite;
        }
        .overview-content .quick-list-card .qlc-glow-dots span:nth-child(2) { animation-delay: 0.25s; opacity: 0.18; }
        .overview-content .quick-list-card .qlc-glow-dots span:nth-child(3) { animation-delay: 0.5s; opacity: 0.12;  }
        /* — items — */
        .overview-content .quick-list-card .qlc-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 10px 16px 10px 14px;
            font-size: 14.5px;
            font-weight: 500;
            color: var(--text-soft);
            position: relative;
            z-index: 2;
            border-radius: 14px;
            background: rgba(255,255,255,0.55);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            border: 1px solid rgba(255,255,255,0.6);
            box-shadow: 0 2px 8px rgba(11,139,41,0.04);
            transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            animation: qlcItemIn 0.25s cubic-bezier(.2,.7,.2,1) both;
        }
        .overview-content .quick-list-card .qlc-item:nth-child(6) { animation-delay: 0.06s; }
        .overview-content .quick-list-card .qlc-item:nth-child(7) { animation-delay: 0.12s; }
        .overview-content .quick-list-card .qlc-item:nth-child(8) { animation-delay: 0.18s; }
        .overview-content .quick-list-card .qlc-item:hover {
            transform: translateX(8px) scale(1.02);
            background: rgba(255,255,255,0.85);
            box-shadow: 0 8px 24px rgba(11, 139, 41, 0.12);
            border-color: rgba(11,139,41,0.15);
        }
        .overview-content .quick-list-card .qlc-item .check {
            flex-shrink: 0;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-2));
            color: #fff;
            display: grid;
            place-items: center;
            box-shadow: 0 4px 12px rgba(11, 139, 41, 0.3);
            animation: qlcCheckPulse 1s cubic-bezier(.33,.6,.2,1) infinite;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .overview-content .quick-list-card .qlc-item:nth-child(6) .check { animation-delay: 0.2s; }
        .overview-content .quick-list-card .qlc-item:nth-child(7) .check { animation-delay: 0.4s; }
        .overview-content .quick-list-card .qlc-item:nth-child(8) .check { animation-delay: 0.6s; }
        .overview-content .quick-list-card .qlc-item:hover .check {
            transform: scale(1.15) rotate(-8deg);
            box-shadow: 0 6px 20px rgba(11, 139, 41, 0.4);
        }
        .overview-content .quick-list-card .qlc-item .check svg {
            width: 14px;
            height: 14px;
        }
        .enroll-start-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 12px;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(11,139,41,0.12), rgba(11,139,41,0.06));
            border: 1px solid rgba(11,139,41,0.18);
            font-size: 13px;
            font-weight: 700;
            color: var(--primary-dark);
            letter-spacing: .02em;
            margin-top: 6px;
            width: fit-content;
            animation: badgePulse 1.8s ease-in-out infinite;
        }
        .enroll-start-badge svg {
            width: 13px;
            height: 13px;
            color: var(--primary);
        }
        @keyframes badgePulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(11,139,41,0.15); }
            50% { box-shadow: 0 0 0 6px rgba(11,139,41,0); }
        }
        .price-card-ori {
            font-size: 13px;
            color: var(--text-mute);
            text-decoration: line-through;
            margin-right: 4px;
            font-weight: 500;
        }

        @keyframes qlcZoom {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.04); }
        }
        @keyframes qlcGlow {
            0%, 100% { box-shadow: 0 6px 30px rgba(11, 139, 41, 0.06), 0 0 0 1px rgba(11, 139, 41, 0.04); }
            50% { box-shadow: 0 16px 56px rgba(11, 139, 41, 0.16), 0 0 0 2px rgba(11, 139, 41, 0.1); }
        }
        @keyframes qlcOuterGlow {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.04); }
        }
        @keyframes qlcShimmer {
            0% { background-position: 200% 50%; opacity: 0; }
            20% { opacity: 0.5; }
            40% { background-position: 0% 50%; opacity: 0.8; }
            60% { opacity: 0.5; }
            80% { background-position: -200% 50%; opacity: 0; }
            100% { background-position: -200% 50%; opacity: 0; }
        }
        @keyframes qlcBorderGlow {
            0% { background-position: 0% 50%; }
            100% { background-position: 400% 50%; }
        }
        @keyframes qlcRingPulse {
            0%, 100% { transform: scale(1); opacity: 0.25; border-color: rgba(11,139,41,0.06); }
            50% { transform: scale(1.08); opacity: 0.7; border-color: rgba(11,139,41,0.18); }
        }
        @keyframes qlcSparkle {
            0%, 100% { transform: scale(0); opacity: 0; }
            40% { transform: scale(1.6); opacity: 0.7; }
            70% { transform: scale(0.8); opacity: 0.3; }
        }
        @keyframes qlcDotPulse {
            0%, 100% { transform: scale(1); opacity: 0.25; }
            50% { transform: scale(1.8); opacity: 0.7; }
        }
        @keyframes qlcItemIn {
            from { opacity: 0; transform: translateX(-16px) scale(0.96); filter: blur(2px); }
            to { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
        }
        @keyframes qlcCheckPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(11, 139, 41, 0.3); }
            50% { transform: scale(1.18); box-shadow: 0 8px 26px rgba(11, 139, 41, 0.45); }
        }

        /* Decorative shapes */
        .img-wrap .shape {
            position: absolute;
            pointer-events: none;
            opacity: .9;
            z-index: 4;
            border-radius: 50%;
            animation: floatShape 6s ease-in-out infinite;
            transition: transform var(--t) var(--ease);
        }
        .shape:hover {
            transform: scale(1.2) rotate(20deg);
        }
        .img-wrap .shape.s1 {
            width: 60px;
            height: 60px;
            background: var(--accent-soft);
            top: 12px;
            right: -14px;
            transform: translateY(0);
        }
        .img-wrap .shape.s2 {
            width: 36px;
            height: 36px;
            background: var(--primary-soft);
            bottom: 12px;
            left: -14px;
            animation-delay: -2s;
        }
        .img-wrap .shape.s3 {
            width: 24px;
            height: 24px;
            border-radius: 8px;
            background: var(--sky);
            opacity: .9;
            top: 50%;
            left: -14px;
            transform: translateY(-50%);
            animation-delay: -4s;
        }
        .img-wrap .shape.s4 {
            width: 48px;
            height: 48px;
            background: #FECACA;
            bottom: 18%;
            right: -14px;
            animation-delay: -3s;
        }

        .overview-content {
            transform: translateY(-18px);
        }

        @media (max-width:960px) {
            .overview-content {
                transform: none;
            }
            .img-wrap {
                max-width: min(92vw, 560px);
                aspect-ratio: 1 / 1;
                min-height: 340px;
                max-height: min(72vh, 620px);
            }
            .img-wrap .shape.s1 {
                top: 2%;
                right: 1%;
                left: auto;
            }
            .img-wrap .shape.s2 {
                bottom: 9%;
                left: 4%;
                right: auto;
            }
            .img-wrap .shape.s3 {
                top: 28%;
                right: 4%;
                left: auto;
                transform: none;
            }
            .img-wrap .shape.s4 {
                bottom: 20%;
                right: 5%;
                left: auto;
            }
        }
        @media (max-width:640px) {
            .img-wrap {
                max-width: min(96vw, 520px);
                min-height: 280px;
                max-height: min(68vh, 520px);
            }
            .img-wrap .shape.s1 {
                width: 50px;
                height: 50px;
            }
            .img-wrap .shape.s2 {
                width: 28px;
                height: 28px;
            }
            .img-wrap .shape.s3 {
                width: 20px;
                height: 20px;
            }
            .img-wrap .shape.s4 {
                width: 40px;
                height: 40px;
            }
        }
        @keyframes floatShape {
            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }
            50% {
                transform: translate(12px, -18px) rotate(12deg);
            }
        }

        /* =========================================================
           UNIFIED STICKY REGION — form is sticky, stays visible
           through the entire region from "Who Is This For" to "Your Coach"
           ========================================================= */
        .sticky-region {
            position: relative;
            overflow: hidden;
        }
        .sr-container {
            display: grid;
            grid-template-columns: minmax(0, 1fr) var(--form-w);
            gap: 48px;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
            align-items: start;
        }
        .sr-content {
            min-width: 0;
        }

        /* ── FORM COLUMN: sticky sidebar wrapper keeps the card in view ── */
        .sr-form {
            position: relative;
            top: auto;
            align-self: start;
            z-index: 10;
            width: 100%;
            padding-right: 4px;
            animation: srFadeIn .6s var(--ease) both;
        }
        .sr-form.is-fixed {
            position: fixed;
            top: var(--sr-pin-top, 130px);
            left: var(--sr-pin-left, auto);
            width: var(--sr-pin-width, var(--form-w));
            height: max-content;
            max-height: none;
            overflow: visible;
            overscroll-behavior: contain;
        }
        .sr-form.is-bottom {
            position: absolute;
            top: var(--sr-bottom-top, auto);
            left: var(--sr-pin-left, auto);
            width: var(--sr-pin-width, var(--form-w));
            height: max-content;
            max-height: none;
            overflow: visible;
            z-index: 1;
        }
        .enroll-card {
            position: relative;
            width: 100%;
        }
        @keyframes srFadeIn {
            from {
                opacity: 0;
                transform: translateY(8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .sr-block {
            padding: 80px 0;
            position: relative;
        }
        .sr-block+.sr-block {
            padding-top: 60px;
        }
        .sr-block-head {
            margin-bottom: 40px;
        }
        .sr-block-head h2 {
            font-size: clamp(28px, 3.2vw, 40px);
            font-weight: 800;
            letter-spacing: -.03em;
        }
        .sr-block-head p {
            color: var(--text-light);
            margin-top: 10px;
            font-size: 15.5px;
            max-width: 560px;
            line-height: 1.7;
        }

        /* Large screens: JS pins this column inside Audience through Your Coach */
        @media (min-width:1100px) {
            .sr-form {
                height: max-content;
                max-height: calc(100svh - 160px);
                overflow-y: auto;
                overscroll-behavior: contain;
            }
        }

        /* Tablet/mobile: remove sticky, flow naturally */
        @media (max-width:1099px) {
            .sr-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .sr-form {
                position: relative;
                top: auto;
                max-height: none;
                overflow: visible;
                animation: none;
            }
            .enroll-card {
                position: relative;
                top: auto;
            }
        }

        @media (max-width:768px) {
            .sr-container {
                padding: 0 16px;
            }
            .sr-block {
                padding: 56px 0;
            }
        }

        /* =========================================================
           Interactive enroll form — compact
           ========================================================= */
        .enroll-card {
            background: linear-gradient(180deg, #FFFFFF 0%, #FBFEFC 100%);
            border-radius: var(--r-2xl);
            padding: 12px;
            box-shadow: var(--shadow);
            overflow: hidden;
            position: relative;
            transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
        }
        .enroll-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .enroll-card::before {
            content: "";
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(14, 138, 95, .08), transparent 70%);
            top: -100px;
            right: -100px;
            pointer-events: none;
        }
        .enroll-head {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 0 4px;
            position: relative;
        }
        .enroll-head-info {
            flex: 1;
            text-align: center;
            min-width: 0;
        }
        .enroll-head-info .row-meta .star {
            color: #F59E0B;
            vertical-align: -1px;
        }
        .enroll-head .sq {
            width: 50px;
            height: 50px;
            border-radius: 16px;
            background: linear-gradient(135deg, #0E8A5F, #22A37A);
            color: #fff;
            display: grid;
            place-items: center;
            flex-shrink: 0;
            box-shadow: 0 12px 32px rgba(14, 138, 95, .35);
            transition: transform var(--t) var(--ease-bounce);
            margin-top: 2px;
        }
        .enroll-head .sq:hover {
            transform: rotate(-8deg) scale(1.1);
        }
        .enroll-head .sq svg {
            width: 28px;
            height: 28px;
        }
        .enroll-head h3 {
            font-size: 16px;
            font-weight: 800;
            letter-spacing: -.01em;
            text-align: left;
        }
        .enroll-head .row-meta {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-top: 3px;
            font-size: 12px;
            color: var(--text-light);
            flex-wrap: wrap;
        }
        .enroll-head .row-meta .enroll-start-badge {
            margin-left: auto;
            margin-top: 0;
        }
        @media (max-width:500px) {
            .enroll-head {
                flex-direction: column;
                text-align: center;
                align-items: center;
                gap: 8px;
                padding: 0;
            }
            .enroll-head h3 {
                text-align: center;
            }
            .enroll-head .row-meta {
                justify-content: center;
            }
            .enroll-head .row-meta .enroll-start-badge {
                margin-left: 0;
            }
            .enroll-head .sq {
                margin-top: 0;
            }
        }

        .form-progress {
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 8px 0 3px;
            position: relative;
        }
        .form-progress .step {
            flex: 1;
            height: 6px;
            border-radius: 99px;
            background: var(--border-soft);
            transition: all var(--t) var(--ease);
            position: relative;
            overflow: hidden;
        }
        .form-progress .step.active {
            background: linear-gradient(90deg, var(--primary), var(--primary-2));
        }
        .form-progress .step.done {
            background: var(--primary-2);
        }
        .form-progress .labels {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            color: var(--text-light);
            letter-spacing: .04em;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .form-progress .labels span.active {
            color: var(--primary);
            font-weight: 700;
        }

        .form-step {
            display: none;
            animation: fadeUp .4s var(--ease);
        }
        .form-step.active {
            display: block;
        }
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* =========================================================
           Pricing cards (selectable, sits above form)
           ========================================================= */
        .pricing-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px;
            margin-top: 8px;
            position: relative;
        }
        .price-card {
            position: relative;
            padding: 8px 8px 6px;
            border-radius: 12px;
            background: #F8FAFC;
            border: 1.5px solid transparent;
            cursor: pointer;
            transition: transform var(--t-fast) var(--ease-bounce), background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .price-card:hover {
            transform: translateY(-3px);
            background: #fff;
            border-color: var(--primary-soft-2);
        }
        .price-card input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }
        .price-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 6px;
        }
        .price-card-mode {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 700;
            color: var(--text-soft);
            letter-spacing: .04em;
            text-transform: uppercase;
        }
        .price-card-mode svg {
            color: var(--primary);
        }
        .price-card-check {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid var(--border);
            display: grid;
            place-items: center;
            color: #fff;
            transition: all var(--t-fast) var(--ease);
            flex-shrink: 0;
        }
        .price-card-check svg {
            width: 8px;
            height: 8px;
            opacity: 0;
            transition: all var(--t-fast) var(--ease);
        }
        .price-card.selected {
            background: linear-gradient(180deg, #fff 0%, #F0FDF4 100%);
            border-color: var(--primary);
            box-shadow: 0 8px 18px rgba(14, 138, 95, .16);
            transform: translateY(-1px);
        }
        .price-card.selected .price-card-check {
            background: var(--primary);
            border-color: var(--primary);
        }
        .price-card.selected .price-card-check svg {
            opacity: 1;
        }
        .price-card.is-changed {
            animation: cardPulse .45s var(--ease-bounce);
        }
        @keyframes cardPulse {
            0% {
                transform: translateY(0) scale(1);
            }
            40% {
                transform: translateY(-4px) scale(1.02);
            }
            100% {
                transform: translateY(-1px) scale(1);
            }
        }
        .price-card-amt {
            display: flex;
            align-items: baseline;
            gap: 4px;
            flex-wrap: wrap;
        }
        .price-card-now {
            font-family: 'Poppins';
            font-weight: 800;
            font-size: 17px;
            color: var(--primary);
            letter-spacing: -.01em;
            transition: color var(--t-fast) var(--ease);
        }
        .price-card-sub {
            font-size: 9px;
            color: var(--text-light);
            line-height: 1.2;
            margin: 0;
            display: none;
        }

        .price-card-time {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 8px;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(14, 138, 95, .08), rgba(14, 138, 95, .04));
            border: 1px solid rgba(14, 138, 95, .15);
            font-size: 11px;
            font-weight: 700;
            color: var(--primary-dark);
            letter-spacing: .02em;
            width: fit-content;
            transition: all var(--t-fast) var(--ease);
        }
        .price-card-time svg {
            color: var(--primary);
            flex-shrink: 0;
        }
        .price-card.selected .price-card-time {
            background: linear-gradient(135deg, rgba(14, 138, 95, .14), rgba(14, 138, 95, .08));
            border-color: rgba(14, 138, 95, .28);
            box-shadow: 0 2px 8px rgba(14, 138, 95, .1);
        }
        @media (max-width:380px) {
            .pricing-cards {
                grid-template-columns: 1fr;
            }
            .price-card-sub {
                font-size: 11px;
            }
        }

        /* =========================================================
           Summary card (step 2 confirm)
           ========================================================= */
        .summary-card {
            margin-top: 4px;
            padding: 8px 8px 2px;
            border-radius: 14px;
            background: linear-gradient(180deg, #F0FDF4 0%, #ECFDF5 100%);
            border: 1px solid var(--primary-soft-2);
        }
        .summary-card h4 {
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .01em;
            color: var(--text);
            margin-bottom: 4px;
            text-transform: uppercase;
        }
        .summary-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .summary-card li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            padding: 2px 0;
            border-bottom: 1px dashed rgba(14, 138, 95, .18);
        }
        .summary-card li:last-child {
            border-bottom: 0;
        }
        .summary-card li span {
            color: var(--text-light);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: .04em;
            font-size: 11px;
        }
        .summary-card li strong {
            color: var(--text);
            font-weight: 700;
            text-align: right;
            word-break: break-word;
            font-size: 14px;
            transition: color var(--t-fast) var(--ease);
        }
        .summary-card li strong.is-updated {
            animation: sumPulse .5s var(--ease-bounce);
        }
        @keyframes sumPulse {
            0% {
                color: var(--text);
                transform: scale(1);
            }
            40% {
                color: var(--primary);
                transform: scale(1.04);
            }
            100% {
                color: var(--text);
                transform: scale(1);
            }
        }
        .summary-card li.sum-total strong.is-updated {
            animation: sumPulseTotal .5s var(--ease-bounce);
        }
        @keyframes sumPulseTotal {
            0% {
                transform: scale(1);
            }
            40% {
                transform: scale(1.06);
            }
            100% {
                transform: scale(1);
            }
        }
        .summary-card li.sum-total {
            margin-top: 4px;
            padding-top: 8px;
            border-top: 1.5px solid var(--primary);
            border-bottom: 0;
        }
        .summary-card li.sum-pricing span {
            color: var(--text-mute);
            text-transform: none;
            letter-spacing: .02em;
            font-size: 12px;
            font-weight: 600;
        }
        .summary-card li.sum-pricing strong {
            font-weight: 600;
            color: var(--text-light);
            font-family: 'Poppins';
        }
        .summary-card li.sum-pricing {
            padding: 2px 0;
            border-bottom: 0;
        }
        .summary-card li.sum-total span {
            color: var(--primary);
            font-weight: 700;
        }
        .summary-card li.sum-total strong {
            color: var(--primary);
            font-family: 'Poppins';
            font-size: 16px;
            font-weight: 800;
        }

        .field {
            margin-top: 6px;
            position: relative;
        }
        .field label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            color: var(--text-light);
            letter-spacing: .04em;
            text-transform: uppercase;
            margin-bottom: 4px;
        }
        .field input,
        .field select {
            width: 100%;
            padding: 9px 11px;
            border-radius: 10px;
            background: #F8FAFC;
            border: 1.5px solid transparent;
            font-size: 13px;
            color: var(--text);
            outline: none;
            transition: background var(--t-fast) var(--ease),
                border-color var(--t-fast) var(--ease),
                box-shadow var(--t-fast) var(--ease),
                transform var(--t-fast) var(--ease);
        }
        .field input:hover,
        .field select:hover {
            background: #fff;
            border-color: var(--border-soft);
        }
        .field input:focus,
        .field select:focus {
            background: #fff;
            border-color: var(--primary);
            box-shadow: var(--ring);
            transform: scale(1.005);
        }
        .field input::placeholder {
            color: var(--text-mute);
        }
        .field input.has-error,
        .field select.has-error {
            background: #FEF2F2;
            border-color: #EF4444;
            box-shadow: 0 0 0 4px rgba(239, 68, 68, .12);
        }
        .phone-input-wrapper {
            display: flex;
            align-items: center;
            background: #F8FAFC;
            border-radius: 12px;
            border: 1.5px solid transparent;
            transition: background var(--t-fast) var(--ease),
                border-color var(--t-fast) var(--ease),
                box-shadow var(--t-fast) var(--ease);
        }
        .phone-input-wrapper:hover {
            background: #fff;
            border-color: var(--border-soft);
        }
        .phone-input-wrapper:focus-within {
            background: #fff;
            border-color: var(--primary);
            box-shadow: var(--ring);
        }
        .phone-input-wrapper:has(input.has-error) {
            background: #FEF2F2;
            border-color: #EF4444;
            box-shadow: 0 0 0 4px rgba(239, 68, 68, .12);
        }
        .phone-prefix {
            padding: 9px 0 9px 11px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
            white-space: nowrap;
            user-select: none;
        }
        .phone-input-wrapper input {
            border: none !important;
            background: transparent !important;
            box-shadow: none !important;
            border-radius: 0 !important;
            padding-left: 4px;
        }
        .phone-input-wrapper input:focus {
            border: none !important;
            box-shadow: none !important;
            transform: none !important;
        }
            animation: fieldShake .35s var(--ease);
        }
        @keyframes fieldShake {
            0%,
            100% {
                transform: translateX(0);
            }
            25% {
                transform: translateX(-4px);
            }
            50% {
                transform: translateX(4px);
            }
            75% {
                transform: translateX(-2px);
            }
        }

        .form-actions {
            display: flex;
            gap: 6px;
            margin-top: 6px;
        }
        .form-actions .btn {
            flex: 1;
            padding: 8px 11px;
            font-size: 12px;
        }
        .form-actions .btn:disabled {
            opacity: .55;
            cursor: not-allowed;
            transform: none;
        }
        .btn.btn-back {
            background: #F1F5F9;
            color: var(--text);
            border: 0;
            box-shadow: none;
        }
        .btn.btn-back:hover {
            background: #E2E8F0;
            transform: translateY(-1px);
            box-shadow: var(--shadow-xs);
        }
        .form-step .note {
            font-size: 11px;
            color: var(--text-mute);
            margin-top: 6px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }
        .form-step .note svg {
            width: 12px;
            height: 12px;
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 16px 8px;
            animation: fadeUp .6s var(--ease);
        }
        .form-success.active {
            display: block;
        }
        .form-success .check-big {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-2));
            color: #fff;
            display: grid;
            place-items: center;
            margin: 0 auto 14px;
            box-shadow: 0 20px 40px rgba(14, 138, 95, .3);
            animation: pop .6s var(--ease-bounce);
        }
        .form-success .check-big svg {
            width: 28px;
            height: 28px;
        }
        .form-success h4 {
            font-size: 19px;
            font-weight: 800;
            letter-spacing: -.01em;
        }
        .form-success p {
            color: var(--text-light);
            font-size: 13px;
            margin-top: 6px;
            line-height: 1.5;
        }
        .form-success .btn-submit-another {
            margin-top: 14px;
        }
        .sr-side-card {
            margin-top: 14px;
            border-radius: var(--r-2xl);
        }
        .sr-side-card-cta {
            margin-top: 12px;
            width: 100%;
        }
        @keyframes pop {
            0% {
                transform: scale(0);
            }
            80% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* =========================================================
           Who is this for
           ========================================================= */
        .who-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
            margin-top: 32px;
        }
        @media (max-width:760px) {
            .who-grid {
                grid-template-columns: 1fr;
            }
        }
        .who-card {
            display: grid;
            grid-template-columns: 72px 1fr;
            gap: 16px;
            align-items: start;
            padding: 22px;
            background: #fff;
            border-radius: var(--r-lg);
            border: 1.5px solid transparent;
            box-shadow: var(--shadow-xs);
            transition: all .35s var(--ease);
            position: relative;
            overflow: hidden;
            cursor: default;
        }
        .who-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: linear-gradient(135deg, rgba(14,138,95,.04), rgba(16,185,129,.02));
            opacity: 0;
            transition: opacity .35s var(--ease);
        }
        .who-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 32px rgba(14,138,95,.12), 0 0 0 1px rgba(14,138,95,.08);
            border-color: rgba(14,138,95,.15);
        }
        .who-card:hover::before {
            opacity: 1;
        }
        .who-card .pic {
            width: 72px;
            height: 72px;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, var(--primary-soft), #D6EEE2);
            display: grid;
            place-items: center;
            transition: transform .4s var(--ease-bounce), box-shadow .35s var(--ease);
            z-index: 1;
        }
        .who-card:hover .pic {
            transform: rotate(-6deg) scale(1.06);
            box-shadow: 0 4px 14px rgba(14,138,95,.18);
        }
        .who-card .pic .pic-emoji {
            font-size: 36px;
            display: grid;
            place-items: center;
            width: 100%;
            height: 100%;
            color: var(--primary);
        }
        .who-card .pic .pic-emoji svg {
            width: 36px;
            height: 36px;
            transition: transform .35s var(--ease);
        }
        .who-card:hover .pic .pic-emoji svg {
            transform: scale(1.1);
        }
        .who-card h4 {
            font-size: 17px;
            font-weight: 700;
            position: relative;
            z-index: 1;
            transition: color .3s var(--ease);
        }
        .who-card:hover h4 {
            color: var(--primary);
        }
        .who-card p {
            color: var(--text-light);
            font-size: 14px;
            margin-top: 5px;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        /* =========================================================
           8 Services Grid
           ========================================================= */
        /* =========================================================
           Course Modules — Day-wise card layout
           ========================================================= */
        .day-block {
            position: relative;
            margin-top: 40px;
            padding: 28px;
            background: #fff;
            border-radius: 20px;
            border: 1px solid var(--border-soft);
            transition: box-shadow .3s var(--ease);
        }
        .day-block:hover {
            box-shadow: 0 8px 30px rgba(0,0,0,.06);
        }
        .day-header {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 20px;
            padding-bottom: 18px;
            border-bottom: 2px solid var(--primary-soft);
        }
        .day-badge {
            flex-shrink: 0;
            padding: 8px 16px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--primary-2));
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 13px;
            letter-spacing: .04em;
            box-shadow: 0 4px 12px rgba(14,138,95,.25);
        }
        .day-time {
            position: absolute;
            top: 16px;
            right: 16px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--primary), var(--primary-2));
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: .03em;
            z-index: 2;
            cursor: default;
            transition: all .3s var(--ease);
            box-shadow: 0 3px 12px rgba(14, 138, 95, 0.3);
        }
        .day-time svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            transition: transform .3s var(--ease);
        }
        .day-time:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 6px 20px rgba(14, 138, 95, 0.4);
        }
        .day-time:hover svg {
            transform: rotate(-15deg) scale(1.1);
        }
        .day-title {
            font-size: clamp(17px, 2vw, 21px);
            font-weight: 800;
            color: var(--text);
            line-height: 1.25;
            margin: 0;
        }
        .day-objective {
            font-size: 13.5px;
            color: var(--text-light);
            margin: 4px 0 0;
            line-height: 1.5;
        }
        .day-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        @media (max-width:700px) {
            .day-grid {
                grid-template-columns: 1fr;
            }
            .day-block {
                padding: 20px 16px;
            }
            .day-header {
                flex-direction: column;
                gap: 10px;
            }
            .day-time {
                top: 12px;
                right: 12px;
                padding: 6px 12px;
                font-size: 11px;
                gap: 4px;
            }
            .day-time svg {
                width: 13px;
                height: 13px;
            }
        }

        /* Module cards */
        .module-card {
            padding: 20px;
            background: linear-gradient(180deg, #f8fffe 0%, #f0faf4 100%);
            border-radius: 14px;
            border: 1px solid rgba(14,138,95,.08);
            transition: all .3s var(--ease);
            position: relative;
            overflow: hidden;
        }
        .module-card::before {
            content: "";
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(14,138,95,.06), transparent 70%);
            top: -20px;
            right: -20px;
            transition: transform .4s var(--ease);
        }
        .module-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(14,138,95,.1);
            border-color: rgba(14,138,95,.15);
        }
        .module-card:hover::before {
            transform: scale(2);
        }
        .module-num {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 12px;
            color: var(--primary);
            letter-spacing: .06em;
            margin-bottom: 8px;
            opacity: .7;
        }
        .module-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--primary), var(--primary-2));
            color: #fff;
            display: grid;
            place-items: center;
            margin-bottom: 10px;
            box-shadow: 0 4px 12px rgba(14,138,95,.2);
            transition: transform .3s var(--ease-bounce);
        }
        .module-card:hover .module-icon {
            transform: rotate(-8deg) scale(1.08);
        }
        .module-card h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text);
            margin: 0 0 8px;
            line-height: 1.3;
        }
        .module-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .module-card li {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.45;
            display: flex;
            gap: 7px;
            align-items: flex-start;
        }
        .module-card li::before {
            content: "";
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--primary);
            flex-shrink: 0;
            margin-top: 6px;
            opacity: .6;
        }
        .module-card p {
            font-size: 13.5px;
            color: var(--text-light);
            margin: 0;
            line-height: 1.55;
        }

        /* Activity / Homework cards */
        .module-activity {
            background: linear-gradient(135deg, rgba(14,138,95,.04), rgba(14,138,95,.08));
            border: 1px dashed rgba(14,138,95,.2);
        }
        .module-full {
            grid-column: 1 / -1;
        }

        /* Graduation card */
        .module-grad {
            background: linear-gradient(135deg, var(--primary), var(--primary-2));
            border: none;
            color: #fff;
        }
        .module-grad h4,
        .module-grad p {
            color: #fff;
        }
        .module-grad .module-icon {
            background: rgba(255,255,255,.2);
            box-shadow: none;
        }
        .scope-summary-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
            margin-top: 34px;
        }
        @media (max-width:760px) {
            .scope-summary-grid {
                grid-template-columns: 1fr;
            }
        }
        .scope-panel {
            background: #fff;
            border: 1px solid var(--border-soft);
            border-radius: var(--r-lg);
            padding: 22px;
            box-shadow: var(--shadow-xs);
        }
        .scope-panel h4 {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 12px;
        }
        .scope-panel h4 svg {
            width: 18px;
            height: 18px;
            color: var(--primary);
        }
        .scope-panel ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 9px;
        }
        .scope-panel li {
            color: var(--text-light);
            font-size: 13.5px;
            line-height: 1.5;
            display: flex;
            gap: 9px;
            align-items: flex-start;
        }
        .scope-panel li svg {
            width: 15px;
            height: 15px;
            color: var(--primary);
            flex-shrink: 0;
            margin-top: 3px;
        }
        .strategy-stack {
            margin-top: 34px;
            display: grid;
            gap: 16px;
        }
        .strategy-card {
            background: #fff;
            border: 1px solid var(--border-soft);
            border-radius: var(--r-lg);
            padding: 24px;
            box-shadow: var(--shadow-xs);
        }
        .strategy-card h4 {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .strategy-card h4 svg {
            width: 18px;
            height: 18px;
            color: var(--primary);
        }
        .strategy-card p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.65;
        }
        .strategy-card .statement {
            margin-top: 12px;
            padding: 14px 16px;
            border-radius: 14px;
            background: var(--primary-soft);
            color: var(--primary-dark);
            font-weight: 700;
            line-height: 1.55;
        }
        .strategy-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            margin-top: 16px;
        }
        @media (max-width:980px) {
            .strategy-grid {
                grid-template-columns: 1fr;
            }
        }
        .strategy-mini {
            border: 1px solid var(--border-soft);
            border-radius: 16px;
            padding: 16px;
            background: #FBFEFC;
        }
        .strategy-mini strong {
            display: block;
            color: var(--text);
            font-size: 14px;
            margin-bottom: 6px;
        }
        .strategy-mini span {
            color: var(--text-light);
            font-size: 13px;
            line-height: 1.55;
        }
        .duration-plan {
            margin-top: 34px;
            background: linear-gradient(180deg, #FFFFFF 0%, #F4FBF7 100%);
            border: 1px solid var(--border-soft);
            border-radius: var(--r-lg);
            padding: 22px;
            box-shadow: var(--shadow-xs);
        }
        .duration-plan h4 {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 17px;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .duration-plan h4 svg {
            width: 18px;
            height: 18px;
            color: var(--primary);
        }
        .day-plan {
            display: grid;
            grid-template-columns: repeat(7, minmax(120px, 1fr));
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 4px;
        }
        .day-card {
            min-height: 110px;
            border-radius: 14px;
            background: #fff;
            border: 1px solid var(--border-soft);
            padding: 13px;
        }
        .day-card strong {
            color: var(--primary);
            font-size: 12px;
            letter-spacing: .05em;
            text-transform: uppercase;
        }
        .day-card span {
            display: block;
            margin-top: 8px;
            color: var(--text-soft);
            font-size: 13px;
            font-weight: 700;
            line-height: 1.35;
        }

        /* =========================================================
           Modules Accordion
           ========================================================= */
        .module-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            gap: 32px;
            align-items: start;
        }
        @media (max-width:960px) {
            .module-layout {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .modules-col {
            max-width: 560px;
        }
        .module-side {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .module-side-card {
            background: #fff;
            border-radius: var(--r-lg);
            padding: 24px;
            box-shadow: var(--shadow-xs);
            position: relative;
            overflow: hidden;
            transition: all var(--t) var(--ease);
        }
        .module-side-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }
        .module-side-card.dark {
            background: linear-gradient(135deg, #0E8A5F 0%, #0A6B49 100%);
            color: #fff;
        }
        .module-side-card h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .module-side-card h4 .emoji {
            font-size: 18px;
            display: inline-flex;
        }
        .module-side-card h4 .emoji svg {
            width: 18px;
            height: 18px;
        }
        .module-side-card.dark h4 {
            color: #fff;
        }
        .module-side-card p {
            font-size: 13.5px;
            line-height: 1.6;
            color: var(--text-light);
        }
        .module-side-card.dark p {
            color: rgba(255, 255, 255, .85);
        }
        .module-side-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .module-side-card li {
            font-size: 13.5px;
            color: var(--text-light);
            display: flex;
            gap: 8px;
            align-items: flex-start;
        }
        .module-side-card.dark li {
            color: rgba(255, 255, 255, .9);
        }
        .module-side-card li .check-i {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--primary-soft);
            color: var(--primary);
            display: grid;
            place-items: center;
            flex-shrink: 0;
            margin-top: 2px;
            font-size: 10px;
        }
        .module-side-card li .check-i svg {
            width: 10px;
            height: 10px;
        }
        .module-side-card.dark li .check-i {
            background: rgba(255, 255, 255, .18);
            color: #fff;
        }

        .accordion {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .acc-item {
            background: #fff;
            border-radius: var(--r-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xs);
            transition: all var(--t) var(--ease);
        }
        .acc-item.open {
            box-shadow: var(--shadow);
            transform: scale(1.005);
        }
        .acc-head {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 18px 20px;
            cursor: pointer;
            user-select: none;
        }
        .acc-head .acc-num {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: var(--primary-soft);
            color: var(--primary);
            display: grid;
            place-items: center;
            font-weight: 800;
            font-family: 'Poppins';
            font-size: 15px;
            flex-shrink: 0;
            transition: all var(--t) var(--ease);
        }
        .acc-item.open .acc-num {
            background: var(--primary);
            color: #fff;
            transform: scale(1.06) rotate(-6deg);
        }
        .acc-head .acc-content {
            flex: 1;
            min-width: 0;
        }
        .acc-head h4 {
            font-size: 16px;
            font-weight: 700;
            letter-spacing: -.01em;
        }
        .acc-head .meta {
            display: flex;
            gap: 8px;
            color: var(--text-light);
            font-size: 12px;
            margin-top: 3px;
            flex-wrap: wrap;
        }
        .acc-head .meta .pill {
            padding: 2px 10px;
            border-radius: 99px;
            background: var(--primary-soft);
            color: var(--primary);
            font-size: 11.5px;
            font-weight: 600;
        }
        .acc-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--primary-soft);
            color: var(--primary);
            display: grid;
            place-items: center;
            flex-shrink: 0;
            transition: transform var(--t) var(--ease);
        }
        .acc-icon svg {
            width: 14px;
            height: 14px;
        }
        .acc-item.open .acc-icon {
            transform: rotate(45deg);
            background: var(--primary);
            color: #fff;
        }
        .acc-body {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            padding: 0 20px;
            transition: max-height .5s var(--ease), opacity .35s var(--ease), padding .35s var(--ease);
        }
        .acc-item.open .acc-body {
            max-height: 800px;
            opacity: 1;
            padding: 0 20px 20px;
        }
        .acc-body ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
        }
        .acc-body li {
            display: flex;
            gap: 8px;
            align-items: flex-start;
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.5;
        }
        .acc-body li svg {
            width: 14px;
            height: 14px;
            color: var(--primary);
            flex-shrink: 0;
            margin-top: 3px;
        }
        .acc-body .acc-foot {
            margin-top: 12px;
            padding: 10px 14px;
            border-radius: 10px;
            background: var(--primary-soft);
            color: var(--primary);
            font-size: 12.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .acc-body .acc-foot svg {
            width: 14px;
            height: 14px;
            color: var(--primary);
        }

        /* =========================================================
           Career Coaches — snip0056 style card
           ========================================================= */
        .mentor-wrapper {
            max-width: 760px;
            margin: 0 auto;
        }
        figure.snip0056 {
            font-family: 'Inter', 'Poppins', 'Raleway', Arial, sans-serif;
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: minmax(360px, 1.05fr) minmax(240px, 0.95fr);
            align-items: center;
            gap: 0;
            margin: 20px 0;
            min-width: 320px;
            max-width: 820px;
            width: 100%;
            background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
            color: #0f172a;
            border-radius: var(--r-lg);
            box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
            transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
        }
        figure.snip0056::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 0;
            background: transparent;
        }
        figure.snip0056::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: 0;
            width: 0;
            height: 0;
            background: transparent;
            border-radius: 0;
        }
        figure.snip0056:hover {
            transform: scale(1.04) translateY(-8px);
            box-shadow: 0 32px 90px rgba(15, 23, 42, 0.18);
        }
        figure.snip0056 * {
            box-sizing: border-box;
        }
        figure.snip0056 > img {
            width: 94%;
            max-width: 320px;
            border-radius: 0;
            border: none;
            transition: all 0.45s ease-in-out;
            transform: scale(1.3);
            grid-column: 2;
            grid-row: 1;
            justify-self: center;
            margin-left: -70px;
            z-index: 1;
            box-shadow: none;
            object-fit: contain;
            background: transparent;
        }
        figure.snip0056 figcaption {
            padding: 34px 20px 20px 24px;
            position: relative;
            width: auto;
            grid-column: 1;
            grid-row: 1;
            z-index: 2;
            align-self: start;
        }
        figure.snip0056 figcaption h2,
        figure.snip0056 figcaption p {
            margin: 0;
            text-align: left;
            padding: 8px 0;
            width: 100%;
            font-size: 1em;
        }
        figure.snip0056 figcaption h2 {
            font-size: 1.5em;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #0f172a;
            border-bottom: 1px solid rgba(15, 23, 42, 0.12);
            padding-bottom: 10px;
        }
        figure.snip0056 figcaption h2 span {
            font-weight: 900;
            color: var(--primary);
        }
        figure.snip0056 figcaption .role-tag {
            font-size: 0.95em;
            font-weight: 700;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 999px;
            padding: 10px 14px;
            margin-top: 14px;
        }
        figure.snip0056 figcaption .role-tag svg {
            width: 14px;
            height: 14px;
        }
        figure.snip0056 figcaption p {
            font-size: 1em;
            opacity: 0.94;
            line-height: 1.75;
            padding: 12px 0 0;
            color: rgba(15, 23, 42, 0.86);
        }
        figure.snip0056 figcaption .meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            padding: 12px 0 0;
        }
        figure.snip0056 figcaption .meta-row .m {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 12px;
            border-radius: 99px;
            background: rgba(16, 185, 129, 0.10);
            color: var(--primary);
            font-size: 11px;
            font-weight: 700;
            border: 1px solid rgba(16, 185, 129, 0.08);
            transition: all .3s var(--ease);
            cursor: default;
            position: relative;
            overflow: hidden;
        }
        figure.snip0056 figcaption .meta-row .m::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(14, 138, 95, 0.08));
            opacity: 0;
            transition: opacity .3s var(--ease);
            border-radius: inherit;
        }
        figure.snip0056 figcaption .meta-row .m:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 4px 14px rgba(14, 138, 95, 0.18);
            border-color: rgba(16, 185, 129, 0.25);
            background: rgba(16, 185, 129, 0.16);
        }
        figure.snip0056 figcaption .meta-row .m:hover::before {
            opacity: 1;
        }
        figure.snip0056 figcaption .meta-row .m svg {
            width: 12px;
            height: 12px;
            position: relative;
            z-index: 1;
            transition: transform .3s var(--ease);
        }
        figure.snip0056 figcaption .meta-row .m:hover svg {
            transform: scale(1.15) rotate(-5deg);
        }
        figure.snip0056 figcaption .meta-row .m span,
        figure.snip0056 figcaption .meta-row .m {
            position: relative;
            z-index: 1;
        }

        /* ---- Highlight variant for new stats ---- */
        figure.snip0056 figcaption .meta-row .m.highlight {
            background: linear-gradient(135deg, rgba(14, 138, 95, 0.12), rgba(16, 185, 129, 0.18));
            border-color: rgba(16, 185, 129, 0.18);
            color: var(--primary-dark);
        }
        figure.snip0056 figcaption .meta-row .m.highlight:hover {
            background: linear-gradient(135deg, rgba(14, 138, 95, 0.22), rgba(16, 185, 129, 0.28));
            box-shadow: 0 4px 18px rgba(14, 138, 95, 0.22);
        }
        figure.snip0056 figcaption .meta-row .m.highlight svg {
            color: var(--primary);
        }

        /* ---- Staggered entrance animation ---- */
        @keyframes badgePop {
            0% { opacity: 0; transform: translateY(8px) scale(0.9); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }
        figure.snip0056 figcaption .meta-row .m {
            animation: badgePop .5s var(--ease) both;
        }
        figure.snip0056 figcaption .meta-row .m:nth-child(1) { animation-delay: .1s; }
        figure.snip0056 figcaption .meta-row .m:nth-child(2) { animation-delay: .2s; }
        figure.snip0056 figcaption .meta-row .m:nth-child(3) { animation-delay: .3s; }
        figure.snip0056 figcaption .meta-row .m:nth-child(4) { animation-delay: .4s; }
        figure.snip0056 figcaption .meta-row .m:nth-child(5) { animation-delay: .5s; }

        figure.snip0056 figcaption .icons {
            display: none;
        }
        figure.snip0056 figcaption .icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.14);
            color: var(--primary);
            transition: all var(--t) var(--ease);
            opacity: 0.95;
            box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.18);
        }
        figure.snip0056 figcaption .icons a:hover {
            opacity: 1;
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px) scale(1.08);
            box-shadow: 0 14px 25px rgba(16, 185, 129, 0.18);
        }
        figure.snip0056 figcaption .icons a svg {
            width: 14px;
            height: 14px;
        }
        figure.snip0056 .position {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 16px 28px;
            font-size: 0.95em;
            opacity: 1;
            font-style: italic;
            color: #ffffff;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
            grid-column: 1 / -1;
            grid-row: 2;
            position: relative;
            z-index: 2;
            border-bottom-left-radius: var(--r-lg);
            border-bottom-right-radius: var(--r-lg);
            margin: 0;
        }
        .position-text {
            flex: 1;
            min-width: 0;
        }
        .position-icons {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .position-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            transition: all var(--t) var(--ease);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
        }
        .position-icons a:hover {
            background: #fff;
            color: var(--primary);
            transform: translateY(-2px) scale(1.08);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
        }
        .position-icons a svg {
            width: 14px;
            height: 14px;
        }
        figure.snip0056:hover > img,
        figure.snip0056.hover > img {
            opacity: 0.95;
        }

        /* Responsive coach card */
        @media (max-width:760px) {
            figure.snip0056 {
                display: grid;
                grid-template-columns: minmax(220px, 1.2fr) minmax(180px, 0.8fr);
                gap: 0 18px;
                padding-bottom: 0;
                min-height: auto;
            }
            figure.snip0056 > img {
                width: 200px;
                max-width: 100%;
                margin: 0;
                transform: scale(1);
                grid-column: 2;
                grid-row: 1;
                justify-self: end;
                align-self: end;
                margin-right: -10px;
                float: none;
                right: 0;
                box-shadow: none;
                background: transparent;
                transition: all 0.4s var(--ease);
            }
            figure.snip0056 figcaption {
                width: auto;
                padding: 24px 20px 16px 20px;
                position: relative;
                grid-column: 1;
                grid-row: 1;
                margin-left: 0;
            }
            figure.snip0056 figcaption h2 {
                font-size: 1.24em;
            }
            figure.snip0056 figcaption p {
                display: none;
            }
            figure.snip0056 figcaption .meta-row {
                gap: 6px;
            }
            figure.snip0056 figcaption .meta-row .m {
                font-size: 9.5px;
                padding: 5px 9px;
                gap: 4px;
            }
            figure.snip0056 figcaption .meta-row .m svg {
                width: 10px;
                height: 10px;
            }
            figure.snip0056 figcaption .icons {
                display: none;
            }
            figure.snip0056 .position {
                padding: 14px 18px;
                font-size: 0.88em;
                gap: 10px;
            }
            .position-icons a {
                width: 32px;
                height: 32px;
            }
            .position-icons a svg {
                width: 13px;
                height: 13px;
            }
            figure.snip0056:hover > img,
            figure.snip0056.hover > img {
                transform: scale(1);
            }
        }
        @media (max-width: 640px) {
            figure.snip0056 > img {
                width: 160px;
                margin: 0;
                transform: scale(1);
                grid-column: 2;
                grid-row: 1;
                justify-self: center;
                margin-right: 0;
                transition: all 0.4s var(--ease);
            }
            figure.snip0056 figcaption {
                width: auto;
                padding: 20px 14px 16px 14px;
                margin-left: 0;
            }
            figure.snip0056 figcaption h2 {
                font-size: 1.18em;
            }
            figure.snip0056 figcaption p {
                font-size: 0.92em;
            }
            figure.snip0056 figcaption .icons {
                display: none;
            }
            figure.snip0056 .position {
                padding: 12px 16px;
                font-size: 0.86em;
            }
            figure.snip0056:hover > img,
            figure.snip0056.hover > img {
                transform: scale(1);
            }
        }
        /* =========================================================
           ENHANCED MOBILE RESPONSIVE — Coach Card Optimization
           All breakpoints: 1024px → 320px
           ========================================================= */

        /* 1024px — Small Laptop */
        @media (max-width: 1024px) {
            .mentor-wrapper {
                max-width: 720px;
            }
            figure.snip0056 {
                grid-template-columns: minmax(280px, 1fr) minmax(200px, 0.9fr);
                gap: 8px;
            }
            figure.snip0056 > img {
                width: 85%;
                max-width: 280px;
                margin-left: -20px;
            }
            figure.snip0056 figcaption {
                padding: 26px 16px 16px 20px;
            }
            figure.snip0056 figcaption h2 {
                font-size: 1.35em;
                padding-bottom: 8px;
            }
            figure.snip0056 figcaption .meta-row {
                gap: 6px;
            }
            figure.snip0056 figcaption .meta-row .m {
                font-size: 10px;
                padding: 6px 10px;
            }
        }

        /* 992px — Tablet Landscape */
        @media (max-width: 992px) {
            .mentor-wrapper {
                max-width: 660px;
                padding: 0 12px;
            }
            figure.snip0056 {
                grid-template-columns: 1.1fr 0.9fr;
                gap: 12px;
                margin: 24px 0;
                box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
            }
            figure.snip0056 > img {
                width: 82%;
                max-width: 260px;
                margin-left: -10px;
            }
            figure.snip0056 figcaption {
                padding: 24px 14px 14px 18px;
            }
            figure.snip0056 figcaption h2 {
                font-size: 1.32em;
                padding-bottom: 6px;
            }
            figure.snip0056 figcaption .role-tag {
                padding: 8px 12px;
                font-size: 0.92em;
                margin-top: 8px;
            }
            figure.snip0056 figcaption p {
                font-size: 0.95em;
                line-height: 1.65;
                margin-top: 8px;
            }
            figure.snip0056 figcaption .meta-row {
                gap: 5px;
                padding: 10px 0 0;
            }
            figure.snip0056 figcaption .meta-row .m {
                font-size: 9.5px;
                padding: 5px 9px;
            }
            figure.snip0056 .position {
                padding: 14px 18px;
                font-size: 0.88em;
            }
        }

        /* 768px — Tablet Portrait / Mobile Threshold */
        @media (max-width: 768px) {
            .mentor-wrapper {
                max-width: 100%;
                padding: 0;
                margin: 0 auto;
            }
            figure.snip0056 {
                display: grid;
                grid-template-columns: 1fr;
                grid-template-rows: auto auto auto auto;
                align-items: stretch;
                gap: 0;
                margin: 28px auto;
                width: 95%;
                max-width: 480px;
                padding: 24px;
                background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
                box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
                border-radius: 20px;
            }
            figure.snip0056::before,
            figure.snip0056::after {
                display: none;
            }
            figure.snip0056 > img {
                width: 75%;
                max-width: 320px;
                height: auto;
                margin: 0 auto 0;
                transform: scale(1);
                grid-column: 1;
                grid-row: 2;
                justify-self: center;
                align-self: end;
                object-fit: contain;
                order: 3;
                transition: margin 0.4s var(--ease);
            }
            figure.snip0056.hover > img {
                margin-bottom: 0;
            }
            figure.snip0056 figcaption {
                padding: 0;
                width: 100%;
                grid-column: 1;
                grid-row: 1;
                display: flex;
                flex-direction: column;
                gap: 10px;
                z-index: 2;
                order: 1;
            }
            figure.snip0056 figcaption h2 {
                font-size: clamp(28px, 6vw, 42px);
                font-weight: 800;
                text-align: center;
                text-transform: none;
                letter-spacing: -0.02em;
                border: none;
                padding: 0;
                margin: 0;
                color: #0f172a;
            }
            figure.snip0056 figcaption h2 span {
                font-weight: 900;
                color: var(--primary);
            }
            figure.snip0056 figcaption .role-tag {
                font-size: clamp(12px, 2.5vw, 14px);
                font-weight: 600;
                color: var(--primary);
                background: rgba(16, 185, 129, 0.08);
                border: 1px solid rgba(16, 185, 129, 0.12);
                border-radius: 999px;
                padding: 10px 16px;
                margin: 0;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                width: 100%;
                margin-bottom: 8px;
                order: 2;
            }
            figure.snip0056 figcaption .role-tag svg {
                width: 13px;
                height: 13px;
                flex-shrink: 0;
            }
            figure.snip0056 figcaption p {
                font-size: clamp(14px, 3.5vw, 16px);
                line-height: 1.65;
                text-align: center;
                color: rgba(15, 23, 42, 0.8);
                opacity: 1;
                padding: 0;
                margin: 8px 0 0 0;
                display: block;
                order: 3;
            }
            figure.snip0056 figcaption .meta-row {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 7px;
                padding: 12px 0 0 0;
                margin: 8px 0 0 0;
                width: 100%;
                order: 4;
            }
            figure.snip0056 figcaption .meta-row .m {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
                padding: 12px;
                border-radius: 12px;
                background: rgba(16, 185, 129, 0.08);
                color: var(--primary);
                font-size: 11px;
                font-weight: 700;
                border: 1px solid rgba(16, 185, 129, 0.12);
                text-align: center;
                flex-direction: column;
                min-height: 60px;
                transition: all 0.3s var(--ease);
            }
            figure.snip0056 figcaption .meta-row .m svg {
                width: 14px;
                height: 14px;
                margin-bottom: 2px;
            }
            figure.snip0056 figcaption .meta-row .m:nth-child(4),
            figure.snip0056 figcaption .meta-row .m:nth-child(5) {
                grid-column: 1 / -1;
            }
            figure.snip0056 figcaption .meta-row .m.highlight {
                background: linear-gradient(135deg, rgba(14, 138, 95, 0.1), rgba(16, 185, 129, 0.15));
                border-color: rgba(16, 185, 129, 0.15);
            }
            figure.snip0056 figcaption .meta-row .m:hover {
                transform: translateY(-2px);
                background: rgba(16, 185, 129, 0.14);
            }
            figure.snip0056 .position {
                width: calc(100% + 48px);
                margin: 0 -24px -24px -24px;
                padding: 16px 24px;
                font-size: 0.9em;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 10px;
                background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
                grid-column: 1;
                grid-row: 3;
                border-bottom-left-radius: 20px;
                border-bottom-right-radius: 20px;
                order: 5;
            }
            .position-text {
                font-size: clamp(12px, 2.5vw, 14px);
                font-style: italic;
                flex: 1;
            }
            .position-icons {
                gap: 10px;
                flex-shrink: 0;
            }
            .position-icons a {
                width: 36px;
                height: 36px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        /* 600px — Large Phone */
        @media (max-width: 600px) {
            .mentor-wrapper {
                max-width: 100%;
            }
            figure.snip0056 {
                width: 95%;
                max-width: 100%;
                padding: 20px;
                margin: 20px auto;
                border-radius: 18px;
            }
            figure.snip0056 > img {
                width: 70%;
                max-width: 280px;
                margin: 0 auto 0;
                transition: margin 0.4s var(--ease);
            }
            figure.snip0056.hover > img {
                margin-bottom: 0;
            }
            figure.snip0056 figcaption h2 {
                font-size: clamp(26px, 5.5vw, 36px);
                padding-bottom: 4px;
            }
            figure.snip0056 figcaption .role-tag {
                font-size: 12px;
                padding: 8px 12px;
                margin-bottom: 4px;
            }
            figure.snip0056 figcaption p {
                font-size: 14px;
                line-height: 1.6;
                margin-top: 4px;
            }
            figure.snip0056 figcaption .meta-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 7px;
                padding-top: 10px;
            }
            figure.snip0056 figcaption .meta-row .m {
                padding: 10px;
                font-size: 10px;
                min-height: 56px;
            }
            figure.snip0056 .position {
                width: calc(100% + 40px);
                margin: 0 -20px -20px -20px;
                padding: 16px 20px;
                border-radius: 0 0 18px 18px;
            }
            .position-text {
                font-size: 12px;
            }
        }

        /* 480px — Phone */
        @media (max-width: 480px) {
            .mentor-wrapper {
                width: 100%;
                padding: 0 8px;
            }
            figure.snip0056 {
                width: 100%;
                max-width: none;
                padding: 18px;
                margin: 18px 0;
                border-radius: 16px;
                box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
            }
            figure.snip0056 > img {
                width: 65%;
                max-width: 260px;
                margin: 0 auto 0;
                transition: margin 0.4s var(--ease);
            }
            figure.snip0056.hover > img {
                margin-bottom: 0;
            }
            figure.snip0056 figcaption {
                gap: 8px;
            }
            figure.snip0056 figcaption h2 {
                font-size: clamp(24px, 5vw, 32px);
                line-height: 1.15;
                padding-bottom: 0;
            }
            figure.snip0056 figcaption .role-tag {
                font-size: 11px;
                padding: 7px 10px;
                margin-bottom: 2px;
            }
            figure.snip0056 figcaption p {
                font-size: 13px;
                line-height: 1.55;
                margin-top: 2px;
            }
            figure.snip0056 figcaption .meta-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 6px;
                padding-top: 8px;
                margin-top: 8px;
            }
            figure.snip0056 figcaption .meta-row .m {
                padding: 9px;
                font-size: 9px;
                min-height: 52px;
                border-radius: 10px;
            }
            figure.snip0056 .position {
                width: calc(100% + 36px);
                margin: 0 -18px -18px -18px;
                padding: 12px 18px;
                border-radius: 0 0 16px 16px;
                font-size: 0.85em;
                gap: 8px;
            }
            .position-text {
                font-size: 11px;
            }
            .position-icons a {
                width: 32px;
                height: 32px;
            }
        }

        /* 430px — iPhone Pro Max */
        @media (max-width: 430px) {
            .mentor-wrapper {
                padding: 0 6px;
            }
            figure.snip0056 {
                width: 100%;
                padding: 16px;
                margin: 16px 0;
                border-radius: 16px;
            }
            figure.snip0056 > img {
                width: 62%;
                max-width: 240px;
                margin: 0 auto 0;
            }
            figure.snip0056 figcaption h2 {
                font-size: clamp(22px, 4.8vw, 30px);
                padding-bottom: 0;
            }
            figure.snip0056 figcaption .role-tag {
                font-size: 10px;
                padding: 6px 10px;
                margin-bottom: 2px;
            }
            figure.snip0056 figcaption p {
                font-size: 12.5px;
                margin-top: 2px;
            }
            figure.snip0056 figcaption .meta-row .m {
                font-size: 8.5px;
                padding: 7px;
                min-height: 48px;
            }
            figure.snip0056 .position {
                margin: 0 -16px -16px -16px;
                padding: 10px 16px;
                gap: 8px;
            }
        }

        /* 390px — iPhone 15 / Android */
        @media (max-width: 390px) {
            .mentor-wrapper {
                padding: 0;
                padding-left: env(safe-area-inset-left);
                padding-right: env(safe-area-inset-right);
            }
            figure.snip0056 {
                width: 100%;
                padding: 16px;
                margin: 14px 0;
                border-radius: 14px;
                box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
            }
            figure.snip0056 > img {
                width: 60%;
                max-width: 220px;
                margin: 0 auto 0;
            }
            figure.snip0056 figcaption h2 {
                font-size: clamp(21px, 4.5vw, 28px);
                padding-bottom: 0;
            }
            figure.snip0056 figcaption .role-tag {
                font-size: 9.5px;
                padding: 5px 9px;
                gap: 5px;
                margin-bottom: 2px;
            }
            figure.snip0056 figcaption p {
                font-size: 12px;
                line-height: 1.5;
                margin-top: 2px;
            }
            figure.snip0056 figcaption .meta-row {
                grid-template-columns: 1fr;
                gap: 5px;
                padding-top: 6px;
            }
            figure.snip0056 figcaption .meta-row .m {
                grid-column: 1;
                padding: 6px;
                font-size: 8px;
                min-height: 46px;
                gap: 3px;
            }
            figure.snip0056 .position {
                width: calc(100% + 32px);
                margin: 0 -16px -16px -16px;
                padding: 9px 16px;
                border-radius: 0 0 14px 14px;
                gap: 8px;
            }
            .position-text {
                font-size: 10px;
            }
            .position-icons a {
                width: 30px;
                height: 30px;
            }
            .position-icons a svg {
                width: 11px;
                height: 11px;
            }
        }

        /* 375px — Most iPhones */
        @media (max-width: 375px) {
            .mentor-wrapper {
                padding: 0;
            }
            figure.snip0056 {
                width: calc(100% - 12px);
                margin: 12px 6px;
                padding: 14px;
                border-radius: 13px;
                box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
            }
            figure.snip0056 > img {
                width: 58%;
                max-width: 200px;
                margin: 0 auto 0;
            }
            figure.snip0056 figcaption h2 {
                font-size: clamp(20px, 4.2vw, 26px);
                line-height: 1.2;
            }
            figure.snip0056 figcaption .role-tag {
                font-size: 9px;
                padding: 6px 9px;
            }
            figure.snip0056 figcaption p {
                font-size: 11.5px;
                line-height: 1.5;
            }
            figure.snip0056 figcaption .meta-row {
                gap: 6px;
                padding-top: 8px;
            }
            figure.snip0056 figcaption .meta-row .m {
                padding: 6px;
                font-size: 7.5px;
                min-height: 46px;
            }
            figure.snip0056 figcaption .meta-row .m svg {
                width: 12px;
                height: 12px;
            }
            figure.snip0056 .position {
                width: calc(100% + 28px);
                margin: 0 -14px -14px -14px;
                padding: 10px 14px;
                border-radius: 0 0 13px 13px;
            }
            .position-text {
                font-size: 9px;
            }
            .position-icons a {
                width: 28px;
                height: 28px;
            }
        }

        /* 360px — Most Android */
        @media (max-width: 360px) {
            .mentor-wrapper {
                padding: 0;
                padding-left: env(safe-area-inset-left);
                padding-right: env(safe-area-inset-right);
            }
            figure.snip0056 {
                width: 100%;
                margin: 10px 0;
                padding: 12px;
                border-radius: 12px;
                box-shadow: 0 3px 12px rgba(15, 23, 42, 0.05);
            }
            figure.snip0056 > img {
                width: 55%;
                max-width: 180px;
                margin: 0 auto 0;
            }
            figure.snip0056 figcaption h2 {
                font-size: clamp(18px, 4vw, 24px);
                line-height: 1.15;
                padding-bottom: 0;
            }
            figure.snip0056 figcaption .role-tag {
                font-size: 8.5px;
                padding: 4px 7px;
                margin-bottom: 2px;
            }
            figure.snip0056 figcaption p {
                font-size: 11px;
                margin-top: 2px;
            }
            figure.snip0056 figcaption .meta-row {
                gap: 4px;
                padding-top: 4px;
            }
            figure.snip0056 figcaption .meta-row .m {
                padding: 5px;
                font-size: 7px;
                min-height: 42px;
            }
            figure.snip0056 .position {
                width: calc(100% + 24px);
                margin: 0 -12px -12px -12px;
                padding: 8px 12px;
                border-radius: 0 0 12px 12px;
                font-size: 0.8em;
                gap: 6px;
            }
            .position-text {
                font-size: 8.5px;
            }
            .position-icons a {
                width: 26px;
                height: 26px;
            }
            .position-icons a svg {
                width: 10px;
                height: 10px;
            }
        }

        /* 320px — Smallest Phones */
        @media (max-width: 320px) {
            .mentor-wrapper {
                padding: 0;
                padding-left: env(safe-area-inset-left);
                padding-right: env(safe-area-inset-right);
            }
            figure.snip0056 {
                width: 100%;
                margin: 8px 0;
                padding: 10px;
                border-radius: 11px;
                box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
            }
            figure.snip0056 > img {
                width: 50%;
                max-width: 160px;
                margin: 0 auto 0;
            }
            figure.snip0056 figcaption {
                gap: 6px;
            }
            figure.snip0056 figcaption h2 {
                font-size: clamp(16px, 3.8vw, 22px);
                line-height: 1.1;
                padding-bottom: 0;
            }
            figure.snip0056 figcaption .role-tag {
                font-size: 8px;
                padding: 3px 6px;
                gap: 3px;
                margin-bottom: 2px;
            }
            figure.snip0056 figcaption p {
                font-size: 10px;
                margin-top: 2px;
                line-height: 1.4;
            }
            figure.snip0056 figcaption .meta-row {
                grid-template-columns: 1fr;
                gap: 5px;
                padding-top: 4px;
            }
            figure.snip0056 figcaption .meta-row .m {
                padding: 4px;
                font-size: 6.5px;
                min-height: 40px;
                gap: 2px;
            }
            figure.snip0056 figcaption .meta-row .m svg {
                width: 10px;
                height: 10px;
            }
            figure.snip0056 .position {
                width: calc(100% + 20px);
                margin: 0 -10px -10px -10px;
                padding: 8px 10px;
                border-radius: 0 0 11px 11px;
                gap: 6px;
            }
            .position-text {
                font-size: 8px;
            }
            .position-icons {
                gap: 6px;
            }
            .position-icons a {
                width: 24px;
                height: 24px;
            }
            .position-icons a svg {
                width: 9px;
                height: 9px;
            }
        }

        /* =========================================================
           Certification — simple image card
           ========================================================= */

        /* Certificate image card — clean, minimal, well-managed */
        .cert-img-wrap {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            min-width: 0;
        }
        .cert-img-frame {
            width: 100%;
            max-width: 480px;
            background: #fff;
            border-radius: 18px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 70px rgba(0, 0, 0, .4), 0 0 0 8px rgba(255, 255, 255, .1);
            transition: transform var(--t) var(--ease);
            display: flex;
            flex-direction: column;
        }
        .cert-img-frame:hover {
            transform: scale(1.01) rotate(-1deg);
        }
        .cert-img-frame img.cert-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 18px;
        }

        .cert-deco {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, .15);
            pointer-events: none;
            animation: floatY 6s ease-in-out infinite;
        }
        .cert-deco.d1 {
            width: 60px;
            height: 60px;
            top: 10px;
            left: -20px;
        }
        .cert-deco.d2 {
            width: 36px;
            height: 36px;
            bottom: 20px;
            right: -10px;
            background: rgba(255, 255, 255, .25);
            animation-delay: -2s;
        }
        .cert-deco.d3 {
            width: 20px;
            height: 20px;
            bottom: -12px;
            left: 30%;
            background: rgba(254, 243, 199, .6);
            animation-delay: -3s;
        }

        /* =========================================================
           How We Make Different — fixed responsive grid
           ========================================================= */
        .diff-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        @media (max-width:960px) {
            .diff-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width:560px) {
            .diff-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
        }
        .diff {
            padding: 26px 22px;
            background: #fff;
            border-radius: var(--r-lg);
            box-shadow: var(--shadow-xs);
            transition: all var(--t) var(--ease);
            position: relative;
            overflow: hidden;
        }
        .diff:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
        }
        .diff .icon {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--primary), var(--primary-2));
            color: #fff;
            display: grid;
            place-items: center;
            margin-bottom: 14px;
            box-shadow: 0 10px 20px rgba(14, 138, 95, .25);
            transition: transform var(--t) var(--ease-bounce);
        }
        .diff:hover .icon {
            transform: rotate(-10deg) scale(1.1);
        }
        .diff .icon svg {
            width: 24px;
            height: 24px;
        }
        .diff h4 {
            font-size: 16.5px;
            font-weight: 700;
        }
        .diff p {
            color: var(--text-light);
            font-size: 13.5px;
            margin-top: 6px;
            line-height: 1.6;
        }

        /* CTA */
        .cta {
            background: linear-gradient(135deg, #0E8A5F 0%, #0A6B49 100%);
            color: #fff;
            border-radius: var(--r-2xl);
            padding: 64px 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 56px;
            transition: transform var(--t) var(--ease);
        }
        .cta:hover {
            transform: scale(1.005);
        }
        .cta::before,
        .cta::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: .3;
        }
        .cta::before {
            width: 320px;
            height: 320px;
            background: #86EFAC;
            top: -120px;
            left: -80px;
        }
        .cta::after {
            width: 280px;
            height: 280px;
            background: #FDE68A;
            bottom: -120px;
            right: -60px;
        }
        .cta h2 {
            font-size: clamp(26px, 3.4vw, 42px);
            font-weight: 800;
            position: relative;
            letter-spacing: -.03em;
            line-height: 1.15;
        }
        .cta p {
            margin-top: 14px;
            opacity: .92;
            font-size: 16px;
            position: relative;
            max-width: 620px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }
        .cta .cta-actions {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 26px;
            position: relative;
            flex-wrap: wrap;
        }
        .cta .btn {
            animation: pulse 2.4s ease-in-out infinite;
        }
        @keyframes pulse {
            0%,
            100% {
                box-shadow: 0 4px 16px rgba(0, 0, 0, .15), 0 0 0 0 rgba(255, 255, 255, .3);
            }
            50% {
                box-shadow: 0 8px 24px rgba(0, 0, 0, .2), 0 0 0 10px rgba(255, 255, 255, 0);
            }
        }
        @media (max-width:560px) {
            .cta {
                padding: 40px 24px;
            }
            .cta .cta-actions {
                flex-direction: column;
                width: 100%;
            }
            .cta .cta-actions .btn {
                width: 100%;
            }
        }

        /* =========================================================
           Testimonials — 1-by-1 carousel with peek
           ========================================================= */
        .testi-wrap {
            position: relative;
            overflow: hidden;
            margin-top: 32px;
            padding: 0;
        }
        .testi-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(.25, .8, .25, 1);
            will-change: transform;
            gap: 20px;
        }
        .testi-slide {
            flex: 0 0 calc(33.333% - 14px);
            min-width: 0;
            padding: 0;
        }
        @media (max-width: 1100px) {
            .testi-slide {
                flex: 0 0 calc(50% - 10px);
            }
        }
        @media (max-width: 700px) {
            .testi-slide {
                flex: 0 0 100%;
            }
        }
        .testi {
            padding: 26px;
            background: #fff;
            border-radius: var(--r-lg);
            box-shadow: var(--shadow-xs);
            display: flex;
            flex-direction: column;
            gap: 14px;
            transition: all var(--t) var(--ease);
            position: relative;
            overflow: hidden;
            min-height: 240px;
        }
        .testi:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
        }
        .testi::before {
            content: "";
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(14, 138, 95, .08), transparent 70%);
            top: -30px;
            right: -30px;
        }
        .testi .top {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testi .av {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0E8A5F, #22A37A);
            color: #fff;
            display: grid;
            place-items: center;
            font-weight: 700;
            font-family: 'Poppins';
            flex-shrink: 0;
            font-size: 16px;
            transition: transform var(--t) var(--ease-bounce);
            overflow: hidden;
        }
        .testi .av img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .testi:hover .av {
            transform: rotate(-6deg) scale(1.06);
        }
        .testi .nm {
            font-weight: 700;
            font-size: 15px;
        }
        .testi .ro {
            font-size: 12.5px;
            color: var(--text-light);
        }
        .testi .quote {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.7;
            flex: 1;
        }
        .testi .stars {
            color: #F59E0B;
            font-size: 14px;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 2px;
        }
        .testi .stars svg {
            width: 14px;
            height: 14px;
        }
        .testi-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 24px;
        }
        .testi-dot {
            width: 8px;
            height: 8px;
            border-radius: 99px;
            background: var(--border);
            transition: all var(--t) var(--ease);
            cursor: pointer;
            border: 0;
            padding: 0;
        }
        .testi-dot.active {
            width: 28px;
            background: var(--primary);
        }

        /* =========================================================
           FAQ
           ========================================================= */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 880px;
            margin: 40px auto 0;
        }
        .faq-item {
            background: #fff;
            border-radius: var(--r-lg);
            box-shadow: var(--shadow-xs);
            overflow: hidden;
            transition: box-shadow var(--t) var(--ease);
        }
        .faq-item:nth-child(6n+1) { background: #ffffff; }
        .faq-item:nth-child(6n+2) { background: #f9fbfc; }
        .faq-item:nth-child(6n+3) { background: #f7faf8; }
        .faq-item:nth-child(6n+4) { background: #fafcfd; }
        .faq-item:nth-child(6n+5) { background: #f8faf9; }
        .faq-item:nth-child(6n+6) { background: #fbfcfc; }
        .faq-item.open {
            box-shadow: var(--shadow-sm);
        }
        .faq-q {
            padding: 20px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 18px;
            font-weight: 600;
            font-size: 15.5px;
            background-color: #FAF9F6;
        }
        .faq-q .ic {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--primary-soft);
            color: var(--primary);
            display: grid;
            place-items: center;
            transition: transform var(--t) var(--ease);
            flex-shrink: 0;
        }
        .faq-q .ic svg {
            width: 13px;
            height: 13px;
        }
        .faq-item.open .faq-q .ic {
            transform: rotate(45deg);
            background: var(--primary);
            color: #fff;
        }
        .faq-a {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            padding: 0 24px;
            transition: max-height .4s var(--ease), opacity .3s var(--ease), padding .3s var(--ease);
            color: var(--text-light);
            font-size: 14.5px;
            line-height: 1.7;
        }
        .faq-item.open .faq-a {
            max-height: 400px;
            opacity: 1;
            padding: 0 24px 20px;
        }

        /* =========================================================
           FAQ CATEGORY TABS
           ========================================================= */
        .faq-header .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary-soft);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 99px;
            font-size: 12.5px;
            font-weight: 600;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .faq-header .eyebrow svg {
            width: 13px;
            height: 13px;
            fill: currentColor;
        }
        .faq-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin: 28px auto 0;
            max-width: 800px;
        }
        .faq-tab {
            padding: 8px 18px;
            border-radius: 99px;
            border: 1.5px solid #afcffa;
            background: #fff;
            color: var(--text);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--t-fast) var(--ease);
            white-space: nowrap;
        }
        .faq-tab:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-soft);
        }
        .faq-tab.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            box-shadow: 0 2px 8px rgba(11, 139, 41, 0.25);
        }
        .faq-item[data-cat].hidden-faq {
            display: none;
        }

        /* =========================================================
           FOOTER — Clean 3-column with copyright bar
           ========================================================= */
        .site-footer {
            background: linear-gradient(135deg, #0B8B29, #0fa131);
            color: #fff;
            margin-top: 40px;
            position: relative;
            overflow: hidden;
        }
        .site-footer::before {
            display: none;
        }
        .footer-main {
            padding: 56px 0 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 48px;
            align-items: start;
        }
        .footer-brand .footer-logo {
            height: 56px;
            width: auto;
            object-fit: contain;
            margin-bottom: 16px;
        }
        .footer-desc {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255,255,255,.75);
            margin: 0 0 20px;
            max-width: 320px;
        }
        .footer-social {
            display: flex;
            gap: 10px;
        }
        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(255,255,255,.15);
            border: 1px solid rgba(255,255,255,.2);
            display: grid;
            place-items: center;
            color: #fff;
            transition: all .3s var(--ease);
        }
        .footer-social a:hover {
            background: #fff;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,.2);
        }
        .footer-social a svg {
            width: 18px;
            height: 18px;
        }
        .footer-col h5 {
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: .1em;
            margin: 0 0 18px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-col a {
            color: rgba(255,255,255,.7);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s, transform .2s;
            display: inline-block;
        }
        .footer-col a:hover {
            color: #fff;
            transform: translateX(4px);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.15);
            padding: 18px 0;
            text-align: center;
        }
        .footer-bottom p {
            margin: 0;
            font-size: 13px;
            color: rgba(255,255,255,.55);
        }
        @media (max-width:768px) {
            .footer-main {
                padding: 40px 0 28px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer-brand .footer-logo {
                height: 48px;
            }
            .footer-desc {
                font-size: 13.5px;
                max-width: 100%;
            }
            .footer-col {
                padding-top: 24px;
                border-top: 1px solid rgba(255,255,255,.08);
            }
            .footer-bottom {
                padding-bottom: 70px;
            }
        }

        /* =========================================================
           Chat bubble & back to top
           ========================================================= */
        .chat-bubble {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0E8A5F, #22A37A);
            color: #fff;
            display: grid;
            place-items: center;
            z-index: 70;
            box-shadow: 0 16px 32px rgba(14, 138, 95, .4);
            cursor: pointer;
            transition: transform var(--t) var(--ease);
        }
        .chat-bubble:hover {
            transform: scale(1.1) translateY(-4px);
        }
        .chat-bubble svg {
            width: 24px;
            height: 24px;
        }
        .chat-bubble::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 2px solid var(--primary);
            animation: ping 2.4s cubic-bezier(0, 0, .2, 1) infinite;
        }
        @keyframes ping {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }
        @media (max-width:768px) {
            .chat-bubble {
                bottom: 100px;
                right: 16px;
                width: 52px;
                height: 52px;
            }
            .chat-bubble svg {
                width: 20px;
                height: 20px;
            }
        }

        .to-top {
            position: fixed;
            bottom: 96px;
            right: 24px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #fff;
            color: var(--primary);
            display: grid;
            place-items: center;
            z-index: 60;
            box-shadow: var(--shadow);
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px) scale(.8);
            pointer-events: none;
            transition: all var(--t) var(--ease);
            border: 1px solid var(--border-soft);
        }
        .to-top.show {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }
        .to-top:hover {
            transform: translateY(-4px) scale(1.06);
            box-shadow: var(--shadow-lg);
        }
        .to-top svg {
            width: 20px;
            height: 20px;
        }
        @media (max-width:768px) {
            .to-top {
                bottom: 110px;
                right: 16px;
                width: 40px;
                height: 40px;
            }
        }

        /* =========================================================
           Mobile bottom CTA bar
           ========================================================= */
        .mobile-cta-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 55;
            background: rgba(255, 255, 255, .96);
            backdrop-filter: blur(14px);
            padding: 12px 18px;
            border-top: 1px solid var(--border-soft);
            display: none;
            gap: 10px;
            align-items: center;
            box-shadow: 0 -10px 30px rgba(15, 23, 42, .08);
        }
        .mobile-cta-bar .info {
            flex: 1;
            min-width: 0;
        }
        .mobile-cta-bar .info .t {
            font-size: 11px;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: .06em;
            font-weight: 600;
        }
        .mobile-cta-bar .info .v {
            font-size: 16px;
            font-weight: 800;
            font-family: 'Poppins';
            color: var(--text);
        }
        .mobile-cta-bar .btn {
            padding: 9px 18px;
            font-size: 12.5px;
        }
        @media (max-width:768px) {
            .mobile-cta-bar {
                display: flex;
                padding-bottom: max(12px, env(safe-area-inset-bottom));
            }
        }

        /* =========================================================
           Reveal animations
           ========================================================= */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .8s var(--ease), transform .8s var(--ease);
        }
        .reveal.in {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-l {
            opacity: 0;
            transform: translateX(-32px);
            transition: opacity .8s var(--ease), transform .8s var(--ease);
        }
        .reveal-l.in {
            opacity: 1;
            transform: translateX(0);
        }
        .reveal-r {
            opacity: 0;
            transform: translateX(32px);
            transition: opacity .8s var(--ease), transform .8s var(--ease);
        }
        .reveal-r.in {
            opacity: 1;
            transform: translateX(0);
        }
        .reveal-s {
            opacity: 0;
            transform: scale(.94);
            transition: opacity .8s var(--ease), transform .8s var(--ease);
        }
        .reveal-s.in {
            opacity: 1;
            transform: scale(1);
        }
        .reveal[data-d="1"] {
            transition-delay: .1s;
        }
        .reveal[data-d="2"] {
            transition-delay: .2s;
        }
        .reveal[data-d="3"] {
            transition-delay: .3s;
        }
        .reveal[data-d="4"] {
            transition-delay: .4s;
        }
        .reveal[data-d="5"] {
            transition-delay: .5s;
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: .01ms !important;
                transition-duration: .01ms !important;
            }
            .reveal,
            .reveal-l,
            .reveal-r,
            .reveal-s {
                opacity: 1;
                transform: none;
            }
        }

        /* =========================================================
           MOBILE-SPECIFIC FIXES
           ========================================================= */
        @media (max-width:820px) {
            .hero-visual {
                height: 380px;
            }
            .hero h1 {
                font-size: clamp(28px, 7vw, 36px);
            }
            .hero p.lead {
                font-size: 15.5px;
            }
            .hero-stats {
                gap: 16px;
            }
            .hero-stat .v {
                font-size: 20px;
            }
            .hero-stat .l {
                font-size: 10px;
            }
            .hc-card {
                width: 160px;
                height: 210px;
            }
            .hc-card .tc-emoji {
                font-size: 44px;
                width: 48px;
                height: 48px;
            }
            .hc-card h4 {
                font-size: 14px;
            }
            .hc-card p {
                font-size: 10px;
            }
        }

        @media (max-width:500px) {
            .hero-visual {
                height: 320px !important;
                perspective: 1200px;
            }
            .hc-card {
                width: 130px !important;
                height: 170px !important;
                gap: 6px !important;
                padding: 12px !important;
            }
            .hc-card .tc-emoji {
                font-size: 36px !important;
                width: 40px !important;
                height: 40px !important;
            }
            .hc-card h4 {
                font-size: 13px !important;
            }
            .hc-card p {
                font-size: 9px !important;
                line-height: 1.2;
            }
            .hc-card[data-pos="1"] {
                transform: translateX(70px) translateZ(-50px) scale(.82) rotateY(-25deg) !important;
            }
            .hc-card[data-pos="-1"] {
                transform: translateX(-70px) translateZ(-50px) scale(.82) rotateY(25deg) !important;
            }
            .hc-card[data-pos="2"] {
                transform: translateX(130px) translateZ(-100px) scale(.65) rotateY(-35deg) !important;
            }
            .hc-card[data-pos="-2"] {
                transform: translateX(-130px) translateZ(-100px) scale(.65) rotateY(35deg) !important;
            }
            .hc-card[data-pos="3"] {
                transform: translateX(180px) translateZ(-180px) scale(.5) rotateY(-45deg) !important;
            }
            .hc-card[data-pos="-3"] {
                transform: translateX(-180px) translateZ(-180px) scale(.5) rotateY(45deg) !important;
            }
            .hc-dots {
                bottom: 12px;
            }
            .hc-dot {
                width: 6px;
                height: 6px;
            }
            .hc-dot.active {
                width: 18px;
            }

            .floating-tag {
                font-size: 10px !important;
                padding: 5px 10px !important;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            }
            .floating-tag svg {
                width: 12px;
                height: 12px !important;
            }
            .tag-1 {
                top: 2% !important;
                left: 0% !important;
            }
            .tag-2 {
                bottom: 5% !important;
                right: 0% !important;
            }
            .tag-3 {
                top: 30% !important;
                right: -2% !important;
            }

            .stats {
                padding: 28px 14px;
                margin-top: -30px !important;
                border-radius: var(--r-xl);
            }
            .stats-grid {
                gap: 6px;
            }

            .hero-stats {
                gap: 18px;
                margin-top: 28px;
            }
            .hero-stat .v {
                font-size: 18px;
            }
            .hero-stat .l {
                font-size: 10px;
                letter-spacing: 0;
            }

            .overview-img .ov-emoji {
                font-size: 60px;
            }
            .overview-img .ov-title {
                font-size: 22px;
            }
            .overview-content h1 {
                font-size: clamp(26px, 6vw, 34px);
            }
            .overview-content p {
                font-size: 14px;
            }

            .form-actions {
                flex-direction: column;
                gap: 10px;
            }
            .form-actions .btn {
                width: 100%;
            }
            .enroll-card {
                padding: 12px 10px;
            }
            .form-progress .labels span {
                font-size: 9px;
            }

            .cert-section {
                padding: 28px 18px;
                margin-top: 32px;
                overflow: hidden;
                width: 100%;
            }
            .cert-section h2 {
                font-size: 24px;
            }
            .cert-section p {
                font-size: 14px;
            }
            .cert-section .stats-row {
                gap: 10px;
            }
            .cert-section .stats-row .item {
                font-size: 12px;
            }
            .cert-img-wrap {
                width: 100%;
            }
            .cert-img-frame {
                width: 100% !important;
                max-width: 100% !important;
            }

            .diff-grid {
                margin-top: 28px;
                gap: 12px;
            }
            .diff {
                padding: 22px 18px;
            }
            .diff .icon {
                width: 44px;
                height: 44px;
            }
            .diff h4 {
                font-size: 15.5px;
            }
            .diff p {
                font-size: 13px;
            }

            .mentor-wrapper {
                padding: 0 4px;
            }


            .testi {
                padding: 22px;
            }
            .testi-dots {
                margin-top: 22px;
            }

            .mobile-cta-bar {
                padding: 10px 14px;
            }
        }

        /* =========================================================
           Toast notification
           ========================================================= */
        .toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 99999;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 8px;
            pointer-events: none;
            max-width: 400px;
            width: calc(100vw - 40px);
        }
        .toast {
            pointer-events: auto;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px 12px 18px;
            border-radius: 14px;
            background: #fff;
            box-shadow: 0 12px 48px rgba(0,0,0,.16), 0 2px 8px rgba(0,0,0,.06);
            border: 1px solid rgba(0,0,0,.06);
            font-size: 14px;
            font-weight: 500;
            color: var(--text);
            animation: toastIn .35s cubic-bezier(.21,.75,.4,1) forwards;
            max-width: 460px;
            width: max-content;
        }
        .toast.toast-out {
            animation: toastOut .25s cubic-bezier(.5,0,.6,1) forwards;
        }
        .toast.toast-error {
            border-left: 4px solid #EF4444;
        }
        .toast.toast-info {
            border-left: 4px solid var(--primary);
        }
        .toast .toast-msg {
            flex: 1;
            line-height: 1.45;
        }
        .toast .toast-close {
            flex-shrink: 0;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            border: none;
            background: #F1F5F9;
            color: var(--text-light);
            cursor: pointer;
            display: grid;
            place-items: center;
            transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
        }
        .toast .toast-close:hover {
            background: #E2E8F0;
            transform: scale(1.1);
        }
        .toast .toast-close svg {
            width: 14px;
            height: 14px;
        }
        @keyframes toastIn {
            from { opacity: 0; transform: translateX(40px) scale(.94); }
            to   { opacity: 1; transform: translateX(0) scale(1); }
        }
        @keyframes toastOut {
            from { opacity: 1; transform: translateX(0) scale(1); }
            to   { opacity: 0; transform: translateX(40px) scale(.94); }
        }