/* ====================================================================
   PREMIUM DRIVING SCHOOL LANDING PAGE — TRUNG TÂM BẮC HÀ
   Visual DNA: Deep Navy #02256F | Primary Navy #063B99 | Royal Blue #1557C8
               Primary Yellow #FFB800 | Light Yellow #FFF4CF | Light BG #F5F8FF
   ==================================================================== */

:root {
    /* --- 1. PALETTE MÀU CHÍNH (DEVTOOLS COLOR CUSTOMIZATION) --- */
    --color-primary-navy: #063B99;
    --color-deep-navy: #02256F;
    --color-royal-blue: #1557C8;
    --color-light-blue-bg: #F5F8FF;
    --color-light-gray-bg: #FFFFFF;
    --color-card-border: rgba(6, 59, 153, 0.12);
    --color-card-border-active: rgba(6, 59, 153, 0.3);
    
    --color-yellow-primary: #ff9f00;
    --color-yellow-hover: #E68F00;
    --color-yellow-light: #FFF4CF;
    --color-yellow-glow: rgba(255, 159, 0, 0.35);
    
    --color-text-dark: #111A33;
    --color-text-navy: #063B99;
    --color-text-muted: #52607A;
    --color-white: #FFFFFF;
    
    --color-red: #E52B2B;
    --color-red-light: #FDE8E8;
    --color-green: #1FA463;
    --color-green-light: #E8F8F0;
    
    /* --- 2. FONT CHỮ VÀ TYPOGRAPHY (DEVTOOLS FONT SYSTEM) --- */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-section-title: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-vietnam: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Cỡ chữ tiêu chuẩn Desktop */
    --fs-hero-h1-main: 45px;
    --fs-hero-h1-sub: 80px;
    --fs-section-title: 45px;
    --fs-section-subtitle: 18px;
    --fs-card-title: 22px;
    --fs-body-regular: 16px;
    --fs-body-sm: 15px;
    --fs-body-xs: 13px;
    --fs-cta-btn: 19px;

    /* Line-heights & Font-weights */
    --lh-title: 1.25;
    --lh-body: 1.6;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --fw-black: 900;
    
    /* --- 3. VIỀN BOX & BO GÓC (DEVTOOLS BOX BORDERS) --- */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 15px;
    --radius-xl: 15px;
    --radius-pill: 9999px;
    
    --border-card-default: 1px solid rgba(6, 59, 153, 0.12);
    --border-card-active: 1.5px solid #063B99;
    --border-yellow-glow: 1.5px solid #FFB800;
    
    /* --- 4. SHADOW & CONTAINER --- */
    --shadow-soft: 0 10px 30px rgba(6, 59, 153, 0.06);
    --shadow-hover: 0 18px 40px rgba(6, 59, 153, 0.12);
    --shadow-cta: none;
    --shadow-modal: 0 25px 60px rgba(2, 37, 111, 0.4);
    
    --container-max: 1380px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------
   RESET & BASE TYPOGRAPHY
   -------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-shadow: none !important;
}

button,
.btn,
.btn-primary,
.btn-secondary,
.btn-nav-primary,
.btn-primary-yellow,
.btn-tmc-cta,
.btn-submit-register-yellow,
.roadmap-tab-btn,
.float-btn,
.hero-promo-badge-card,
.modal-close-btn,
.lightbox-nav-btn,
.lightbox-close-btn,
.nav-phone-btn,
.brand-logo,
.brand-logo-img,
.brand-logo-icon,
.footer-logo-wrap,
.footer-logo-img {
    box-shadow: none !important;
    filter: none !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-light-blue-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

section[id],
.section-padding {
    scroll-margin-top: 85px;
}

/* --------------------------------------------------------------------
   CONTAINER & LAYOUT HELPERS
   -------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

@media (min-width: 768px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding-left: 48px;
        padding-right: 48px;
    }
}

.section-padding {
    padding-top: 44px;
    padding-bottom: 54px;
}

@media (min-width: 992px) {
    .section-padding {
        padding-top: 53px;
        padding-bottom: 77px;
    }
}

.bg-white {
    background-color: #FFFFFF !important;
}

.bg-light-blue {
    background-color: #F5F8FF !important;
}

.bg-light-gray {
    background-color: #FFFFFF !important;
}

.text-navy {
    color: var(--color-primary-navy) !important;
}

.text-yellow {
    color: var(--color-yellow-primary) !important;
}

.text-red {
    color: var(--color-red) !important;
}

.text-green {
    color: var(--color-green) !important;
}

.text-muted {
    color: var(--color-text-muted) !important;
}

.text-center {
    text-align: center;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.italic {
    font-style: italic;
}

.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mt-2 { margin-top: 8px; }
.my-4 { margin-top: 16px; margin-bottom: 16px; }

/* --------------------------------------------------------------------
   TOP ANNOUNCEMENT BAR
   -------------------------------------------------------------------- */
.top-announcement-bar {
    background-color: var(--color-deep-navy);
    color: var(--color-white);
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 100;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.live-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #00E676;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 230, 118, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-contact-item, .top-address-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
}

.top-contact-item:hover {
    color: var(--color-yellow-primary);
}

.top-divider {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 840px) {
    .top-address-item, .top-divider {
        display: none;
    }
    .top-bar-inner {
        justify-content: center;
    }
}

/* --------------------------------------------------------------------
   MAIN NAVBAR (STICKY)
   -------------------------------------------------------------------- */
.main-navbar {
    background-color: var(--color-white);
    box-shadow: 0 4px 20px rgba(6, 59, 153, 0.08);
    position: sticky;
    top: 0;
    z-index: 99;
    transition: var(--transition-fast);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.brand-logo-img {
    height: 44px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    flex-shrink: 0;
    display: block;
}

.brand-logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--color-royal-blue) 0%, var(--color-primary-navy) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.brand-logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary-navy);
    letter-spacing: 0.02em;
    line-height: 1;
}

.logo-sub {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.06em;
    margin-top: 3px;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 37px;
}

@media (min-width: 1100px) {
    .nav-menu {
        display: flex;
        gap: 37px;
    }
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-dark);
    padding: 6px 4px;
    position: relative;
}

.nav-link:hover {
    color: var(--color-primary-navy);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-yellow-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone-btn,
.nav-zalo-btn {
    display: none;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    background-color: #0068FF;
    border: 1.5px solid #0068FF;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    transition: var(--transition-fast);
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    line-height: 1.2;
}

@media (min-width: 600px) {
    .nav-phone-btn,
    .nav-zalo-btn {
        display: inline-flex;
    }
}

.nav-phone-btn:hover,
.nav-zalo-btn:hover {
    background-color: #0056D2;
    border-color: #0056D2;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.btn-nav-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #FFC72C 0%, #FF9E00 100%);
    border: 1.5px solid #FFE082;
    color: var(--color-deep-navy);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    box-shadow: none;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
    box-sizing: border-box;
    line-height: 1.2;
}

.btn-nav-primary:hover {
    background: linear-gradient(180deg, #FFE082 0%, #FFB800 100%);
    border-color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: none;
}

.mobile-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 1100px) {
    .mobile-hamburger {
        display: none;
    }
}

.mobile-hamburger span {
    display: block;
    height: 2.5px;
    width: 100%;
    background: #063B99;
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Mobile Nav Drawer */
.nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-top: 1px solid var(--color-card-border);
    gap: 16px;
}

@media (max-width: 768px) {
    .nav-wrapper {
        height: 70px;
    }

    .brand-logo {
        gap: 8px;
        background: transparent !important;
        border-radius: 0 !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    .brand-logo-img {
        height: 36px;
        width: auto;
        max-width: 155px;
        border-radius: 0 !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    .logo-title {
        font-size: 17.5px;
        font-weight: 800;
        line-height: 1;
    }

    .logo-sub {
        display: none;
    }

    .nav-actions {
        gap: 8px;
    }

    .btn-nav-primary {
        font-size: 15px !important;
        font-weight: 700 !important;
        padding: 13px 22px !important;
    }

    /* TIÊU ĐỀ SECTION TRÊN MOBILE (< 768px): 37PX & CĂN GIỮA */
    h2.section-title-navy,
    .section-title-navy {
        font-size: 37px !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }

    .section-title,
    .sec7-main-title {
        font-size: 30px !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }

    .promo-big-title {
        font-size: 34px !important;
        line-height: 1.15 !important;
        text-align: center !important;
    }

    /* CĂN GIỮA TIÊU ĐỀ CÁC SECTION TRÊN MOBILE (< 768px) (NGOẠI TRỪ HERO CĂN TRÁI) */
    .section-header-center,
    .section-subtitle,
    .banner-heading,
    .stage-card-header,
    .stage-name,
    .sec7-header-wrap,
    .promo-sub-yellow-badge,
    .privilege-heading,
    .modal-title,
    .modal-subtitle {
        text-align: center !important;
    }

    .privilege-heading {
        font-size: 20px !important;
    }

    .form-header-title {
        font-family: var(--font-heading) !important;
        font-size: 22px !important;
        text-align: center !important;
    }

    .section-header-center,
    .sec7-header-wrap,
    .stage-card-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .section-header-center {
        margin: 0 auto 23px auto !important;
    }

    .section-pill-badge,
    .section-divider-car,
    .promo-red-pill-badge,
    .promo-sub-yellow-badge {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .section-divider-car {
        margin-top: 6px !important;
    }

    .pain-down-chevron {
        display: none !important;
    }

    /* Section 6 Roadmap Mobile Tabs: Xếp 2 tab nằm cạnh nhau, font 14px, cuộn ngang */
    .roadmap-tab-buttons-container {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 10px !important;
        justify-content: flex-start !important;
        padding: 4px 4px 10px 4px !important;
        scrollbar-width: none !important;
    }

    .roadmap-tab-buttons-container::-webkit-scrollbar {
        display: none !important;
    }

    .roadmap-tab-btn {
        font-size: 14px !important;
        font-weight: 700 !important;
        padding: 10px 18px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    /* Section 10 Mobile Spacing */
    .section-promo-register {
        padding: 50px 0 50px 0 !important;
        background-position: left bottom !important;
    }

    .promo-register-grid {
        gap: 0px !important;
    }

    /* CÁC BOX CTA TRÊN MOBILE ĐỂ NGHIÊNG NHƯ DESKTOP (TRỪ MENU, FORM, LỊCH KHAI GIẢNG) */
    .hero-promo-badge-card,
    .tuition-cta-wrapper .hero-promo-badge-card,
    .roadmap-cta-group .hero-promo-badge-card,
    .schedule-cta-wrapper .hero-promo-badge-card,
    .tuition-mobile-card .btn-tmc-cta,
    .roadmap-cta-group .btn-navy-gold {
        transform: skewX(-10deg) !important;
        border-radius: 8px !important;
    }

    .hero-promo-badge-card .promo-badge-text,
    .tuition-cta-wrapper .hero-promo-badge-card .promo-badge-text,
    .roadmap-cta-group .hero-promo-badge-card .promo-badge-text,
    .schedule-cta-wrapper .hero-promo-badge-card .promo-badge-text,
    .tuition-mobile-card .btn-tmc-cta > *,
    .roadmap-cta-group .btn-navy-gold .btn-text,
    .roadmap-cta-group .btn-navy-gold .btn-icon {
        transform: skewX(10deg) !important;
    }

    /* GIỮ THẲNG CHO MENU, FORM ĐĂNG KÝ VÀ CÁC THẺ TRONG LỊCH KHAI GIẢNG */
    .btn-nav-primary,
    .btn-nav-zalo,
    .btn-submit-register-yellow,
    .schedule-mobile-cards .btn-tmc-cta,
    #lich-khai-giang .btn-tmc-cta {
        transform: none !important;
    }
}

@media (max-width: 380px) {
    .btn-nav-primary {
        font-size: 13px !important;
        padding: 7px 10px !important;
    }

    .logo-title {
        font-size: 18px;
    }
}

/* --------------------------------------------------------------------
   SECTION HEADERS (RECURRING SYSTEM)
   -------------------------------------------------------------------- */
.section-header-center {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 48px auto;
    position: relative;
}

.section-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-royal-blue) 0%, var(--color-primary-navy) 100%);
    color: var(--color-white);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(6, 59, 153, 0.25);
}

.section-pill-icon-top {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--color-royal-blue) 0%, var(--color-primary-navy) 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(6, 59, 153, 0.25);
}

