/* ============================================================
   Homepage design tokens — ALL rules scoped to .page-home
   so no other page is affected.
   ============================================================ */

/* ---------- Design tokens ---------- */
.page-home {
    /* Brand Colors */
    --color-dark-navy: #044364;
    --color-blue: #2689F8;
    --color-light-gray: #F5F6FA;
    --color-navy: #02283C;
    --color-slate: #596681;
    --color-gray-blue: #545E6E;

    /* Pastel */
    --color-mint: #CCFBF1;
    --color-cream: #FEF3C7;
    --color-peach: #FFEDD5;
    --color-sky: #DBEAFE;

    /* Accent */
    --color-teal: #0F766E;
    --color-amber: #B45309;
    --color-orange-accent: #C2410C;
    --color-royal-blue: #1D4ED8;

    /* Override global legacy aliases for the homepage */
    --primary-color: #2689F8;
    --secondary-color: #F5F6FA;
    --black-color: #02283C;
    --black-light-color: #596681;
    --terciary-navy: #041F3D;

    --cards-gray: #F1F3F8;

    /* Type Scale — Font Sizes */
    --heading1: 72px;
    --heading2: 56px;
    --heading3: 32px;
    --heading4: 24px;
    --heading5: 18px;
    --heading6: 16px;
    --bodyfont: 16px;
    --bodyfont16: 16px;
    --bodyfont14: 14px;

    /* Type Scale — Line Heights */
    --lh-h1: 80px;
    --lh-h2: 64px;
    --lh-h3: 40px;
    --lh-h4: 32px;
    --lh-h5: 28px;
    --lh-body-large: 36px;
    --lh-body-medium: 32px;
    --lh-body: 28px;
    --lh-body-small: 22px;
    --lh-subheadline: 20px;

    /* Borders */
    --bordercolor: #E2E2E2;
    --bordercolorblue: #2689F8;

    /* Font */
    font-family: 'Inter', sans-serif;
    font-size: var(--bodyfont);
    line-height: var(--lh-body);
    letter-spacing: 0;
    color: var(--black-color);
}

/* Apply Inter to form elements (they don't inherit font-family by default) */
.page-home button,
.page-home input,
.page-home select,
.page-home textarea {
    font-family: 'Inter', sans-serif;
}

/* ---------- Heading type scale ---------- */
.page-home h1 {
    font-size: var(--heading1);
    line-height: var(--lh-h1);
    font-weight: 700;
    letter-spacing: 0;
}

.page-home h2 {
    font-size: var(--heading2);
    line-height: var(--lh-h2);
    font-weight: 700;
    letter-spacing: 0;
}

.page-home h3 {
    font-size: var(--heading3);
    line-height: var(--lh-h3);
    font-weight: 700;
    letter-spacing: 0;
}

.page-home h4 {
    font-size: var(--heading4);
    line-height: var(--lh-h4);
    font-weight: 600;
    letter-spacing: 0;
}

.page-home h5 {
    font-size: var(--heading5);
    line-height: var(--lh-h5);
    font-weight: 600;
    letter-spacing: 0;
}

.page-home h6 {
    font-size: var(--heading6);
    line-height: var(--lh-subheadline);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ---------- Body text ---------- */
.page-home p {
    font-size: var(--bodyfont);
    line-height: var(--lh-body);
    font-weight: 400;
    color: var(--black-light-color);
}

/* Header shell */
.page-home .header {
    background-color: #ffffff;
    /* padding-top: 20px;
    padding-bottom: 20px; */
}

/* Nav links */
.page-home .header .navbar-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--terciary-navy);
    letter-spacing: 0;
}

.page-home .header .navbar-nav a:hover,
.page-home .header .navbar-nav a.active {
    color: var(--color-blue);
}

/* Nav item spacing */
.page-home .header .navbar-nav li {
    margin-left: 18px;
    margin-right: 18px;
}

.page-home .header nav .navbar-nav:first-child li:first-child {
    margin-left: 0;
}

.page-home .header nav .navbar-nav:last-child li:last-child {
    margin-right: 0;
    margin-left: 0;
}

/* Separator gap between nav links list and auth list */
.page-home .header nav .navbar-nav:last-child li:first-child {
    margin-right: 26px;
}

/* "Sign In" text link */
.page-home .header .nav-link-signin, .btn-get-started {
    font-weight: 700 !important;
}

.page-home .header .nav-link-signin:hover {
    color: var(--color-blue);
}

/* "Get Started" filled button */
.page-home .header .btn-get-started {
    font-size: 16px !important;
    background-color: var(--color-blue);
    color: #ffffff !important;
    border-radius: 10px;
    transition: background-color 0.2s ease;
}

