        /* ===== 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;
        }

        /* ===== 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 ===== */
        .it-hero {
            min-height: 100vh;
            background: var(--dark);
            display: flex;
            align-items: center;
            padding: 120px 28px 80px;
            position: relative;
            overflow: hidden;
        }

        .it-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 60% at 75% 35%, rgba(255, 102, 0, .16) 0%, transparent 65%),
                radial-gradient(ellipse 50% 70% at 15% 85%, rgba(180, 60, 0, .12) 0%, transparent 60%);
        }

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

        .it-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;
        }

        .it-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)
            }
        }

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

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

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

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

        /* right panel */
        .it-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);
        }

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

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

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

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

        .it-kw-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .it-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);
        }

        .it-hero-formula {
            margin-top: 28px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, .08);
            text-align: center;
        }

        .it-hero-formula-text {
            font-size: 1.1rem;
            font-weight: 900;
            color: rgba(255, 255, 255, .9);
            letter-spacing: -.01em;
        }

        .it-hero-formula-text em {
            font-style: normal;
            color: var(--orange);
        }

        .it-hero-formula-sub {
            font-size: .78rem;
            color: rgba(255, 255, 255, .35);
            margin-top: 6px;
        }

        /* ===== TWO PILLARS ===== */
        .sec-pillars {
            background: #fff;
        }

        .pillars-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin-top: 56px;
        }

        .pillar-card {
            border-radius: 24px;
            padding: 48px 40px;
        }

        .pillar-tech {
            background: var(--dark);
            border: 1.5px solid rgba(255, 102, 0, .25);
        }

        .pillar-port {
            background: var(--bg);
            border: 1.5px solid var(--border);
        }

        .pillar-label {
            font-size: .7rem;
            font-weight: 800;
            letter-spacing: .18em;
            text-transform: uppercase;
            margin-bottom: 24px;
            padding: 5px 14px;
            border-radius: 20px;
            display: inline-block;
        }

        .pillar-tech .pillar-label {
            background: rgba(255, 102, 0, .15);
            color: var(--orange);
        }

        .pillar-port .pillar-label {
            background: rgba(255, 102, 0, .1);
            color: var(--orange);
        }

        .pillar-icon {
            font-size: 2.4rem;
            margin-bottom: 16px;
        }

        .pillar-h3 {
            font-size: 1.5rem;
            font-weight: 900;
            line-height: 1.3;
            margin-bottom: 8px;
            letter-spacing: -.02em;
        }

        .pillar-tech .pillar-h3 {
            color: #fff;
        }

        .pillar-port .pillar-h3 {
            color: var(--text);
        }

        .pillar-tagline {
            font-size: .88rem;
            margin-bottom: 28px;
        }

        .pillar-tech .pillar-tagline {
            color: rgba(255, 255, 255, .45);
        }

        .pillar-port .pillar-tagline {
            color: var(--text-muted);
        }

        .pillar-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .pillar-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: .9rem;
            line-height: 1.65;
        }

        .pillar-tech .pillar-list li {
            color: rgba(255, 255, 255, .75);
        }

        .pillar-port .pillar-list li {
            color: var(--text-mid);
        }

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

        /* ===== PILLARS BRIDGE ===== */
        .pillars-bridge {
            margin-top: 40px;
        }

        .bridge-row {
            display: flex;
            align-items: center;
        }

        .bridge-tag {
            padding: 8px 18px;
            border-radius: 8px;
            font-size: .75rem;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
            flex-shrink: 0;
        }

        .bridge-tag-tech {
            background: var(--dark);
            color: var(--orange);
            border: 1.5px solid rgba(255, 102, 0, .4);
        }

        .bridge-tag-port {
            background: var(--bg);
            color: var(--orange);
            border: 1.5px solid rgba(255, 102, 0, .3);
        }

        .bridge-line-l {
            flex: 1;
            height: 2px;
            background: linear-gradient(to right, rgba(255, 102, 0, .25), rgba(255, 102, 0, .7));
        }

        .bridge-line-r {
            flex: 1;
            height: 2px;
            background: linear-gradient(to left, rgba(255, 102, 0, .25), rgba(255, 102, 0, .7));
        }

        .bridge-center {
            flex-shrink: 0;
            padding: 14px 28px;
            background: rgba(255, 102, 0, .07);
            border: 2px solid rgba(255, 102, 0, .45);
            border-radius: 14px;
            text-align: center;
        }

        .bridge-center-eye {
            font-size: .62rem;
            font-weight: 800;
            letter-spacing: .18em;
            color: var(--orange);
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .bridge-center-title {
            font-size: 1rem;
            font-weight: 900;
            color: var(--text);
            letter-spacing: -.01em;
            white-space: nowrap;
        }

        .bridge-desc {
            margin-top: 20px;
            text-align: center;
            padding: 18px 40px;
            background: var(--bg);
            border-radius: 12px;
        }

        .bridge-desc p {
            font-size: .88rem;
            color: var(--text-mid);
            line-height: 1.9;
        }

        .bridge-desc strong {
            color: var(--text);
        }

        /* ===== CURRICULUM ===== */
        .sec-curriculum {
            background: var(--bg);
        }

        .curriculum-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 56px;
        }

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

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

        .month-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--orange);
        }

        .month-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 102, 0, .08);
            border-radius: 20px;
            padding: 5px 14px;
            font-size: .75rem;
            font-weight: 700;
            color: var(--orange);
            letter-spacing: .08em;
            margin-bottom: 20px;
            font-family: 'Inter', sans-serif;
        }

        .month-h3 {
            font-size: 1.15rem;
            font-weight: 900;
            margin-bottom: 24px;
            line-height: 1.4;
        }

        .month-track {
            margin-bottom: 20px;
        }

        .month-track-label {
            font-size: .68rem;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .month-items {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

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

        .month-items li::before {
            content: '▸';
            color: var(--orange);
            font-size: .75rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .month-bible {
            background: rgba(255, 102, 0, .06);
            border-radius: 12px;
            padding: 16px 18px;
            margin-top: 20px;
            border-left: 3px solid var(--orange);
        }

        .month-bible-label {
            font-size: .68rem;
            font-weight: 800;
            letter-spacing: .1em;
            color: var(--orange);
            margin-bottom: 6px;
        }

        .month-bible p {
            font-size: .82rem;
            color: var(--text-mid);
            line-height: 1.65;
        }

        /* ===== IQ / EQ / AQ ===== */
        .sec-iqeqaq {
            background: var(--dark);
            padding: 96px 28px;
        }

        .iqeqaq-inner {
            max-width: var(--max-w);
            margin: 0 auto;
        }

        .iqeqaq-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 56px;
        }

        .iqeqaq-card {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 20px;
            padding: 40px 32px;
            transition: border-color .3s, background .3s;
        }

        .iqeqaq-card:hover {
            border-color: rgba(255, 102, 0, .4);
            background: rgba(255, 102, 0, .06);
        }

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

        .iqeqaq-name {
            font-size: .78rem;
            color: rgba(255, 255, 255, .35);
            margin-bottom: 24px;
        }

        .iqeqaq-h3 {
            font-size: 1rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .iqeqaq-p {
            font-size: .88rem;
            color: rgba(255, 255, 255, .55);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .iqeqaq-rule {
            font-size: .82rem;
            color: rgba(255, 200, 150, .9);
            font-weight: 700;
            padding: 10px 16px;
            background: rgba(255, 102, 0, .1);
            border: 1px solid rgba(255, 102, 0, .25);
            border-radius: 8px;
        }

        .iqeqaq-note {
            margin-top: 48px;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 20px;
            padding: 36px 40px;
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .iqeqaq-note-icon {
            font-size: 2.8rem;
            flex-shrink: 0;
        }

        .iqeqaq-note h3 {
            font-size: 1.15rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .iqeqaq-note p {
            font-size: .9rem;
            color: rgba(255, 255, 255, .55);
            line-height: 1.8;
        }

        /* ===== PORTABLE GRADES ===== */
        .sec-grades {
            background: #fff;
        }

        .grades-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 56px;
        }

        .grade-card {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 40px 36px;
            transition: box-shadow .3s, transform .3s;
        }

        .grade-card:hover {
            box-shadow: 0 16px 48px rgba(0, 0, 0, .07);
            transform: translateY(-3px);
        }

        .grade-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .grade-num-badge {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--orange);
            color: #fff;
            font-size: 1rem;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', sans-serif;
            flex-shrink: 0;
        }

        .grade-htext {}

        .grade-axis {
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 2px;
        }

        .grade-h3 {
            font-size: 1.1rem;
            font-weight: 900;
            color: var(--text);
            line-height: 1.3;
        }

        .grade-desc {
            font-size: .88rem;
            color: var(--text-mid);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .grade-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
        }

        .grade-tag {
            padding: 5px 13px;
            border-radius: 20px;
            font-size: .78rem;
            font-weight: 600;
            border: 1px solid rgba(255, 102, 0, .3);
            color: var(--orange);
            background: rgba(255, 102, 0, .07);
        }

        /* ===== JINZAI MAP ===== */
        .sec-jinzai {
            background: var(--bg);
        }

        .jinzai-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-top: 56px;
            position: relative;
        }

        .jinzai-steps::before {
            content: '';
            position: absolute;
            top: 44px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: linear-gradient(90deg, rgba(180, 180, 180, .3) 0%, var(--orange) 100%);
            z-index: 0;
        }

        .jinzai-step {
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 0 12px;
        }

        .jinzai-icon-wrap {
            width: 88px;
            height: 88px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.4rem;
            font-weight: 900;
            position: relative;
            z-index: 2;
            transition: transform .3s;
        }

        .jinzai-step:hover .jinzai-icon-wrap {
            transform: translateY(-4px);
        }

        .jinzai-s1 .jinzai-icon-wrap {
            background: rgba(150, 150, 150, .1);
            border: 2px solid rgba(150, 150, 150, .25);
        }

        .jinzai-s2 .jinzai-icon-wrap {
            background: rgba(150, 150, 150, .12);
            border: 2px solid rgba(150, 150, 150, .28);
        }

        .jinzai-s3 .jinzai-icon-wrap {
            background: rgba(255, 102, 0, .1);
            border: 2px solid rgba(255, 102, 0, .3);
        }

        .jinzai-s4 .jinzai-icon-wrap {
            background: rgba(255, 102, 0, .15);
            border: 2.5px solid var(--orange);
            box-shadow: 0 0 0 8px rgba(255, 102, 0, .08);
        }

        .jinzai-label {
            font-size: 1.35rem;
            font-weight: 900;
            margin-bottom: 6px;
            letter-spacing: -.02em;
        }

        .jinzai-s1 .jinzai-label,
        .jinzai-s2 .jinzai-label {
            color: var(--text-muted);
        }

        .jinzai-s3 .jinzai-label {
            color: var(--text-mid);
        }

        .jinzai-s4 .jinzai-label {
            color: var(--text);
        }

        .jinzai-ruby {
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .04em;
            margin-bottom: 10px;
            display: block;
        }

        .jinzai-s1 .jinzai-ruby,
        .jinzai-s2 .jinzai-ruby {
            color: var(--text-muted);
        }

        .jinzai-s3 .jinzai-ruby {
            color: var(--text-mid);
        }

        .jinzai-s4 .jinzai-ruby {
            color: var(--orange);
        }

        .jinzai-desc {
            font-size: .82rem;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 170px;
            margin: 0 auto;
        }

        .jinzai-s4 .jinzai-desc {
            color: var(--text-mid);
        }

        .jinzai-goal {
            margin-top: 56px;
            background: linear-gradient(135deg, var(--dark) 0%, hsl(22, 85%, 17%) 100%);
            border-radius: 20px;
            padding: 36px 48px;
            display: flex;
            align-items: center;
            gap: 28px;
            border: 1px solid rgba(255, 102, 0, .25);
        }

        .jinzai-goal-icon {
            font-size: 2.8rem;
            flex-shrink: 0;
        }

        .jinzai-goal-txt h3 {
            font-size: 1.15rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 8px;
        }

        .jinzai-goal-txt p {
            font-size: .9rem;
            color: rgba(255, 255, 255, .6);
            line-height: 1.8;
        }

        .jinzai-goal-txt strong {
            color: var(--orange);
        }

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

        .cta-in {
            max-width: 700px;
            margin: 0 auto;
        }

        .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);
        }

        /* ===== CONSULTING ===== */
        .sec-consulting {
            background: var(--bg);
        }

        .consulting-lead-box {
            background: linear-gradient(135deg, var(--dark) 0%, hsl(22, 85%, 17%) 100%);
            border-radius: 20px;
            padding: 40px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            margin-bottom: 56px;
            border: 1px solid rgba(255, 102, 0, .25);
            flex-wrap: wrap;
        }

        .consulting-lead-txt h3 {
            font-size: 1.3rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 8px;
        }

        .consulting-lead-txt p {
            font-size: .92rem;
            color: rgba(255, 255, 255, .6);
            line-height: 1.8;
        }

        .consulting-price-badge {
            background: var(--orange);
            color: #fff;
            border-radius: 12px;
            padding: 16px 28px;
            text-align: center;
            flex-shrink: 0;
        }

        .consulting-price-badge .price-from {
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .08em;
            opacity: .85;
            margin-bottom: 4px;
        }

        .consulting-price-badge .price-num {
            font-size: 1.8rem;
            font-weight: 900;
            font-family: 'Inter', sans-serif;
            line-height: 1;
        }

        .consulting-price-badge .price-unit {
            font-size: .78rem;
            font-weight: 600;
            opacity: .85;
            margin-top: 4px;
        }

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

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

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

        .plan-card.plan-featured {
            border-color: var(--orange);
            background: linear-gradient(160deg, rgba(255, 102, 0, .04) 0%, #fff 60%);
        }

        .plan-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;
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        @media (max-width: 768px) {
            .jinzai-steps {
                grid-template-columns: 1fr 1fr;
                row-gap: 48px;
            }

            .jinzai-steps::before {
                display: none;
            }

            .iqeqaq-note {
                flex-direction: column;
                text-align: center;
            }

            .jinzai-goal {
                flex-direction: column;
                text-align: center;
            }

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

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

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

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

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

            .bridge-row {
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px;
            }

            .bridge-line-l,
            .bridge-line-r {
                display: none;
            }

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

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

        .u-inline-002 {
            transition-delay: .18s;
        }

        .u-inline-003 {
            transition-delay: .28s;
        }

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

        .u-inline-005 {
            transition-delay: .12s;
        }

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

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

        .u-inline-008 {
            color: #fff;
        }

        .u-inline-009 {
            justify-content: center;
        }

        .u-inline-010 {
            color: rgba(255, 255, 255, .55);
            margin: 0 auto;
        }

        .u-inline-011 {
            background: #fff;
        }

        .u-inline-012 {
            max-width: 480px;
            margin: 48px auto 0;
        }