.section-calendar-top-icon {
    width: 48px;
    height: 48px;
    background: rgba(6, 59, 153, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.faq-top-dialog-icon {
    width: 50px;
    height: 50px;
    background: rgba(6, 59, 153, 0.08);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 12px auto 0 auto;
}

.section-title-navy {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: 37px;
    color: var(--color-primary-navy);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

@media (min-width: 992px) {
    .section-title-navy {
        font-size: 45px;
    }
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

.section-divider-car {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(6, 59, 153, 0.1), rgba(6, 59, 153, 0.6));
}

.section-divider-car .divider-line:last-child {
    background: linear-gradient(90deg, rgba(6, 59, 153, 0.6), rgba(6, 59, 153, 0.1));
}

.header-decorative-accents {
    display: flex;
    justify-content: space-between;
    max-width: 400px;
    margin: 0 auto;
}

.accent-slash {
    width: 24px;
    height: 4px;
    background-color: #64B5F6;
    border-radius: 2px;
}

.accent-slash.left { transform: rotate(-25deg); }
.accent-slash.right { transform: rotate(25deg); }

/* --------------------------------------------------------------------
   SECTION 1 — HERO SECTION
   (Matching Section 1.png)
   -------------------------------------------------------------------- */
.hero-section {
    position: relative;
    background-color: #002e86;
    color: var(--color-white);
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 48px 0;
}

.hero-bg-media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content-col {
    max-width: 720px;
}

.hero-main-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
}

.hero-title-line-1 {
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    color: var(--color-white);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.hero-title-line-2 {
    font-family: var(--font-heading);
    font-size: 86px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #FFE873 0%, #ff9f00 60%, #E68200 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-yellow-primary);
    line-height: 1.35;
    margin-top: -12px;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
    filter: none;
}

.hero-title-badge {
    display: inline-block;
    align-self: flex-start;
    background: linear-gradient(90deg, #0A50C5 0%, #042566 100%);
    border: 1.5px solid #0099FF;
    padding: 6px 20px;
    border-radius: 6px;
    transform: skewX(-10deg);
    box-shadow: 0 6px 20px rgba(2, 37, 111, 0.5), inset 0 0 10px rgba(0, 153, 255, 0.25);
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 23px;
    font-weight: 700;
}

.hero-badge-inner {
    display: inline-block;
    transform: skewX(10deg);
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    font-size: 23px;
    letter-spacing: 0.03em;
    color: var(--color-white);
    white-space: normal;
}

.text-highlight-yellow {
    color: var(--color-yellow-primary);
    font-weight: 700;
    font-size: inherit;
}

@media (min-width: 768px) {
    .hero-title-line-1 { font-size: 51px; }
    .hero-title-line-2 { 
        font-size: 86px; 
        line-height: 1.35; 
        margin-top: -12px;
    }
    .hero-badge-inner { font-size: 23px; font-weight: 700; }
    .hero-title-badge { padding: 6px 20px; font-size: 23px; font-weight: 700; }
}

.hero-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 36px;
    max-width: 640px;
}

.hero-bullet-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-bullet-item:first-child {
    padding-top: 0;
}

.hero-bullet-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bullet-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #02256F;
    border: 1.2px solid var(--color-yellow-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.bullet-icon-circle svg {
    stroke: var(--color-yellow-primary) !important;
    stroke-width: 1.6px;
}

.bullet-text {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.4;
}

.bullet-text .text-yellow {
    color: var(--color-yellow-primary);
    font-weight: 700;
}

.hero-cta-group {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 16px;
}

/* HERO PRIMARY CTA — GIỮ ƯU ĐÃI GIẢM 25% HỌC PHÍ */
.hero-promo-badge-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #FFC72C 0%, #FF9E00 100%);
    border: 1.5px solid #FFE082;
    border-radius: 8px;
    padding: 10px 26px;
    min-height: 58px;
    cursor: pointer;
    transform: skewX(-12deg);
    transition: var(--transition-fast);
    box-shadow: none;
    box-sizing: border-box;
}

.hero-promo-badge-card:hover {
    background: linear-gradient(180deg, #FFE082 0%, #FFB800 100%);
    border-color: #FFFFFF;
    transform: skewX(-12deg) translateY(-2px);
    box-shadow: none;
}

.hero-promo-badge-card .promo-badge-text {
    transform: skewX(12deg);
    text-align: center;
}

.promo-badge-text .promo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-style: italic;
    font-size: 20px;
    letter-spacing: 0.02em;
    color: var(--color-deep-navy);
    margin-bottom: 2px;
    
    line-height: 1.15;
}

.promo-badge-text .promo-sub {
    font-size: 14px;
    color: var(--color-deep-navy);
    font-weight: 700;
    line-height: 1.15;
    opacity: 0.95;
}

.promo-badge-text .promo-sub strong {
    color: #D32F2F;
    font-weight: 800;
}

/* CTA PROMO BADGE CARDS NGOẠI TRỪ HERO (TĂNG KÍCH THƯỚC +25% TRÊN DESKTOP) */
.san-thi-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    width: 100%;
}

@media (max-width: 768px) {
    .san-thi-cta-wrapper {
        margin-top: 24px;
        margin-bottom: 8px;
    }

    .san-thi-cta-wrapper .hero-promo-badge-card {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        min-height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
    }

    .san-thi-cta-wrapper .promo-badge-text .promo-title {
        font-size: 19px;
        font-weight: 800;
        margin: 0;
        line-height: 1.2;
    }
}

@media (min-width: 901px) {
    .tuition-cta-wrapper .hero-promo-badge-card,
    .roadmap-cta-group .hero-promo-badge-card,
    .schedule-cta-wrapper .hero-promo-badge-card {
        padding: 14px 34px;
        min-height: 72px;
        border-radius: 10px;
    }

    .tuition-cta-wrapper .hero-promo-badge-card .promo-badge-text .promo-title,
    .roadmap-cta-group .hero-promo-badge-card .promo-badge-text .promo-title,
    .schedule-cta-wrapper .hero-promo-badge-card .promo-badge-text .promo-title {
        font-size: 25px;
        margin-bottom: 4px;
    }

    .tuition-cta-wrapper .hero-promo-badge-card .promo-badge-text .promo-sub,
    .roadmap-cta-group .hero-promo-badge-card .promo-badge-text .promo-sub,
    .schedule-cta-wrapper .hero-promo-badge-card .promo-badge-text .promo-sub {
        font-size: 17.5px;
    }

    .roadmap-cta-group .btn-navy-gold {
        padding: 16px 34px;
        font-size: 21px;
        min-height: 72px;
        border-radius: 10px;
    }
}

/* HERO SECONDARY CTA — XEM HỌC PHÍ */
.btn-primary-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 10px 24px;
    min-height: 58px;
    border-radius: 8px;
    transform: skewX(-12deg);
    box-shadow: none;
    cursor: pointer;
    transition: var(--transition-fast);
    box-sizing: border-box;
    backdrop-filter: blur(4px);
}

.btn-primary-yellow:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: skewX(-12deg) translateY(-2px);
    box-shadow: none;
}