.page-home .header .btn-get-started:hover {
    background-color: #1a7ae8;
    color: #ffffff !important;
}

.page-home .section-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin-bottom: 60px;
    max-width: 884px;
    justify-self: center;
}

.page-home .section-title {
    font-size: 62px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.06em;
    color: var(--color-navy);
    margin: 0;
}

.page-home .section-subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: var(--color-slate);
    margin: 0;
}

.page-home .content-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #ffffff;
    border: 1px solid #D2D8E8;
    border-radius: 20px;
}

.page-home .card-icon-lg {
    width: 55px;
    height: 55px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5.5px;
    flex-shrink: 0;
}

.page-home .card-icon-lg i {
    font-size: 44px;
    line-height: 1;
}

.page-home .card-body-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.page-home .card-title-lg {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--color-navy);
    margin: 0;
    line-height: 1.15;
}

.page-home .card-desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: var(--color-slate);
    margin: 0;
}

.page-home .hero-section {
    position: relative;
    background-color: var(--color-dark-navy);
    padding: 0;
    overflow: hidden;
}

.page-home .hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(190deg, var(--color-dark-navy) 50%, #0443648f 60%),
        url(../images/sidebar-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
    transform: scale(2, 1);
    right: 50%;
    bottom: -10%;
    left: -60%;
}

.page-home .hero-main {
    position: relative;
    z-index: 1;
    padding: 80px 0 60px;
}

/* Announcement pill */
.page-home .hero-announcement-pill {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 10%;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.page-home .hero-left h1 {
    color: #ffffff;
    font-weight: 700;
    font-size: 72px;
    line-height: 76px;
    letter-spacing: -6%;
    margin-bottom: 16px;
}

.page-home .hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 22px;
    line-height: 36px;
    letter-spacing: -2%;
    margin-bottom: 36px;
}

/* CTAs */
.page-home .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.page-home .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-blue);
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -2%;
    border-radius: 12px;
    padding: 20px 40px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.page-home .btn-hero-primary:hover {
    background-color: #1a7ae8;
    color: #ffffff;
    text-decoration: none;
}

.page-home .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: -2%;
    font-weight: 700;
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 20px 40px;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.page-home .btn-hero-secondary:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
}

/* ---- Course selector card ---- */
.page-home .hero-right {
    display: flex;
    justify-content: flex-end;
}

.page-home .course-selector-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    margin-left: 43px;
}

.page-home .course-selector-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -6%;
    color: var(--color-navy);
    margin-bottom: 26px;
}

.page-home .course-row {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 18px;
    margin-bottom: 10px;
    background-color: var(--cards-gray);
    border: 1.5px solid transparent;
    transition: border-color 0.2s ease;
}

.page-home .course-row:last-child {
    margin-bottom: 0;
}

.page-home .course-row-content {
    flex: 1;
}

.page-home .course-row-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gray-blue);
    text-transform: uppercase;
    letter-spacing: 10%;
    margin-bottom: 4px;
}

.page-home .course-row-name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -4%;
    color: var(--color-navy);
}

/* Arrow circle button */
.page-home .course-row-btn {
    flex-shrink: 0;
    margin-left: 12px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #011E5A;
    font-size: 16px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Active/selected state — border only, arrow btn goes blue */
.page-home .course-row.active {
    border-color: var(--color-blue);
}

.page-home .course-row.active .course-row-btn {
    background-color: var(--color-blue);
    color: #ffffff;
}

.page-home .course-row:not(.active):hover {
    border-color: var(--color-blue);
}

/* ---- Feature badges bar ---- */
.page-home .hero-badges-bar {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-home .hero-badges {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 22px 0;
}

.page-home .hero-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

.page-home .hero-badge i {
    font-size: 20px;
    color: #ffffff;
}

.page-home .courses-section {
    background-color: var(--color-light-gray);
    padding: 100px 0;
}


/* ---- Grid ---- */
.page-home .courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---- Card ---- */
.page-home .course-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
}

.page-home .course-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 26px;
}

/* Icon box */
.page-home .course-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #E1EFFE;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    font-size: 20px;
    flex-shrink: 0;
}

/* Status badges */
.page-home .course-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    height: 28px;
    border-radius: 9999px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    white-space: nowrap;
}

.page-home .course-badge--coming {
    background-color: var(--color-mint);
    color: var(--color-teal);
}

.page-home .course-badge--available {
    background-color: var(--color-cream);
    color: var(--color-amber);
}

.page-home .course-badge--now {
    background-color: var(--color-sky);
    color: var(--color-royal-blue);
}

