        /* ===== RESET & BASE ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --orange: #FF6600;
            --orange-dark: #D95400;
            --orange-light: #FF8533;
            --orange-pale: rgba(255, 102, 0, 0.08);
            --dark: hsl(22, 85%, 13%);
            --dark-2: hsl(25, 70%, 17%);
            --text: #1A1A2E;
            --text-mid: #4B5563;
            --text-muted: #9CA3AF;
            --border: #E5E7EB;
            --bg: #F7F8FC;
            --white: #FFFFFF;
            --nav-h: 72px;
            --max-w: 1160px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Noto Sans JP', 'Inter', sans-serif;
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

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

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

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 30px;
            border-radius: 6px;
            font-size: .9rem;
            font-weight: 700;
            cursor: pointer;
            transition: all .25s;
            border: 2px solid transparent;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--orange);
            color: #fff;
            border-color: var(--orange);
        }

        .btn-primary:hover {
            background: var(--orange-dark);
            border-color: var(--orange-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 102, 0, .35);
        }

        .btn-ghost-white {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, .55);
        }

        .btn-ghost-white:hover {
            background: rgba(255, 255, 255, .1);
            border-color: #fff;
        }

        .btn-ghost-dark {
            background: transparent;
            color: var(--text);
            border-color: var(--border);
        }

        .btn-ghost-dark:hover {
            background: var(--text);
            color: #fff;
        }

        /* ===== SECTION COMMONS ===== */
        .sec {
            padding: 96px 28px;
        }

        .sec-in {
            max-width: var(--max-w);
            margin: 0 auto;
        }

        .sec-eye {
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .18em;
            color: var(--orange);
            text-transform: uppercase;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sec-eye::before {
            content: '';
            display: block;
            width: 28px;
            height: 2px;
            background: var(--orange);
        }

        .sec-h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 900;
            letter-spacing: -.03em;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .sec-lead {
            font-size: 1rem;
            color: var(--text-mid);
            max-width: 600px;
            line-height: 1.85;
        }

        .tc {
            text-align: center;
        }

        .tc .sec-eye {
            justify-content: center;
        }

        .tc .sec-eye::before {
            display: none;
        }

        .tc .sec-lead {
            margin: 0 auto;
        }

        /* ===== REVEAL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .65s ease, transform .65s ease;
        }

        .reveal.in {
            opacity: 1;
            transform: none;
        }

        /* ===== HERO ===== */
        .gl-hero {
            min-height: 100vh;
            background: var(--dark);
            display: flex;
            align-items: center;
            padding: 120px 28px 80px;
            position: relative;
            overflow: hidden;
        }

        .gl-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 65% 60% at 80% 30%, rgba(255, 102, 0, .18) 0%, transparent 65%),
                radial-gradient(ellipse 55% 75% at 10% 80%, rgba(180, 60, 0, .12) 0%, transparent 60%);
        }

        .gl-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
            background-size: 64px 64px;
            pointer-events: none;
        }

        .gl-hero-in {
            max-width: var(--max-w);
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 460px;
            gap: 80px;
            align-items: center;
        }

        .gl-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 102, 0, .18);
            border: 1px solid rgba(255, 102, 0, .35);
            border-radius: 30px;
            padding: 6px 16px;
            font-size: .78rem;
            font-weight: 700;
            color: var(--orange);
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: 28px;
        }

        .gl-hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--orange);
            animation: pulse 1.8s ease-in-out infinite;
        }

        @keyframes pulse {

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

            50% {
                opacity: .4;
                transform: scale(.7)
            }
        }

        .gl-hero-h1 {
            font-size: clamp(2.8rem, 5.5vw, 5rem);
            font-weight: 900;
            color: #fff;
            line-height: 1.08;
            letter-spacing: -.04em;
            margin-bottom: 28px;
        }

        .gl-hero-h1 em {
            font-style: normal;
            color: var(--orange);
        }

        .gl-hero-sub {
            font-size: 1rem;
            color: rgba(255, 255, 255, .7);
            line-height: 1.9;
            margin-bottom: 40px;
            max-width: 480px;
        }

        .gl-hero-ctas {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        /* right glass panel */
        .gl-hero-panel {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(12px);
        }

        .gl-stat-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 28px;
        }

        .gl-stat {
            background: rgba(255, 255, 255, .05);
            border-radius: 12px;
            padding: 22px 16px;
            text-align: center;
        }

        .gl-stat-n {
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--orange);
            font-family: 'Inter', sans-serif;
            line-height: 1;
            margin-bottom: 4px;
        }

        .gl-stat-l {
            font-size: .75rem;
            color: rgba(255, 255, 255, .55);
            font-weight: 500;
        }

        .gl-kw-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 28px;
        }

        .gl-kw {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: .78rem;
            font-weight: 600;
            border: 1px solid rgba(255, 102, 0, .4);
            color: rgba(255, 200, 150, .9);
            background: rgba(255, 102, 0, .08);
        }

        .gl-hero-note {
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, .08);
            font-size: .84rem;
            color: rgba(255, 255, 255, .5);
            line-height: 1.8;
        }

        .gl-hero-note strong {
            color: rgba(255, 255, 255, .85);
        }

        /* ===== CODKID ===== */
        .sec-codkid {
            background: var(--dark);
            padding: 96px 28px;
            position: relative;
            overflow: hidden;
        }

        .sec-codkid::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 70% at 95% 50%, rgba(255, 102, 0, .12), transparent),
                radial-gradient(ellipse 50% 60% at 5% 20%, rgba(255, 80, 0, .08), transparent);
            pointer-events: none;
        }

        .codkid-in {
            max-width: var(--max-w);
            margin: 0 auto;
        }

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

        .codkid-photo {
            border-radius: 20px;
            overflow: hidden;
            min-height: 440px;
            position: relative;
        }

        .codkid-photo img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: saturate(0.72) brightness(0.93) contrast(0.95);
        }

        .codkid-photo::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 5, 0, .45) 0%, transparent 55%);
        }

        .codkid-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 102, 0, .18);
            border: 1px solid rgba(255, 102, 0, .4);
            border-radius: 30px;
            padding: 6px 16px;
            font-size: .75rem;
            font-weight: 800;
            color: var(--orange);
            letter-spacing: .1em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .codkid-h2 {
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 900;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 18px;
            letter-spacing: -.03em;
        }

        .codkid-h2 em {
            font-style: normal;
            color: var(--orange);
        }

        .codkid-lead {
            font-size: 1rem;
            color: rgba(255, 255, 255, .65);
            line-height: 1.9;
            margin-bottom: 36px;
        }

        .codkid-features {
            display: flex;
            flex-direction: column;
            gap: 18px;
            margin-bottom: 40px;
        }

        .codkid-feat {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .codkid-feat::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--orange);
            flex-shrink: 0;
            margin-top: 8px;
        }

        .codkid-feat-txt h4 {
            font-size: .92rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .9);
            margin-bottom: 4px;
        }

        .codkid-feat-txt p {
            font-size: .84rem;
            color: rgba(255, 255, 255, .5);
            line-height: 1.75;
        }

        .codkid-url {
            margin-top: 14px;
            font-size: .78rem;
            color: rgba(255, 255, 255, .35);
        }

        .codkid-url a {
            color: rgba(255, 180, 100, .7);
            text-decoration: underline;
            transition: color .2s;
        }

        .codkid-url a:hover {
            color: var(--orange-light);
        }

        /* ===== ENGLISH x IT ===== */
        .sec-engit {
            background: var(--bg);
        }

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

        .engit-photo {
            border-radius: 20px;
            overflow: hidden;
            min-height: 420px;
            position: relative;
        }

        .engit-photo img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .engit-photo::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .18) 100%);
        }

        .engit-text {
            order: 1;
        }

        .engit-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 28px;
            margin-bottom: 32px;
        }

        .engit-pill {
            padding: 6px 16px;
            border-radius: 20px;
            font-size: .78rem;
            font-weight: 700;
            background: rgba(255, 102, 0, .09);
            color: var(--orange);
            border: 1px solid rgba(255, 102, 0, .25);
        }

        .engit-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 36px;
        }

        .engit-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: .92rem;
            color: var(--text-mid);
            line-height: 1.7;
        }

        .engit-list li::before {
            content: '▸';
            color: var(--orange);
            font-size: .78rem;
            flex-shrink: 0;
            margin-top: 4px;
        }

        /* ===== INSTRUCTOR PROFILE ===== */
        .sec-instructor {
            background: #fff;
        }

        .instructor-grid {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 64px;
            align-items: start;
        }

        .instructor-photo-wrap {
            position: sticky;
            top: calc(var(--nav-h) + 24px);
        }

        .instructor-photo {
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 3 / 4;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
        }

        .instructor-photo img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .instructor-photo-caption {
            margin-top: 14px;
            text-align: center;
        }

        .photo-caption {
            font-size: .72rem;
            color: var(--text-muted);
            margin-top: 8px;
            text-align: right;
        }

        .instructor-en-name {
            font-size: .85rem;
            font-weight: 700;
            color: var(--orange);
            font-family: 'Inter', sans-serif;
            letter-spacing: .04em;
            margin-bottom: 2px;
        }

        .instructor-role {
            font-size: .75rem;
            color: var(--text-muted);
            line-height: 1.55;
        }

        .instructor-content {
            padding-top: 8px;
        }

        .instructor-name-ja {
            font-size: 0.65rem;
            font-weight: 900;
            letter-spacing: -.03em;
            color: var(--text);
            margin-bottom: 4px;
            line-height: 1.1;
        }

        .instructor-name-en {
            font-size: 0.5rem;
            font-weight: 600;
            color: var(--orange);
            font-family: 'Inter', sans-serif;
            letter-spacing: .04em;
            margin-bottom: 20px;
        }

        .instructor-title {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 102, 0, .08);
            border: 1px solid rgba(255, 102, 0, .25);
            border-radius: 6px;
            padding: 8px 18px;
            font-size: .82rem;
            font-weight: 700;
            color: var(--orange);
            margin-bottom: 32px;
        }

        .instructor-bio {
            display: flex;
            flex-direction: column;
            gap: 0;
            border-top: 1px solid var(--border);
            margin-bottom: 32px;
        }

        .bio-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 16px 0;
            border-bottom: 1px solid var(--border);
        }

        .bio-item::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--orange);
            flex-shrink: 0;
            margin-top: 8px;
        }

        .bio-item p {
            font-size: .9rem;
            color: var(--text-mid);
            line-height: 1.8;
        }

        .bio-item p strong {
            color: var(--text);
            font-weight: 700;
        }

        .instructor-codkid-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background: var(--bg);
            border: 1.5px solid var(--border);
            border-radius: 10px;
            font-size: .88rem;
            font-weight: 700;
            color: var(--text-mid);
            transition: all .2s;
            margin-bottom: 10px;
        }

        .instructor-codkid-link:hover {
            border-color: var(--orange);
            color: var(--orange);
            background: rgba(255, 102, 0, .04);
        }

        .instructor-codkid-link::after {
            content: '↗';
            font-size: .9rem;
        }

        .instructor-note {
            font-size: .72rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ===== ACCESS ===== */
        .sec-access {
            background: var(--bg);
        }

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

        .access-address {
            margin-top: 20px;
            padding: 16px 18px;
            border-radius: 12px;
            background: #fff;
            border: 1px solid var(--border);
            font-size: .95rem;
            font-weight: 700;
            line-height: 1.8;
            color: var(--text);
        }

        .access-map {
            min-height: 360px;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 18px 42px rgba(0, 0, 0, .12);
            background: #fff;
        }

        .access-map-frame {
            display: block;
            width: 100%;
            height: 100%;
            min-height: 360px;
            border: 0;
        }

        /* ===== CTA ===== */
        .sec-cta {
            background: var(--dark);
            padding: 100px 28px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .sec-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 100% at 50% 110%, rgba(255, 102, 0, .18), transparent);
            pointer-events: none;
        }

        .cta-in {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-in h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 900;
            color: #fff;
            line-height: 1.3;
            letter-spacing: -.03em;
            margin-bottom: 20px;
        }

        .cta-in h2 em {
            font-style: normal;
            color: var(--orange);
        }

        .cta-in p {
            font-size: 1rem;
            color: rgba(255, 255, 255, .6);
            line-height: 1.9;
            margin-bottom: 44px;
        }

        .cta-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--dark);
            padding: 72px 28px 36px;
        }

        .foot-in {
            max-width: var(--max-w);
            margin: 0 auto;
        }

        .foot-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 56px;

            margin-bottom: 64px;
        }

        .foot-brand-logo {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--orange);
            letter-spacing: -.02em;
            margin-bottom: 14px;
        }

        .foot-brand-logo span {
            color: #fff;
        }

        .foot-brand p {
            font-size: .84rem;
            color: rgba(255, 255, 255, .45);
            line-height: 1.8;
        }

        .foot-socials {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .foot-social-btn {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .12);
            color: rgba(255, 255, 255, .5);
            font-size: .78rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .2s;
        }

        .foot-social-btn:hover {
            background: var(--orange);
            border-color: var(--orange);
            color: #fff;
        }

        .foot-col h5 {
            font-size: .78rem;
            font-weight: 800;
            letter-spacing: .12em;
            color: rgba(255, 255, 255, .35);
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .foot-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .foot-col ul li a {
            font-size: .86rem;
            color: rgba(255, 255, 255, .55);
            transition: color .2s;
        }

        .foot-col ul li a:hover {
            color: var(--orange);
        }

        .foot-bot {
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding-top: 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .foot-copy {
            font-size: .8rem;
            color: rgba(255, 255, 255, .3);
        }

        .foot-legal {
            display: flex;
            gap: 20px;
        }

        .foot-legal a {
            font-size: .8rem;
            color: rgba(255, 255, 255, .3);
            transition: color .2s;
        }

        .foot-legal a:hover {
            color: rgba(255, 255, 255, .7);
        }

        /* ===== PACKAGE PLAN ===== */
        .sec-package {
            background: var(--bg);
        }

        .pkg-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            margin-bottom: 64px;
        }

        .pkg-intro-text .sec-h2 {
            margin-bottom: 16px;
        }

        .pkg-intro-text p {
            font-size: .96rem;
            color: var(--text-mid);
            line-height: 1.9;
        }

        .pkg-intro-visual {
            background: var(--dark);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 102, 0, .25);
        }

        .pkg-formula {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .pkg-formula-item {
            text-align: center;
        }

        .pkg-formula-label {
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .1em;
            color: var(--orange);
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .pkg-formula-val {
            font-size: 1.1rem;
            font-weight: 900;
            color: #fff;
        }

        .pkg-formula-plus {
            font-size: 1.8rem;
            font-weight: 900;
            color: rgba(255, 102, 0, .6);
        }

        .pkg-formula-eq {
            font-size: 1.4rem;
            font-weight: 900;
            color: rgba(255, 255, 255, .3);
        }

        .pkg-formula-result {
            text-align: center;
        }

        .pkg-formula-result-label {
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .1em;
            color: rgba(255, 255, 255, .4);
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .pkg-formula-result-val {
            font-size: 1.05rem;
            font-weight: 900;
            color: var(--orange);
            line-height: 1.4;
        }

        .pkg-plans {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .pkg-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 36px 28px;
            transition: box-shadow .3s, transform .3s;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .pkg-card:hover {
            box-shadow: 0 20px 48px rgba(0, 0, 0, .08);
            transform: translateY(-4px);
        }

        .pkg-card.pkg-featured {
            border-color: var(--orange);
        }

        .pkg-featured-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: var(--orange);
            color: #fff;
            font-size: .68rem;
            font-weight: 800;
            letter-spacing: .08em;
            padding: 6px 14px;
            border-radius: 0 0 0 12px;
        }

        .pkg-tier {
            font-size: .68rem;
            font-weight: 800;
            letter-spacing: .14em;
            color: var(--orange);
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .pkg-h3 {
            font-size: 1.1rem;
            font-weight: 900;
            color: var(--text);
            margin-bottom: 8px;
            line-height: 1.35;
        }

        .pkg-price {
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--text);
            font-family: 'Inter', sans-serif;
            margin-bottom: 4px;
        }

        .pkg-price span {
            font-size: .8rem;
            font-weight: 500;
            color: var(--text-mid);
        }

        .pkg-price-note {
            font-size: .78rem;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .pkg-items {
            border-top: 1px solid var(--border);
            margin-top: 18px;
        }

        .pkg-items {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex: 1;
        }

        .pkg-items li {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            font-size: .84rem;
            color: var(--text-mid);
            line-height: 1.6;
        }

        .pkg-items li::before {
            content: '▸';
            color: var(--orange);
            font-weight: 800;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .pkg-cta {
            margin-top: 24px;
            display: block;
            text-align: center;
            padding: 11px;
            border-radius: 8px;
            font-size: .86rem;
            font-weight: 700;
            border: 1.5px solid var(--orange);
            color: var(--orange);
            transition: all .2s;
        }

        .pkg-cta:hover {
            background: var(--orange);
            color: #fff;
        }

        .pkg-card.pkg-featured .pkg-cta {
            background: var(--orange);
            color: #fff;
        }

        .pkg-card.pkg-featured .pkg-cta:hover {
            background: var(--orange-dark);
            border-color: var(--orange-dark);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1060px) {
            .gl-hero-in {
                grid-template-columns: 1fr;
            }

            .gl-hero-panel {
                display: none;
            }

            .codkid-grid {
                grid-template-columns: 1fr;
            }

            .engit-grid {
                grid-template-columns: 1fr;
            }

            .engit-photo {
                order: -1;
            }

            .instructor-grid {
                grid-template-columns: 260px 1fr;
                gap: 40px;
            }

            .instructor-photo-wrap {
                position: static;
            }

            .foot-top {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .pkg-intro {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .pkg-plans {
                grid-template-columns: 1fr;
            }

            .access-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .access-copy {
                order: 1;
            }

            .access-map {
                order: 2;
            }

            .access-map,
            .access-map-frame {
                min-height: 320px;
            }
        }

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

            .instructor-photo {
                aspect-ratio: 4 / 3;
                max-height: 360px;
            }
        }

        @media (max-width: 640px) {
            .sec {
                padding: 64px 16px;
            }

            .sec-codkid {
                padding: 64px 16px;
            }

            .instructor-photo {
                max-height: 300px;
            }

            .cta-btns {
                flex-direction: column;
                align-items: center;
            }

            .foot-top {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .foot-bot {
                flex-direction: column;
                text-align: center;
            }

            .gl-hero-in {
                padding: 0;
            }
        }

        /* Extracted from inline style attributes */
        .u-inline-001 {
            transition-delay: .12s;
        }

        .u-inline-002 {
            order: 2;
        }

        .u-inline-003 {
            margin-bottom: 56px;
        }

        .u-inline-004 {
            display: inline-block;
            max-width: 100%;
            height: auto;
            margin-bottom: 4px;
        }

        .u-inline-005 {
            display: block;
            max-width: min(160px, 100%);
            height: auto;
            margin-bottom: 6px;
        }

        .u-inline-006 {
            display: block;
            max-width: min(116px, 100%);
            height: auto;
            margin-bottom: 20px;
        }

        .u-inline-007 {
            transition-delay: .1s;
        }

        .u-inline-008 {
            transition-delay: .05s;
        }

        .u-inline-009 {
            transition-delay: .19s;
        }