.btn-primary-yellow .btn-icon {
    display: inline-block;
    transform: skewX(12deg);
    color: #FFFFFF;
    line-height: 1;
}

.btn-primary-yellow .btn-icon svg {
    fill: #FFFFFF !important;
}

.btn-primary-yellow .btn-text {
    display: inline-block;
    transform: skewX(12deg);
    font-style: italic;
    color: #FFFFFF;
}

.btn-arrow-circle {
    width: 30px;
    height: 30px;
    background-color: #FFFFFF;
    color: var(--color-deep-navy);
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    transform: skewX(12deg);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.btn-primary-yellow:hover .btn-arrow-circle {
    background-color: #FFE873;
    color: var(--color-deep-navy);
    transform: skewX(12deg) scale(1.05);
}

/* ====================================================================
   TRUST METRICS BAR (STATS HIGHLIGHTS WITH DYNAMIC MOTION)
   ==================================================================== */
@keyframes statsShimmerLight {
    0% { transform: translateX(-100%) skewX(-25deg); opacity: 0; }
    30% { opacity: 1; }
    60% { opacity: 1; }
    100% { transform: translateX(260%) skewX(-25deg); opacity: 0; }
}

@keyframes statsTrackScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 20px));
    }
}

.section-trust-bar {
    position: relative;
    z-index: 5;
    background: linear-gradient(90deg, #01143D 0%, #063B99 50%, #01143D 100%);
    border-top: 1.5px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.14);
    padding: 22px 0;
    width: 100%;
    overflow: hidden;
    box-shadow: none;
}

.trust-bar-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
    animation: statsShimmerLight 7s infinite ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.stats-marquee-wrapper {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.stats-track {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 129px;
}

.stat-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.stat-item-clone {
    display: none;
}

.stat-item:hover {
    transform: translateY(-2px);
}

/* Vòng tròn chứa icon theo chuẩn Design System Bắc Hà */
.stat-icon-wrap {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFC72C 0%, #FF9E00 100%);
    color: var(--color-deep-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: none;
    box-shadow: none !important;
}

.stat-item:hover .stat-icon-wrap {
    border-color: #FFFFFF;
    box-shadow: none !important;
}

.stat-icon-svg {
    width: 28px;
    height: 28px;
    display: block;
    stroke-width: 2.2px;
}

/* Phần chữ & số */
.stat-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 35px;
    font-weight: 800;
    font-style: italic;
    line-height: 1;
    color: var(--color-yellow-primary);
    white-space: nowrap;
    letter-spacing: -0.01em;
    display: inline-block;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    transition: color 0.2s ease;
}

.stat-item:hover .stat-number {
    color: #FFE082;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.3;
    margin-top: 2px;
    white-space: nowrap;
}

/* HERO MOBILE OVERLAY (Hidden on Desktop) */
.hero-mobile-overlay {
    display: none;
}

/* --------------------------------------------------------------------
   HERO RESPONSIVE (MOBILE & TABLET <= 900px)
   Mobile has full background image covered with full dark navy overlay.
   Desktop remains clean without overlay.
   -------------------------------------------------------------------- */
@media (max-width: 900px) {
    .hero-section {
        position: relative;
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 24px;
        overflow: hidden;
    }
    
    .hero-bg-media {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
    }
    
    .hero-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 75% center;
    }
    
    /* Full overlay on mobile */
    .hero-mobile-overlay {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(2, 37, 111, 0.92) 0%, rgba(2, 37, 111, 0.84) 50%, rgba(2, 37, 111, 0.94) 100%);
        z-index: 2;
    }
    
    .hero-container {
        position: relative;
        z-index: 3;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-content-col {
        max-width: 100%;
    }
    
    .hero-main-title {
        margin-bottom: 18px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }
    
    .hero-title-line-1 {
        font-size: 30px !important;
        line-height: 0.8;
        text-align: left;
    }
    
    .hero-title-line-2 {
        font-size: 43px !important;
        line-height: 1.25;
        margin: 4px 0 10px 0;
        filter: none;
        text-align: left;
    }
    
    .hero-title-badge {
        font-size: 17px;
        font-weight: 700;
        padding: 5px 12px;
        border-radius: 5px;
        transform: skewX(-6deg);
        white-space: normal;
        max-width: 100%;
        box-sizing: border-box;
        line-height: 1.35;
        text-align: left;
        align-self: flex-start;
        margin-left: 0;
        margin-right: auto;
    }
    
    .hero-badge-inner {
        font-size: 17px;
        font-weight: 700;
        transform: skewX(6deg);
        white-space: normal;
        letter-spacing: 0.02em;
    }
    
    .hero-bullet-list {
        gap: 0;
        margin-bottom: 20px;
    }
    
    .hero-bullet-item {
        gap: 12px;
        padding: 9px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-bullet-item:first-child {
        padding-top: 0;
    }

    .hero-bullet-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .bullet-icon-circle {
        width: 32px;
        height: 32px;
        border: 1px solid var(--color-yellow-primary);
    }
    
    .bullet-icon-circle svg {
        width: 16px;
        height: 16px;
        stroke-width: 1.5px;
    }
    
    .bullet-text {
        font-size: 15px;
        line-height: 1.35;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }
    
    .hero-promo-badge-card {
        width: 100%;
        min-height: 52px;
        justify-content: center;
        padding: 10px 16px;
        transform: skewX(-10deg) !important;
        border-radius: 8px;
        box-shadow: none;
        box-sizing: border-box;
    }
    
    .hero-promo-badge-card .promo-badge-text {
        transform: skewX(10deg) !important;
        text-align: center;
    }

    .btn-primary-yellow {
        width: 100%;
        min-height: 52px;
        justify-content: center;
        padding: 10px 16px;
        font-size: 17px;
        transform: skewX(-10deg) !important;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        border: 1.5px solid rgba(255, 255, 255, 0.6);
        color: #FFFFFF;
        box-shadow: none;
        box-sizing: border-box;
    }
    
    .btn-primary-yellow .btn-text,
    .btn-primary-yellow .btn-icon,
    .btn-primary-yellow .btn-arrow-circle {
        transform: skewX(10deg) !important;
    }
    
    .promo-badge-text .promo-title {
        font-size: 17px;
        font-weight: 800;
        letter-spacing: 0.02em;
        margin-bottom: 2px;
    }
    
    .promo-badge-text .promo-sub {
        font-size: 13px;
        opacity: 0.9;
    }
    
    .section-trust-bar {
        position: relative;
        z-index: 3;
        padding: 14px 0;
        overflow: hidden;
    }
    
    .stats-marquee-wrapper {
        padding: 0;
        overflow: hidden;
        width: 100%;
        display: flex;
        -webkit-overflow-scrolling: touch;
    }
    
    .stats-track {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 40px;
        width: max-content;
        animation: statsTrackScroll 14s linear infinite;
        will-change: transform;
    }

    .stats-marquee-wrapper:hover .stats-track,
    .stats-marquee-wrapper:active .stats-track {
        animation-play-state: paused;
    }
    
    .stat-item {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        white-space: nowrap;
        width: auto;
    }
    
    .stat-item-clone {
        display: inline-flex;
    }
    
    .stat-icon-wrap {
        width: 44px;
        height: 44px;
    }
    
    .stat-icon-svg {
        width: 22px;
        height: 22px;
    }
    
    .stat-number {
        font-size: 25px;
        line-height: 1;
        font-feature-settings: "tnum";
        font-variant-numeric: tabular-nums;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

/* --------------------------------------------------------------------
   SECTION 2 — BẢNG HỌC PHÍ
   (Matching Section 2.png)
   -------------------------------------------------------------------- */
.tuition-table-card {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-card-border);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    margin-bottom: 36px;
}

.table-responsive-wrapper {
    width: 100%;
    overflow-x: auto;
}

.tuition-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.tuition-table thead tr {
    background-color: var(--color-primary-navy);
    color: var(--color-white);
}

.tuition-table th {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 18px 24px;
    text-align: left;
}

.tuition-table th.text-center,
.tuition-table th.col-price {
    text-align: center;
}

.tuition-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(6, 59, 153, 0.08);
    vertical-align: middle;
    text-align: left;
}

.tuition-table td.text-center,
.tuition-table td.cell-price-box {
    text-align: center;
}

.tuition-table tbody tr:last-child td {
    border-bottom: none;
}

.tuition-table tbody tr:hover {
    background-color: rgba(6, 59, 153, 0.02);
}

.course-badge-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.course-icon-disk {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-royal-blue) 0%, var(--color-primary-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.course-name-title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 800;
    color: var(--color-primary-navy);
    display: block;
    line-height: 1.1;
}

.course-name-sub {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-dark);
    line-height: 1.3;
}

.tuition-price-highlight {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--color-red);
    letter-spacing: -0.01em;
}

.price-original-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 2px;
}

.price-original {
    font-size: 13.5px;
    color: #94A3B8;
    text-decoration: line-through;
    font-weight: 600;
}

.badge-discount-tag {
    display: inline-block;
    background: #E11D48;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.cell-target {
    font-size: 14.5px;
    line-height: 1.45;
    color: var(--color-text-dark);
}

.tuition-perk-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tuition-perk-list li {
    font-size: 14px;
    line-height: 1.4;
    color: #1e293b;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.tuition-perk-list .check-icon {
    font-size: 13px;
    margin-top: 1px;
    flex-shrink: 0;
}