.page-home .course-badge--value {
    background-color: var(--color-peach);
    color: var(--color-orange-accent);
}

/* Card body */
.page-home .course-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 26px;
}

.page-home .course-card-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-navy);
    letter-spacing: -0.04em;
    line-height: 1.2;
    margin: 0;
}

/* Divider */
.page-home .course-card-divider {
    border: none;
    border-top: 1px solid var(--color-navy);
    margin: 0 0 26px;
}

/* Features list */
.page-home .course-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-direction: column;
    gap: 17px;
    flex: 1;
}

.page-home .course-card-features li {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-slate);
    letter-spacing: -0.02em;
}

.page-home .course-card-features li i {
    color: var(--color-blue);
    font-size: 16px;
    flex-shrink: 0;
}

/* Price row */
.page-home .course-card-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 26px;
}

.page-home .course-card-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.page-home .price-amount {
    font-size: 52px;
    font-weight: 600;
    color: var(--color-blue);
    letter-spacing: -0.06em;
    line-height: 1;
}

.page-home .price-duration {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-slate);
    line-height: 24px;
    letter-spacing: 0.02em;
}

.page-home .price-cancel {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 24px;
    letter-spacing: -0.02em;
}

/* CTA buttons */
.page-home .course-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 65px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
    border: 1px solid var(--color-navy);
    background-color: transparent;
    color: var(--color-navy);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.page-home .course-card-cta:hover {
    background-color: var(--color-navy);
    color: #ffffff;
    text-decoration: none;
}

.page-home .course-card-cta--primary {
    border: none;
    background-color: var(--color-blue);
    color: #ffffff;
}

.page-home .course-card-cta--primary:hover {
    background-color: #1a7ae8;
    color: #ffffff;
}

.page-home .course-card-cta--disabled {
    opacity: 0.55;
    cursor: default;
    pointer-events: none;
}

/* Progress bar (hidden on desktop) */
.page-home .courses-progress {
    display: none;
}

.page-home .choose-section {
    padding: 100px 0;
}


.page-home .choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.page-home .choose-card {
    padding: 35px;
}

.page-home .choose-card-icon i {
    color: var(--color-navy);
}

.page-home .choose-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-blue);
    text-decoration: none;
    transition: gap 0.2s;
}

.page-home .choose-card-link i {
    font-size: 12px;
    width: 12px;
    height: 12px;
    color: var(--color-blue);
}

.page-home .choose-card-link:hover {
    gap: 10px;
    color: var(--color-blue);
    text-decoration: none;
}

.page-home .nbrc-section {
    position: relative;
    background-color: var(--color-dark-navy);
    padding: 100px 0;
    overflow: hidden;
}

.page-home .nbrc-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(190deg, var(--color-dark-navy) 50%, #0443648f 60%),
        url(../images/sidebar-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
    transform: scale(2, 1);
    right: 50%;
    bottom: -10%;
    left: -60%;
}

.page-home .nbrc-left,
.page-home .nbrc-right {
    position: relative;
    z-index: 1;
}

.page-home .nbrc-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.page-home .nbrc-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 62px;
    font-weight: 700;
    line-height: 105%;
    letter-spacing: -0.06em;
    color: #ffffff;
    margin: 0;
}

.page-home .nbrc-header p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin: 0;
}

.page-home .nbrc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 65px;
    padding: 0 36px;
    border-radius: 12px;
    border: none;
    background: var(--color-blue);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: background 0.2s;
}

.page-home .nbrc-cta:hover {
    background: #1a75e0;
    color: #ffffff;
    text-decoration: none;
}

.page-home .nbrc-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-home .nbrc-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: 30px;
}

.page-home .nbrc-card-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.page-home .nbrc-card-icon i {
    font-size: 28px;
    color: #ffffff;
    line-height: 1;
}

.page-home .nbrc-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-home .nbrc-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.page-home .nbrc-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0;
    opacity: 0.85;
}

.page-home .difference-section {
    background: #ffffff;
    padding: 100px 0;
}

.page-home .difference-header {
    margin-left: auto;
    margin-right: auto;
}

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

.page-home .difference-card {
    padding: 32px;
}

.page-home .difference-card-icon {
    margin-bottom: 38px;
}

.page-home .difference-card-icon i {
    color: var(--color-blue);
}

.page-home .faq-section {
    background: #F5F6FA;
    padding: 100px 0;
}