.row-vip-highlight {
    transition: background-color 0.2s ease;
}

.row-vip-highlight:hover {
    background-color: rgba(255, 199, 44, 0.14) !important;
}

.badge-best-seller {
    display: inline-block;
    background: linear-gradient(180deg, #FFC72C 0%, #FF9E00 100%) !important;
    border: 1px solid #FFE082 !important;
    color: #02256F !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    padding: 6px 8px !important;
    border-radius: 31px !important;
    margin-top: 4px;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 6px rgba(255, 158, 0, 0.25);
    line-height: 1.2;
}

/* MOBILE CARDS FOR TABLES (TUITION & SCHEDULE) */
.tuition-mobile-cards,
.schedule-mobile-cards {
    display: none;
}

@media (max-width: 768px) {
    .tuition-table-card,
    .schedule-table-card {
        display: none !important;
    }

    .tuition-mobile-cards,
    .schedule-mobile-cards {
        display: flex !important;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 28px;
    }

    .tuition-mobile-card,
    .tuition-mobile-card,
    .schedule-mobile-card {
        background-color: var(--color-white);
        border: 1px solid var(--color-card-border);
        border-radius: 15px;
        box-shadow: none !important;
        overflow: hidden;
    }

    .tmc-header,
    .smc-header {
        background: #02256F;
        color: var(--color-white);
        padding: 16px 20px;
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .tmc-icon-badge {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .tmc-title-wrap {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .tmc-title {
        font-family: var(--font-heading);
        font-size: 20px;
        font-weight: 800;
        color: var(--color-white);
        line-height: 1.2;
        margin: 0;
    }

    .tmc-sub {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
    }

    .smc-code-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background-color: var(--color-white);
        color: var(--color-primary-navy);
        padding: 5px 12px;
        border-radius: var(--radius-pill);
        font-family: var(--font-heading);
        font-size: 15px;
        font-weight: 800;
        flex-shrink: 0;
    }

    .smc-course-title {
        font-family: var(--font-heading);
        font-size: 18px;
        font-weight: 800;
        color: var(--color-white);
        line-height: 1.2;
    }

    .smc-course-title span {
        font-size: 14px;
        font-weight: 500;
        opacity: 0.9;
    }

    .tmc-body,
    .smc-body {
        padding: 16px 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .tmc-info-row {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 12px !important;
        font-size: 15px;
        line-height: 1.5;
        padding-bottom: 9px;
        border-bottom: 1px dashed #EAEFF6;
        text-align: left;
    }

    .smc-info-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
        font-size: 15px;
        padding-bottom: 8px;
        border-bottom: 1px dashed #EAEFF6;
    }

    .tmc-info-row:last-child,
    .smc-info-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .tmc-label {
        color: var(--color-text-muted);
        font-weight: 500;
        font-size: 14px;
        line-height: 1.4;
        text-align: left;
        flex-shrink: 0;
    }

    .smc-label {
        color: var(--color-text-muted);
        font-weight: 500;
        min-width: 80px;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .tmc-value {
        color: var(--color-text-dark);
        line-height: 1.4;
        text-align: right;
        font-size: 15px;
        font-weight: 700;
    }

    .smc-value {
        color: var(--color-text-dark);
    }

    .tmc-price-box,
    .tmc-price-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        background: #FFFBEB !important;
        padding: 12px 14px !important;
        border-radius: 12px !important;
        border: 1.5px solid #FDE68A !important;
        margin-top: 10px !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    .tmc-price-top {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        font-size: 13px !important;
        border-bottom: 1px dashed rgba(217, 119, 6, 0.25) !important;
        padding-bottom: 8px !important;
    }

    .tmc-price-label-small {
        color: #92400E !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
    }

    .tmc-original-group {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }

    .tmc-price-original {
        color: #94A3B8 !important;
        text-decoration: line-through !important;
        font-weight: 600 !important;
        font-size: 13.5px !important;
    }

    .tmc-price-bottom {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
    }

    .tmc-price-bottom .tmc-label,
    .tmc-price-label-main {
        color: #02256F !important;
        font-weight: 700 !important;
        font-size: 14px !important;
        white-space: nowrap !important;
    }

    .tmc-price,
    .tmc-price-box .tmc-price,
    .tmc-price-row .tmc-price {
        font-family: var(--font-heading) !important;
        font-size: 22px !important;
        font-weight: 800 !important;
        color: var(--color-red) !important;
        line-height: 1.1 !important;
        display: inline-flex !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
        white-space: nowrap !important;
    }

    .smc-status-row {
        padding-top: 4px;
    }

    .schedule-mobile-card .status-pill {
        font-size: 10px;
        padding: 4px 10px;
        gap: 5px;
    }

    .schedule-mobile-card .status-dot-red,
    .schedule-mobile-card .status-dot-yellow {
        width: 6px;
        height: 6px;
    }

    .tmc-action,
    .smc-action {
        padding: 0 20px 18px 20px;
    }

    .btn-tmc-cta {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: linear-gradient(180deg, #FFC72C 0%, #FF9E00 100%);
        color: var(--color-deep-navy);
        font-family: var(--font-heading);
        font-size: 15px;
        font-weight: 800;
        padding: 12px 20px;
        border-radius: var(--radius-pill);
        border: 1.5px solid #FFE082;
        cursor: pointer;
        transition: var(--transition-fast);
        box-shadow: none;
    }

    .btn-tmc-cta .btn-arrow-circle {
        display: none !important;
    }

    .btn-tmc-cta:hover {
        background: linear-gradient(180deg, #FFE082 0%, #FFB800 100%);
        border-color: #FFFFFF;
    }

    .btn-tmc-cta:active {
        transform: scale(0.98);
    }
}

/* 4 TUITION DETAIL CARDS (2x2 Grid) */
.tuition-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
}

@media (min-width: 860px) {
    .tuition-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.policy-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-card-border);
    box-shadow: var(--shadow-soft);
    padding: 28px;
    transition: var(--transition-normal);
}

.policy-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--color-card-border-active);
}

.policy-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.policy-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: -14px;
}

.bg-green-light { background-color: var(--color-green-light); }
.bg-red-light { background-color: var(--color-red-light); }
.bg-navy-light { background-color: rgba(6, 59, 153, 0.08); }

.policy-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.policy-list, .policy-list-sub {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.policy-list li, .policy-list-sub li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    line-height: 1.5;
}

.check-icon {
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.green-check { color: var(--color-green); }
.red-cross { color: var(--color-red); }
.blue-check { color: var(--color-primary-navy); }

/* TUITION CTA WRAPPER (MATCHING HERO PRIMARY CTA) */
.tuition-cta-wrapper {
    display: flex;
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
    width: 100%;
}



/* --------------------------------------------------------------------
   SECTION 3 — ALBUM HÌNH ẢNH (MARQUEE)
   Flush edge-to-edge, 0 gaps, 0 white padding, 50% larger (300px height)
   -------------------------------------------------------------------- */
.section-gallery-marquee {
    width: 100%;
    background-color: #031b4e;
    padding: 0;
    margin: 0;
    border: none;
    overflow: hidden;
    line-height: 0;
    position: relative;
    z-index: 5;
}

.marquee-track-container {
    width: 100%;
    height: 360px;
    overflow: hidden;
    position: relative;
    line-height: 0;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    background-color: #031b4e;
}

@keyframes marqueeInfiniteScroll {
    0% {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
        -webkit-transform: translate3d(-50%, 0, 0);
    }
}

@-webkit-keyframes marqueeInfiniteScroll {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-50%, 0, 0);
    }
}

.marquee-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    width: max-content;
    height: 100%;
    line-height: 0;
    will-change: transform;
    animation: marqueeInfiniteScroll 35s linear infinite;
    -webkit-animation: marqueeInfiniteScroll 35s linear infinite;
    align-items: center;
}

.marquee-track-container:hover .marquee-track,
.marquee-track.is-paused {
    animation-play-state: paused !important;
    -webkit-animation-play-state: paused !important;
}

.marquee-item {
    position: relative;
    height: 100%;
    aspect-ratio: 3 / 4;
    width: auto;
    min-width: 200px;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    line-height: 0;
    cursor: pointer;
    background-color: #031b4e;
}

.marquee-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.3s ease;
}

.marquee-item:hover img {
    transform: scale(1.04);
    filter: brightness(1.08);
}

@media (max-width: 768px) {
    .marquee-track-container {
        height: 260px;
    }
    
    .marquee-item {
        min-width: 195px;
        aspect-ratio: 3 / 4;
    }
    
    .marquee-track {
        gap: 0;
        animation-duration: 28s;
        -webkit-animation-duration: 28s;
    }
}

/* --------------------------------------------------------------------
   SECTION 4 — VẤN ĐỀ
   (Matching Section 4.png)
   -------------------------------------------------------------------- */
.pain-cards-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 8px 4px 18px 4px;
    margin-bottom: 8px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.pain-cards-grid::-webkit-scrollbar {
    display: none;
}

.pain-card {
    flex: 0 0 76%;
    max-width: 275px;
    min-width: 235px;
    scroll-snap-align: start;
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-card-border);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-card-border-active);
}

.pain-card-top-media {
    position: relative;
    height: 155px;
    overflow: visible;
}

.pain-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pain-number-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 38px;
    height: 38px;
    background-color: var(--color-deep-navy);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.pain-icon-overlap {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(6, 59, 153, 0.15);
    border: 2px solid var(--color-white);
    z-index: 3;
}

.pain-card-body {
    padding: 30px 16px 20px 16px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pain-title {
    font-family: var(--font-heading);
    font-size: 16.5px;
    font-weight: 800;
    color: var(--color-primary-navy);
    letter-spacing: 0.01em;
    line-height: 1.35;
    margin-bottom: 8px;
    min-height: 44px;
}

.pain-desc {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.45;
}

/* MOBILE INDICATOR DOTS */
.pain-scroll-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 4px 0 20px 0;
}

.pain-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: #CBD5E1;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pain-dot.active {
    width: 24px;
    background: linear-gradient(90deg, #063B99, #1E40AF);
}

/* DESKTOP (>= 992px): 4 COLUMNS GRID IN 1 ROW */
@media (min-width: 992px) {
    .pain-cards-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow-x: visible;
        gap: 20px;
        padding: 0;
        margin-bottom: 20px;
    }

    .pain-card {
        flex: none;
        max-width: none;
        min-width: 0;
    }

    .pain-card-top-media {
        height: 185px;
    }

    .pain-icon-overlap {
        width: 54px;
        height: 54px;
        bottom: -24px;
    }

    .pain-card-body {
        padding: 36px 18px 22px 18px;
    }

    .pain-title {
        font-size: 18px;
        min-height: 48px;
    }

    .pain-desc {
        font-size: 14.5px;
    }

    .pain-scroll-indicator {
        display: none;
    }
}

/* YELLOW CONCLUSION BOX */
.pain-conclusion-alert-box {
    background-color: var(--color-yellow-light);
    border: 1.5px solid var(--color-yellow-primary);
    border-radius: var(--radius-xl);
    padding: 24px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: var(--shadow-soft);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
}

.alert-box-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-box-text {
    text-align: center;
}

.alert-lead {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.alert-main-statement {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary-navy);
    line-height: 1.25;
}

.highlight-underline {
    display: inline;
    color: var(--color-primary-navy);
}

@media (max-width: 640px) {
    .pain-conclusion-alert-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .alert-main-statement {
        font-size: 20px;
    }
}

/* --------------------------------------------------------------------
   SECTION 5 — ĐIỂM MẠNH
   (Matching Section 5.png)
   -------------------------------------------------------------------- */
.experience-rows-list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 14px !important;
    padding: 10px 16px 20px 16px !important;
    margin: 0 -16px !important;
    scrollbar-width: none !important;
    scroll-behavior: smooth !important;
}

.experience-rows-list::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.exp-row-pill {
    flex: 0 0 78% !important;
    max-width: 290px !important;
    min-width: 230px !important;
    scroll-snap-align: start !important;
    display: flex !important;
    flex-direction: column !important;
    background-color: var(--color-white) !important;
    border-radius: 16px !important;
    border: 1px solid var(--color-card-border) !important;
    box-shadow: 0 4px 14px rgba(6, 59, 153, 0.08) !important;
    overflow: hidden !important;
    transition: var(--transition-normal) !important;
    flex-shrink: 0 !important;
}

.exp-row-pill:hover {
    box-shadow: var(--shadow-hover) !important;
    border-color: var(--color-card-border-active) !important;
}

.exp-media-col {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1.97 / 1 !important;
    height: auto !important;
    min-height: auto !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
    background-color: #F1F5F9 !important;
}

.exp-media-col picture {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.exp-row-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

.exp-content-col {
    padding: 16px 14px 18px 14px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    flex-grow: 1 !important;
}

/* MOBILE INDICATOR DOTS FOR SECTION 5 */
.exp-scroll-indicator {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 4px 0 20px 0 !important;
}

.exp-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 4px !important;
    background-color: #CBD5E1 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.exp-dot.active {
    width: 24px !important;
    background: linear-gradient(90deg, #063B99, #1E40AF) !important;
}

/* DESKTOP (>= 992px): RESTORE ALTERNATING PILLS LIST */
@media (min-width: 992px) {
    .experience-rows-list {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        overflow-x: visible !important;
        gap: 20px !important;
        max-width: 1100px !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .exp-row-pill {
        flex: none !important;
        max-width: 100% !important;
        width: 100% !important;
        min-width: 0 !important;
        display: grid !important;
        border-radius: var(--radius-xl) !important;
    }

    .exp-row-pill.img-left {
        grid-template-columns: 460px 1fr !important;
    }

    .exp-row-pill.img-right {
        grid-template-columns: 1fr 460px !important;
    }

    .exp-row-pill.img-right .exp-media-col {
        order: 2 !important;
    }

    .exp-row-pill.img-right .exp-content-col {
        order: 1 !important;
    }

    .exp-media-col {
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: 1.97 / 1 !important;
        min-height: 230px !important;
    }

    .exp-content-col {
        padding: 28px 32px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 20px !important;
    }

    .exp-scroll-indicator {
        display: none !important;
    }
}

.exp-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-royal-blue) 0%, var(--color-primary-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(6, 59, 153, 0.2);
}

.exp-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary-navy);
    letter-spacing: 0.01em;
    line-height: 1.2;
    margin-bottom: 6px;
}

.exp-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* --------------------------------------------------------------------
   SECTION 6 — LỘ TRÌNH ĐÀO TẠO
   (Matching Section 6.png)
   -------------------------------------------------------------------- */
#lo-trinh .section-header-center {
    margin-bottom: 24px;
}

.roadmap-tab-buttons-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.roadmap-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-white);
    color: var(--color-primary-navy);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--color-card-border);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: none;
}

.roadmap-tab-btn.active {
    background-color: var(--color-primary-navy);
    color: var(--color-white);
    border-color: var(--color-primary-navy);
    box-shadow: none;
}

.roadmap-tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.roadmap-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.roadmap-unified-box {
    background: linear-gradient(135deg, var(--color-deep-navy) 0%, var(--color-primary-navy) 100%);
    color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 36px 44px;
    margin-top: 36px;
    margin-bottom: 36px;
    box-shadow: 0 12px 32px rgba(2, 37, 111, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: visible;
}

.roadmap-banner-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.course-banner-text {
    flex: 1;
    z-index: 2;
}

.course-banner-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 3;
}

.banner-heading {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.1vw, 26px);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin: 0;
    max-width: none;
    white-space: nowrap;
}

.roadmap-br-mobile {
    display: none;
}

.banner-car-img,
.banner-moto-img {
    height: 190px;
    max-height: 210px;
    max-width: 420px;
    width: auto;
    object-fit: contain;
    margin-top: -60px;
    margin-bottom: -40px;
    filter: none !important;
    box-shadow: none !important;
    transition: transform 0.3s ease;
}

.banner-car-img:hover,
.banner-moto-img:hover {
    transform: scale(1.03) translateY(-4px);
    filter: none !important;
}

.roadmap-banner-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    border-bottom: 1px dashed rgba(255, 199, 44, 0.4);
    margin: 28px 0 24px 0;
}

.roadmap-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.roadmap-step-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

.roadmap-step-card:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: #FFC72C;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.step-card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.step-badge-pill {
    display: inline-block;
    background: linear-gradient(180deg, #FFC72C 0%, #FF9E00 100%);
    color: #02256F;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.step-card-title {
    font-family: var(--font-heading);
    font-size: 16.5px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 0;
}

.step-card-body {
    flex-grow: 1;
}

.step-card-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.45;
    margin: 0;
}

@media (max-width: 991px) {
    .banner-car-img {
        height: 170px;
        max-height: 180px;
        max-width: 340px;
        margin-top: -60px;
        margin-bottom: -35px;
    }

    .roadmap-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .roadmap-unified-box {
        padding: 24px 16px;
        margin-top: 20px;
        margin-bottom: 24px;
    }

    .roadmap-banner-top {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .course-banner-media {
        margin-top: 8px;
    }

    .roadmap-br-mobile {
        display: block;
    }

    .banner-heading {
        font-size: 22px !important;
        line-height: 1.35 !important;
        white-space: normal !important;
        text-align: center !important;
        letter-spacing: 0;
    }

    .banner-audience {
        font-size: 15px;
    }

    .banner-car-img {
        height: auto;
        max-height: 180px;
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 0;
    }

    .roadmap-banner-divider {
        margin: 20px 0;
    }

    .roadmap-steps-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .roadmap-step-card {
        padding: 16px 14px;
        text-align: left;
    }

    .step-card-header {
        align-items: flex-start;
    }
}

.stage-card-bottom-media {
    height: 140px;
    overflow: hidden;
}

.stage-card-bottom-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stage-connector-arrow {
    display: none !important;
}

.roadmap-cta-group {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}

/* --------------------------------------------------------------------
   NAVY-GOLD CTA BUTTON (PHƯƠNG ÁN 1: NỀN XANH NAVY ĐẬM — CHỮ VÀNG ÁNH KIM)
   -------------------------------------------------------------------- */
.btn-navy-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #02256F 0%, #063B99 100%);
    color: #FFB800;
    border: 1.5px solid #FF9F00;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 10px 24px;
    min-height: 58px;
    border-radius: 8px;
    transform: skewX(-12deg);
    box-shadow: 0 4px 16px rgba(2, 37, 111, 0.25);
    cursor: pointer;
    transition: var(--transition-fast);
    box-sizing: border-box;
    text-decoration: none;
}

.btn-navy-gold:hover {
    background: linear-gradient(135deg, #063B99 0%, #1557C8 100%);
    border-color: #FFD54F;
    color: #FFE082;
    transform: skewX(-12deg) translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 159, 0, 0.4), 0 4px 12px rgba(6, 59, 153, 0.3);
}

.btn-navy-gold:active {
    transform: skewX(-12deg) translateY(0);
}

.btn-navy-gold .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: skewX(12deg);
    color: #FFB800;
    line-height: 1;
}

.btn-navy-gold .btn-icon svg {
    fill: #FFB800 !important;
    transition: var(--transition-fast);
}