.page-home .faq-header {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.page-home .faq-list {
    display: flex;
    flex-direction: column;
    max-width: 860px;
    margin: 0 auto;
}

.page-home .faq-item {
    border-bottom: 1px solid rgba(2, 40, 60, 0.30);
    padding: 36px 48px;
    transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-radius 0.25s ease;
}

.page-home .faq-item:last-child {
    border-bottom: none;
}

.page-home .faq-item.is-open {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 48px;
    border: none;
    box-shadow: 0 30px 150px -20px rgba(0, 48, 102, 0.10);
    margin: 8px 0;
}

.page-home .faq-item:has(+ .faq-item.is-open) {
    border-bottom: none;
}

.page-home .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.page-home .faq-question span p {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -4%;
    color: #02283C;
}

.page-home .faq-icon {
    font-size: 14px;
    color: #02283C;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.page-home .faq-answer-panel {
    padding-top: 14px;
}

.page-home .faq-answer-panel p,
.page-home .faq-answer-panel li,
.page-home .faq-answer-panel div {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -2%;
    color: #596681;
    margin: 0;
}

.page-home .faq-answer-panel p + p {
    margin-top: 8px;
}

.page-home .prefooter-cta-section {
    position: relative;
    background-color: var(--color-dark-navy);
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
}

.page-home .prefooter-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(190deg, var(--color-dark-navy) 50%, #0443648f 60%),
        url(../images/sidebar-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
    transform: scale(2, 1);
    right: 50%;
    bottom: -10%;
    left: -60%;
}

.page-home .prefooter-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 38px;
    max-width: 860px;
    margin: 0 auto;
}

.page-home .prefooter-cta-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.page-home .prefooter-cta-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 76px;
    letter-spacing: -6%;
    color: #ffffff;
    margin: 0;
}

.page-home .prefooter-cta-text p {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: -2%;
    color: #FFFFFFCC;
    margin: 0;
}

.page-home .prefooter-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.page-home footer.footer {
    background-color: #ffffff !important;
    padding: 80px 0 0;
}

.page-home footer .footer-logo-img {
    filter: none;
    max-width: 200px;
}

.page-home footer .footer-brand {
    padding-right: 30px;
}

.page-home footer .footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0;
    color: #596681;
    margin: 20px 0 0;
}

.page-home footer .footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #02283C;
    margin: 0 0 20px;
    padding: 0;
    line-height: 1.4;
}

.page-home footer .footer-links li a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #596681;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.page-home footer .footer-links li a:hover {
    color: #2689F8;
    text-decoration: none;
}

.page-home footer .footer-divider {
    border-top: 1px solid rgba(2, 40, 60, 0.30);
    margin-top: 60px;
}

.page-home footer .footer-copyright-row {
    padding: 28px 0;
}

.page-home footer .footer-copyright-row p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #596681;
    margin: 0;
}

.page-home footer .footer-brand-link {
    color: #003066;
    font-weight: 700;
    text-decoration: none;
}

.page-home footer .footer-brand-link:hover {
    color: #003066;
    text-decoration: underline;
}

/* ============================================================
   Responsive — Tablet (max-width: 1399px)
   ============================================================ */
@media (max-width: 1399px) {
    .page-home .hero-announcement-pill {
        font-size: 12px;
        line-height: 18px;
        letter-spacing: 5%;
    }
}

/* ============================================================
   Responsive — Tablet (max-width: 1199px)
   ============================================================ */
@media (max-width: 1199px) {
    .page-home .btn-hero-primary,
    .page-home .btn-hero-secondary {
        font-size: 16px;
        padding: 18px 27px;
    }
}

/* ============================================================
   Responsive — Tablet (max-width: 991px)
   ============================================================ */