.btn-navy-gold:hover .btn-icon svg {
    fill: #FFE082 !important;
}

.btn-navy-gold .btn-text {
    display: inline-block;
    transform: skewX(12deg);
    font-style: italic;
    color: #FFB800;
    font-weight: 800;
    transition: color var(--transition-fast);
}

.btn-navy-gold:hover .btn-text {
    color: #FFE082;
}

.btn-navy-gold .btn-arrow-circle {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #FFC72C 0%, #FF9E00 100%);
    color: #02256F;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    transform: skewX(12deg);
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: var(--transition-fast);
}

.btn-navy-gold:hover .btn-arrow-circle {
    background: #FFFFFF;
    color: #063B99;
    transform: skewX(12deg) translateX(3px);
}

@media (max-width: 600px) {
    .roadmap-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }

    .btn-navy-gold {
        width: 100%;
        min-height: 52px;
        font-size: 16px;
        padding: 10px 16px;
    }

    .roadmap-cta-group .hero-promo-badge-card {
        width: 100%;
        min-height: 52px;
    }
}

.promo-badge-red-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-white);
    border: 1.5px solid var(--color-red);
    border-radius: var(--radius-md);
    padding: 10px 20px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: none;
}

.promo-badge-red-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.badge-red-icon {
    width: 36px;
    height: 36px;
    background-color: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-red-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 17px;
    color: var(--color-red);
}

.badge-red-sub {
    font-size: 14px;
    color: var(--color-text-dark);
}


/* --------------------------------------------------------------------
   SECTION 8 — TESTIMONIALS (CAROUSEL)
   (Matching Section 8.png)
   -------------------------------------------------------------------- */
.testimonials-carousel-wrapper {
    position: relative;
    margin-bottom: 28px;
}

.carousel-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 1.5px solid var(--color-card-border);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    color: var(--color-primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 15;
}

.carousel-arrow-btn.prev-btn {
    left: -22px;
}

.carousel-arrow-btn.next-btn {
    right: -22px;
}

.carousel-arrow-btn:hover {
    background-color: var(--color-primary-navy);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.05);
}

.testimonials-cards-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 12px 4px 16px 4px;
    width: 100%;
    scrollbar-width: none;
}

.testimonials-cards-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 327px;
    max-width: 327px;
    width: 327px;
    scroll-snap-align: center;
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-card-border);
    box-shadow: var(--shadow-soft);
    padding: 22px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--color-card-border-active);
    transform: translateY(-3px);
}

@media (min-width: 768px) {
    .testimonials-cards-track {
        gap: 24px;
    }
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
        width: auto;
        padding: 24px;
        scroll-snap-align: start;
    }
}

@media (min-width: 1100px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
    }
}

@media (max-width: 767px) {
    .testimonials-carousel-wrapper {
        position: relative;
        margin-bottom: 12px;
        padding: 0;
    }

    .testimonials-cards-track {
        gap: 16px;
        padding: 4px 0 16px 0;
        scroll-snap-type: x mandatory;
    }

    .testimonial-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 22px 18px;
        scroll-snap-align: center;
        box-sizing: border-box;
    }

    .carousel-arrow-btn {
        width: 36px !important;
        height: 36px !important;
        display: flex !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 15 !important;
        box-shadow: 0 4px 12px rgba(6, 59, 153, 0.25) !important;
        background: rgba(255, 255, 255, 0.95) !important;
    }

    .carousel-arrow-btn.prev-btn {
        left: -10px !important;
    }

    .carousel-arrow-btn.next-btn {
        right: -10px !important;
    }

    .testimonial-quote-box {
        padding: 16px;
    }

    .quote-text {
        font-size: 14.5px;
        line-height: 1.6;
    }

    .carousel-pagination-dots {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }
}

.testimonial-info-block {
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.student-header-meta {
    margin-bottom: 12px;
}

.student-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary-navy);
    line-height: 1.25;
    margin-bottom: 4px;
}

.student-meta {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.student-course {
    font-size: 15px;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.student-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    margin-bottom: 14px;
    white-space: nowrap;
}

.stars-gold {
    color: var(--color-yellow-primary);
    font-size: 18px;
    letter-spacing: 2px;
}

.testimonial-quote-box {
    position: relative;
    background: #F5F8FF;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    flex-grow: 1;
}

.quote-text {
    font-size: 15px;
    color: var(--color-text-dark);
    line-height: 1.65;
    font-style: italic;
    margin: 0;
}

/* CAROUSEL DOTS */
.carousel-pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
}

.carousel-pagination-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(6, 59, 153, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-pagination-dots .dot.active {
    width: 26px;
    border-radius: var(--radius-pill);
    background-color: var(--color-primary-navy);
}

/* REVIEWS PROOF BAR */
.reviews-proof-bar-container {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-card-border);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .reviews-proof-bar-container {
        grid-template-columns: 1fr 480px;
    }
}

.proof-items-left {
    padding: 24px 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 600px) {
    .proof-items-left {
        grid-template-columns: repeat(4, 1fr);
    }
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(6, 59, 153, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.proof-text {
    font-size: 14px;
    line-height: 1.35;
    color: var(--color-text-dark);
}

.proof-highlight-right {
    background-color: var(--color-deep-navy);
    color: var(--color-white);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.proof-thumb-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.proof-highlight-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}

/* --------------------------------------------------------------------
   SECTION 9 — LỊCH KHAI GIẢNG
   (Matching Section 9.png)
   -------------------------------------------------------------------- */
.schedule-table-card {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-card-border);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    margin-bottom: 28px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 820px;
}

.schedule-table thead tr {
    background-color: var(--color-primary-navy);
    color: var(--color-white);
}

.schedule-table th {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 16px 20px;
}

.schedule-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(6, 59, 153, 0.08);
    vertical-align: middle;
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

.code-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(6, 59, 153, 0.08);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
}

.code-icon-car {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-text {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-primary-navy);
}

.spec-name {
    font-family: var(--font-heading);
    font-size: 18px;
}

.spec-type {
    font-size: 14px;
}

.date-cell-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 4px;
}

/* Status Pills */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
}

.status-urgent {
    background-color: #FFF0F0;
    border: 1px solid #FFCDD2;
    color: #D32F2F;
}

.status-urgent .status-lead,
.status-urgent .status-rem {
    color: #D32F2F;
    font-weight: 800;
}

.status-accepting {
    background-color: #FFF8E1;
    border: 1px solid #FFE082;
    color: #B45309;
}

.status-accepting .status-lead,
.status-accepting .status-rem {
    color: #B45309;
    font-weight: 800;
}

.status-dot-red {
    width: 8px;
    height: 8px;
    background-color: #D32F2F;
    border-radius: 50%;
    animation: pulseRed 1.8s infinite;
}

@keyframes pulseRed {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(211, 47, 47, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

.status-dot-yellow {
    width: 8px;
    height: 8px;
    background-color: #D97706;
    border-radius: 50%;
}

.status-lead {
    font-weight: 800;
    color: inherit;
}

/* SCHEDULE WARNING BOX */
.schedule-warning-box {
    background-color: var(--color-yellow-light);
    border: 1px solid #FFE082;
    border-radius: var(--radius-xl);
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 28px;
}

.warning-text {
    text-align: center;
    width: 100%;
}

.warning-lead {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: #B45309;
    margin-bottom: 6px;
}

.warning-detail {
    font-size: 15px;
    color: var(--color-text-dark);
    line-height: 1.5;
}

/* SECTION 9 CTA WRAPPER (MATCHING HERO PRIMARY CTA) */
.schedule-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
    width: 100%;
}

.promo-bar-arrow-btn {
    width: 44px;
    height: 44px;
    background-color: var(--color-yellow-primary);
    color: var(--color-deep-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .schedule-cta-promo-bar {
        flex-direction: column;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: 24px;
    }
}

/* --------------------------------------------------------------------
   SECTION 10 — PROMO & REGISTRATION
   (Matching Section 10.png)
   -------------------------------------------------------------------- */
.section-promo-register {
    background: url('assets/images/cta-bg-motorbike.webp') left bottom / cover no-repeat,
                url('../assets/images/cta-bg-motorbike.webp') left bottom / cover no-repeat,
                #031B4E;
    background-position: left bottom !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    color: var(--color-white);
    padding: 80px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.promo-register-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .promo-register-grid {
        grid-template-columns: 1fr 440px;
        gap: 40px;
        align-items: center;
        max-width: 980px;
    }
}

.promo-left-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 992px) {
    .promo-left-col {
        align-items: flex-start;
        text-align: left;
    }
}

.promo-flame-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-red);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 6px 18px;
    border-radius: var(--radius-sm);
    margin: 0 auto 16px auto;
}

@media (min-width: 992px) {
    .promo-flame-badge {
        margin: 0 0 16px 0;
    }
}

.promo-big-title {
    font-family: "Montserrat", sans-serif;
    font-size: 37px;
    font-weight: 800;
    font-style: italic;
    line-height: 1.15;
    letter-spacing: 0.01em;
    text-align: center;
    margin: 0 auto 16px auto;
}

@media (min-width: 992px) {
    .promo-big-title {
        font-size: 48px;
        text-align: left;
        margin: 0 0 18px 0;
    }
}

.promo-sub-yellow-badge {
    display: inline-block;
    background-color: var(--color-yellow-primary);
    color: var(--color-deep-navy);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.02em;
    margin: 0 auto 24px auto;
    text-align: center;
}

@media (min-width: 992px) {
    .promo-sub-yellow-badge {
        margin: 0;
    }
}

/* SPECIAL PRIVILEGES CARD (ENLARGED +20% ON DESKTOP) */
.promo-privileges-card {
    background-color: var(--color-white);
    color: var(--color-text-dark);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin: 0 auto 24px auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 530px;
    text-align: left;
}

@media (max-width: 768px) {
    .promo-privileges-card {
        width: 100%;
        max-width: 100%;
        padding: 18px 20px;
    }
}

.privilege-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 16px;
}

.gift-box-icon {
    font-size: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.privilege-heading {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 800;
    color: var(--color-primary-navy);
    letter-spacing: 0.01em;
    margin: 0;
    text-align: center;
}

.privilege-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.privilege-icon-blue {
    width: 42px;
    height: 42px;
    background-color: var(--color-primary-navy);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.privilege-desc {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.4;
}

.privilege-divider-dashed {
    height: 1px;
    border-top: 1px dashed rgba(6, 59, 153, 0.2);
    margin: 14px 0;
}

/* URGENCY COUNTER CAPSULE (HIGH CONTRAST & CENTERED) */
.promo-urgency-counter-capsule {
    background: #D32F2F;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 14px 28px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: none !important;
    margin: 0 auto;
    text-align: center;
}

.urgency-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.urgency-clock-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.urgency-label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 17px;
    color: #FFFFFF;
    letter-spacing: 0.02em;
}

.urgency-divider-line {
    width: 100%;
    max-width: 220px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.35);
    margin: 2px 0;
}

.urgency-slots-count {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.slots-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #FFE082;
}

.slots-text {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: #FFFFFF;
}

/* REGISTRATION FORM CARD (RIGHT) - COMPACT DESKTOP (-30%) */
.registration-form-card {
    background-color: var(--color-white);
    color: var(--color-text-dark);
    border-radius: var(--radius-xl);
    padding: 22px 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
}

.form-card-top-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-card-border);
}

.form-header-icon {
    width: 40px;
    height: 40px;
    background: rgba(6, 59, 153, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-header-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary-navy);
    line-height: 1.25;
    letter-spacing: 0.01em;
    text-align: center;
}

@keyframes blinkFlashContinuous {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.12;
    }
}

.form-slots-yellow-banner {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 2px 0 10px 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #02256F;
    margin-bottom: 14px;
    box-shadow: none !important;
}

.countdown-slots-pill {
    font-family: var(--font-heading);
    font-size: 26px !important;
    font-weight: 900;
    color: #DC2626 !important;
    display: inline-block;
    padding: 0 4px;
    letter-spacing: 0.02em;
    line-height: 1;
    vertical-align: middle;
    animation: blinkFlashContinuous 0.85s ease-in-out infinite !important;
    transition: color 0.2s ease;
}

.form-hot-flame-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.form-group {
    margin-bottom: 12px;
}

.form-label {
    display: block;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-deep-navy);
    line-height: 1.2;
    margin-bottom: 4px;
}

.form-input, .form-select {
    width: 100%;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--color-text-dark);
    background-color: #F8FAFC;
    border: 1.5px solid #CBD5E1;
    border-radius: var(--radius-md);
    padding: 10px 14px;
    transition: var(--transition-fast);
    outline: none;
}

.form-input:focus, .form-select:focus {
    border-color: var(--color-royal-blue);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(21, 87, 200, 0.15);
}

.custom-select-wrapper {
    position: relative;
}

.btn-submit-register-yellow {
    width: 100%;
    background: linear-gradient(180deg, #FFC72C 0%, #FF9E00 100%);
    border: 1.5px solid #FFE082;
    color: var(--color-deep-navy);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 12px 16px;
    border-radius: var(--radius-pill);
    box-shadow: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.btn-submit-register-yellow:hover {
    background: linear-gradient(180deg, #FFE082 0%, #FFB800 100%);
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: none;
}

.form-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

.lock-shield-icon {
    flex-shrink: 0;
}

.security-text {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.45;
    text-align: center;
}

@media (max-width: 480px) {
    .registration-form-card {
        padding: 24px 20px;
    }
}

/* --------------------------------------------------------------------
   SECTION 11 — FAQ ACCORDION
   (Matching Secion 11.png)
   -------------------------------------------------------------------- */
.faq-two-columns-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .faq-two-columns-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion-item {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--color-card-border);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-accordion-item:hover {
    border-color: var(--color-royal-blue);
}

.faq-accordion-item.active {
    border-color: rgba(6, 59, 153, 0.35);
    box-shadow: var(--shadow-hover);
}

.faq-question-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-num-badge {
    width: 36px;
    height: 36px;
    background-color: var(--color-primary-navy);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}

.faq-question-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary-navy);
    line-height: 1.3;
    flex-grow: 1;
}

.faq-chevron-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-accordion-item.active .faq-chevron-icon {
    transform: rotate(180deg);
}

.faq-answer-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-accordion-item.active .faq-answer-collapse {
    max-height: 300px;
}

.faq-answer-body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text-dark);
    line-height: 1.6;
    padding: 0 20px 18px 70px;
}

@media (max-width: 600px) {
    .faq-answer-body {
        padding-left: 20px;
    }
}

/* --------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------- */
.main-footer {
    background-color: var(--color-deep-navy);
    color: var(--color-white);
    padding: 48px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.footer-logo-img {
    height: 52px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    display: block;
}

.footer-company-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}

.footer-contacts-line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
}

.footer-sep {
    color: var(--color-yellow-primary);
}

.footer-link:hover {
    color: var(--color-yellow-primary);
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

/* --------------------------------------------------------------------
   FLOATING ACTION BUTTONS (ZALO / PHONE)
   -------------------------------------------------------------------- */
.floating-quick-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 95;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: transform var(--transition-fast), filter var(--transition-fast);
}

.float-btn:hover {
    transform: scale(1.08);
}

.float-btn:active {
    transform: scale(0.95);
}

.float-btn-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    display: block;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

@media (max-width: 480px) {
    .floating-quick-contact {
        right: 16px;
        bottom: 16px;
        gap: 10px;
    }
    
    .float-btn {
        width: 48px;
        height: 48px;
    }
}

/* --------------------------------------------------------------------
   MODAL POPUP
   -------------------------------------------------------------------- */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 37, 111, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.modal-dialog-box {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 100%;
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow-modal);
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.modal-backdrop.open .modal-dialog-box {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(6, 59, 153, 0.08);
    border-radius: 50%;
    font-size: 18px;
    color: var(--color-primary-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}

.modal-form-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-gift-icon {
    font-size: 35px;
    margin-bottom: 6px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 800;
    color: var(--color-primary-navy);
    letter-spacing: 0.01em;
}

.modal-subtitle {
    font-size: 15px;
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------
   TOAST NOTIFICATION
   -------------------------------------------------------------------- */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--color-deep-navy);
    color: var(--color-white);
    border: 2px solid var(--color-yellow-primary);
    border-radius: var(--radius-pill);
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

/* --------------------------------------------------------------------
   GALLERY LIGHTBOX POPUP MODAL (FULLSCREEN IMAGE VIEWER)
   -------------------------------------------------------------------- */
.gallery-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 15, 45, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    padding: 20px;
}

.gallery-lightbox-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close-btn {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    color: #ffffff;
    transform: scale(1.1);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

.lightbox-prev-btn {
    left: 28px;
}

.lightbox-next-btn {
    right: 28px;
}

.lightbox-nav-btn:hover {
    background: var(--color-yellow-primary);
    color: #02256F;
    border-color: var(--color-yellow-primary);
    transform: translateY(-50%) scale(1.12);
    box-shadow: none;
}

.lightbox-dialog-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
    animation: lightboxZoomIn 0.25s ease-out;
}