@media (max-width: 991px) {
    /* Mobile nav */
    .page-home .header .navbar-collapse .navbar-nav:last-child {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-home .header .navbar-collapse .navbar-nav:last-child li {
        margin-left: 0;
        margin-right: 0;
        padding-bottom: 12px;
    }

    .page-home .header .btn-get-started {
        display: inline-block;
        width: auto;
    }

    .page-home .header .navbar-nav.mx-auto {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Shared utilities */
    .page-home .section-header {
        margin-bottom: 40px;
    }

    .page-home .section-title {
        font-size: 40px;
    }

    /* Hero */
    .page-home .hero-main {
        padding: 48px 0 40px;
    }

    .page-home .hero-left h1 {
        font-size: 52px;
        line-height: 54px;
    }

    .page-home .hero-subtitle {
        font-size: 18px;
        line-height: 28px;
    }

    .page-home .hero-left {
        text-align: center;
    }

    .page-home .hero-ctas {
        justify-content: center;
    }

    .page-home .hero-right {
        justify-content: flex-start;
        margin-top: 40px;
    }

    .page-home .course-selector-card {
        max-width: 100%;
        margin-left: 0;
    }

    .page-home .course-row-label {
        font-size: 10px;
    }

    .page-home .course-row-name {
        font-size: 18px;
    }

    .page-home .course-row-btn {
        width: 33px;
        height: 33px;
        font-size: 12px;
    }

    .page-home .hero-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .page-home .hero-badge {
        font-size: 10px;
        gap: 6px;
    }

    .page-home .hero-badge i {
        font-size: 14px;
    }

    /* Courses — single column on mobile */
    .page-home .courses-section {
        padding: 60px 0;
    }

    .page-home .courses-section-header .section-title {
        font-size: 36px;
    }

    .page-home .courses-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Choose section */
    .page-home .choose-section {
        padding: 60px 0;
    }

    .page-home .choose-header .section-subtitle {
        font-size: 18px;
    }

    /* NBRC section */
    .page-home .nbrc-section {
        padding: 60px 0;
    }

    .page-home .nbrc-header h2 {
        font-size: 42px;
    }

    .page-home .nbrc-header {
        margin-bottom: 32px;
        text-align: center;
    }

    .page-home .nbrc-cta {
        display: block;
        width: fit-content;
        margin: 0 auto;
        align-content: center;
    }

    /* Difference section */
    .page-home .difference-section {
        padding: 60px 0;
    }

    .page-home .difference-card {
        padding: 20px 22px;
    }

    .page-home .difference-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FAQ section */
    .page-home .faq-section {
        padding: 60px 0;
    }

    .page-home .faq-item.is-open {
        padding: 28px 32px;
    }

    /* Prefooter */
    .page-home .prefooter-cta-section {
        padding: 80px 0;
    }

    .page-home .prefooter-cta-text h2 {
        font-size: 52px;
        line-height: 58px;
    }

    .page-home .prefooter-cta-text p {
        font-size: 18px;
        line-height: 30px;
    }

    /* Footer */
    .page-home footer.footer {
        padding: 60px 0 0;
    }

    .page-home footer .footer-tagline {
        font-size: 16px;
        line-height: 26px;
    }
}

/* ============================================================
   Responsive — Mobile (max-width: 767px)
   ============================================================ */
@media (max-width: 767px) {
    /* Shared utilities */
    .page-home .section-title {
        font-size: 34px;
    }

    .page-home .section-header {
        max-width: 340px;
        justify-self: center;
    }

    /* Hero */
    .page-home .hero-announcement-pill {
        max-width: 315px;
    }

    .page-home .course-selector-card {
        padding: 24px;
    }

    .page-home .course-selector-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    /* Choose grid */
    .page-home .choose-grid {
        grid-template-columns: 1fr;
    }

    /* Right course */
    .page-home .card-icon-lg {
        width: 40px;
        height: 40px;
        margin: 0;
    }

    .page-home .card-icon-lg i {
        font-size: 32px;
    }

    .page-home .card-title-lg {
        font-size: 22px;
    }

    .page-home .difference-card-title {
        font-size: 18px;
    }

    .page-home .difference-grid {
        gap: 16px;
    }

    .page-home .card-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .page-home .choose-card-link {
        font-size: 16px;
    }

    .page-home .choose-card-link i {
        width: 8px;
        height: 8px;
        font-size: 8px;
    }

    /* NBRC mobile */
    .page-home .nbrc-header h2 {
        font-size: 40px;
    }

    .page-home .nbrc-header p {
        font-size: 18px;
        line-height: 26px;
    }

    .page-home .nbrc-card {
        flex-direction: column;
        padding: 20px;
    }

    .page-home .nbrc-card-title {
        font-size: 20px;
    }

    .page-home .nbrc-card-desc {
        font-size: 16px;
        line-height: 22px;
    }

    /* FAQ */
    .page-home .faq-question span p {
        font-size: 18px;
    }

    .page-home .faq-item,
    .page-home .faq-item.is-open {
        padding: 29px 23px;
    }

    /* Prefooter */
    .page-home .prefooter-cta-section {
        padding: 60px 0;
    }

    .page-home .prefooter-cta-text h2 {
        font-size: 38px;
        line-height: 44px;
    }

    .page-home .prefooter-cta-text p {
        font-size: 16px;
        line-height: 26px;
    }

    /* Footer */
    .page-home footer.footer {
        padding: 50px 0 0;
    }

    .page-home footer .footer-brand {
        padding-right: 0;
    }

    .page-home footer .footer-divider {
        margin-top: 40px;
    }
}

/* ============================================================
   Responsive — Small mobile (max-width: 575px)
   ============================================================ */
@media (max-width: 575px) {
    .page-home .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .page-home footer .footer-links {
        padding: 0;
    }
}