@keyframes lightboxZoomIn {
    0% { transform: scale(0.92); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.lightbox-image-holder {
    position: relative;
    max-width: 1200px;
    max-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.15);
    background: #000;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    display: block;
    transition: opacity 0.2s ease;
}

.lightbox-caption-bar {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 10px 20px;
    background: rgba(2, 37, 111, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.lightbox-counter {
    background: var(--color-yellow-primary);
    color: #02256F;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    padding: 4px 14px;
    border-radius: 20px;
    flex-shrink: 0;
    margin-left: 16px;
}

@media (max-width: 768px) {
    .lightbox-nav-btn {
        width: 44px;
        height: 44px;
    }
    
    .lightbox-prev-btn {
        left: 10px;
    }
    
    .lightbox-next-btn {
        right: 10px;
    }
    
    .lightbox-close-btn {
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .lightbox-image-holder {
        max-height: 60vh;
    }
    
    .lightbox-img {
        max-height: 60vh;
    }
    
    .lightbox-caption-bar {
        padding: 8px 14px;
        margin-top: 10px;
    }
    
    .lightbox-title {
        font-size: 14px;
    }
    
    .lightbox-counter {
        font-size: 12px;
        padding: 3px 10px;
    }
}


/* ====================================================================
   DEVTOOLS EXPLICIT TYPOGRAPHY & FONT-SIZE DECLARATIONS
   Ensures every text element displays font-size directly in DevTools
   ==================================================================== */

/* Utility Text Classes */
.text-yellow {
    color: var(--color-yellow-primary);
    font-size: inherit;
    font-weight: inherit;
}

.text-navy {
    color: var(--color-primary-navy);
    font-size: inherit;
    font-weight: inherit;
}

.text-red {
    color: var(--color-red);
    font-size: inherit;
    font-weight: inherit;
}

.text-green {
    color: var(--color-green);
    font-size: inherit;
    font-weight: inherit;
}

.text-muted {
    color: var(--color-text-muted);
    font-size: inherit;
    font-weight: inherit;
}

.text-highlight-yellow-italic {
    color: var(--color-yellow-primary);
    font-family: var(--font-heading);
    font-size: inherit;
    font-style: italic;
    font-weight: 900;
}

.font-bold {
    font-weight: 700;
    font-size: inherit;
}

.font-semibold {
    font-weight: 600;
    font-size: inherit;
}

.text-xs {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Button & Nav Text */
.btn-text {
    font-family: var(--font-heading);
    font-size: inherit;
    font-weight: inherit;
    display: inline-block;
}

.btn-submit-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-deep-navy);
    letter-spacing: 0.02em;
}

.btn-submit-arrow {
    font-size: 20px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
}

.phone-text {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.brand-logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 800;
    color: var(--color-primary-navy);
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-top: 2px;
}

/* Hero Section Elements */
.hero-title-badge {
    font-family: var(--font-heading);
    font-weight: 700;
}

.hero-title-badge .text-highlight-yellow-italic,
.hero-title-badge .text-highlight-yellow {
    font-weight: 700;
}

.hero-badge-inner {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.04em;
}

.bullet-text strong {
    font-size: inherit;
    font-weight: 800;
    color: var(--color-yellow-primary);
}

/* Stats Bar */
.stat-counter {
    font-family: var(--font-heading);
    font-size: 35px;
    font-weight: 800;
    font-style: italic;
    color: var(--color-yellow-primary);
}

/* Policy & Included Cards */
.policy-card {
    font-family: var(--font-body);
    font-size: 15px;
}

.policy-header {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.policy-text-content {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text-dark);
    line-height: 1.6;
}

.card-included .policy-header {
    color: var(--color-green);
    font-size: 18px;
}

.card-excluded .policy-header {
    color: var(--color-red);
    font-size: 18px;
}

/* Privilege & Promo Elements */
.privilege-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 800;
    color: var(--color-primary-navy);
    line-height: 1.3;
    margin-bottom: 16px;
}

.privilege-item {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-dark);
    line-height: 1.5;
}

.promo-urgency-counter-capsule {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: var(--color-deep-navy);
}

.urgency-slots-count {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--color-red);
}

.rating-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.warning-text {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-deep-navy);
    line-height: 1.5;
}

/* Table Cells */
.cell-code {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary-navy);
}

.cell-course {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary-navy);
}

.cell-spec {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-dark);
}

.status-lead {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: inherit;
    display: inline-block;
}

/* Testimonial & Quote Elements */
.testimonial-quote-box {
    font-family: var(--font-body);
    font-size: 15px;
    font-style: italic;
    color: var(--color-text-dark);
    line-height: 1.6;
}

.testimonial-info-block {
    font-family: var(--font-body);
    font-size: 15px;
}

/* Toast Notification */
.toast-icon {
    font-size: 21px;
}

.toast-message {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.4;
}

/* Roadmap Stage Elements */
.stage-title-wrap {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary-navy);
}

.stage-card-body p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.6;
}


/* Additional Leaf and Inline Elements Font-Size */
.highlight-underline {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.italic {
    font-style: italic;
    font-size: inherit;
}

.manifesto-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.proof-item {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.proof-items-left {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
}

.proof-highlight-right {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary-navy);
}

.status-accepting {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.status-urgent {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.stage-connector-arrow {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--color-royal-blue);
}

.percent-symbol {
    font-family: var(--font-heading);
    font-size: inherit;
    font-weight: 800;
}

.hourglass-icon {
    font-size: 18px;
    display: inline-block;
}

.red-cross {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 800;
    color: var(--color-red);
}

.promo-bar-text-center {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
}

.stat-text {
    font-family: var(--font-body);
    font-size: 15px;
}

.stat-item {
    font-family: var(--font-body);
    font-size: 15px;
}

.testimonial-num-badge {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
}

.outcome-num-badge {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
}

.pain-number-badge {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
}

.stage-number-badge {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
}

@media (max-width: 991px) {
    h2,
    h2.section-title-navy,
    .section-title-navy,
    h2.section-title,
    .section-title,
    h2.sec7-main-title,
    .sec7-main-title,
    .section-header-center h2,
    .section-padding h2 {
        font-size: 37px !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }
}
/* ====================================================================
   SECTION 7 — HỆ THỐNG 12 SÂN THI & 3 VĂN PHÒNG
   ==================================================================== */
.san-thi-eyebrow {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: #ffab00;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.opt3-panoramic-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.opt3-columns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.opt3-region-col {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.opt3-col-header {
    border-bottom: 2px solid #02256F;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.opt3-col-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: #02256F;
    text-transform: uppercase;
}

.opt3-col-badge {
    font-size: 12px;
    font-weight: 700;
    color: #02256F;
    background: #EAEFF8;
    padding: 2px 8px;
    border-radius: 10px;
}

.opt3-venues-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.opt3-venue-item {
    font-size: 14px;
    line-height: 1.45;
    color: #0F172A;
    border-bottom: 1px dashed #E2E8F0;
    padding-bottom: 6px;
}

.opt3-venue-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.opt3-venue-num {
    font-weight: 800;
    color: #063B99;
    margin-right: 4px;
}

.opt3-offices-banner {
    background: #02256F;
    color: #FFFFFF;
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.opt3-banner-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: #ffab00;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.opt3-offices-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.opt3-office-box {
    border-left: 2px solid rgba(255, 199, 44, 0.4);
    padding-left: 12px;
    font-size: 13.5px;
    line-height: 1.45;
}

.opt3-office-name {
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.opt3-office-addr {
    color: #94A3B8;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .opt3-columns-grid {
        grid-template-columns: 1fr;
    }
    .opt3-offices-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ====================================================================
   SECTION — 3 CAM KẾT VÀNG MINH BẠCH (NAVY GOLD BOX - MATCHING STATS BAR)
   ==================================================================== */
.ck-gold-box {
    background: #02256F;
    border: 1px solid rgba(255, 199, 44, 0.35);
    border-radius: 16px;
    padding: 36px 32px 28px;
    box-shadow: none !important;
}

.ck-gold-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.ck-gold-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ck-gold-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15%;
    right: -16px;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.ck-gold-seal {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFC72C 0%, #FF9E00 100%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #02256F;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: none !important;
    flex-shrink: 0;
}

.ck-gold-title {
    font-family: var(--font-heading);
    font-size: 18.5px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 10px;
}

.ck-gold-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    margin: 0;
}

.ck-gold-bottom-note {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffab00;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .ck-gold-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .ck-gold-col:not(:last-child)::after {
        display: none;
    }
    .ck-gold-col:not(:last-child) {
        padding-bottom: 20px;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    }
    .ck-gold-box {
        padding: 26px 20px 22px;
    }
}


/* ====================================================================
   CTA URGENCY WARNING BADGE (01/03/2027 REGULATION ALERT)
   (Box màu đỏ nhạt, viền đỏ đậm, chữ đỏ, luôn nằm bên dưới CTA)
   ==================================================================== */
.tuition-cta-wrapper,
.roadmap-cta-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.tuition-warning-wrapper,
.roadmap-warning-wrapper {
    display: block !important;
    width: 100% !important;
    margin-top: 14px !important;
    text-align: center !important;
    clear: both !important;
}

.cta-urgency-warning-box {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #FEF2F2 !important;
    border: 1.5px solid #DC2626 !important;
    color: #991B1B !important;
    font-size: 14.5px !important; /* Size 14.5px trên Desktop theo yêu cầu */
    font-weight: 500 !important;
    line-height: 1.45 !important;
    padding: 10px 24px !important;
    border-radius: 40px !important;
    margin: 0 auto !important;
    text-align: center !important;
    max-width: 780px !important;
    width: fit-content !important;
    clear: both !important;
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.08) !important;
}

.cta-urgency-warning-box strong {
    color: #7F1D1D !important;
    font-weight: 800 !important;
}

.cta-urgency-warning-box.dark-theme {
    background-color: rgba(220, 38, 38, 0.18) !important;
    border: 1.5px solid #EF4444 !important;
    color: #FECACA !important;
}

.cta-urgency-warning-box.dark-theme strong {
    color: #FCA5A5 !important;
}

/* SECTION CTA & MODAL FORM WARNING BOX */
#dang-ky .cta-urgency-warning-box,
.register-form-card .cta-urgency-warning-box,
.modal-content .cta-urgency-warning-box {
    font-size: 13px !important;
    padding: 8px 14px !important;
    line-height: 1.4 !important;
    border-radius: 20px !important;
    margin-top: 10px !important;
}

@media (max-width: 768px) {
    .tuition-warning-wrapper,
    .roadmap-warning-wrapper {
        margin-top: 10px !important;
    }

    .cta-urgency-warning-box {
        font-size: 12px !important; /* Size 12px trên Mobile theo yêu cầu */
        padding: 8px 14px !important;
        border-radius: 14px !important;
        line-height: 1.45 !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    #dang-ky .cta-urgency-warning-box,
    .register-form-card .cta-urgency-warning-box,
    .modal-content .cta-urgency-warning-box {
        font-size: 12px !important;
        padding: 7px 10px !important;
    }
}

/* ====================================================================
   ABSOLUTE HEADINGS SAFETY ENFORCEMENT (< 992px: 37PX STRICT)
   ==================================================================== */
@media (max-width: 991px) {
    h2,
    h2.section-title-navy,
    .section-title-navy,
    h2.section-title,
    .section-title,
    .section-header-center h2,
    .section-padding h2 {
        font-size: 37px !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    h2.promo-big-title,
    .promo-big-title {
        font-size: 34px !important;
        line-height: 1.18 !important;
        text-align: center !important;
    }
}


