/* ============================================================
   DESIGN SYSTEM — ITS Education Asia — IB Diploma page
   (Aligned to official brand palette: 8 primary colours + derived tints/darks)
   Dom. Blue:  #0067AC   Light Blue: #00A4E4   Dark Blue: #003A63
   Green:      #01A355   Purple:     #6B1FAD   Orange:    #CC4E00
   Teal:       #168CA1   Gold:       #CEA82C
   ============================================================ */
:root {
    --blue:        #0067AC;
    --dark-blue:   #003A63;
    --mid-blue:    #005188;
    --cyan:        #00A4E4;
    --light-blue:  #00A4E4;
    --light-bg:    #E8F4FC;
    --grey-bg:     #f8f9fa;
    --text:        #333;
    --grey:        #666;
    --white:       #fff;

    --green:       #01A355;
    --green-tint:  #E9F8EF;
    --green-dark:  #016B38;

    --gold:        #CEA82C;
    --gold-tint:   #FDF6E4;
    --gold-dark:   #8B721D;

    --purple:      #6B1FAD;
    --purple-tint: #F3EBFC;
    --purple-dark: #4A1578;

    --orange:      #CC4E00;
    --orange-tint: #FFF3EB;
    --orange-dark: #993B00;

    --teal:        #168CA1;
    --teal-tint:   #E6F5F7;
    --teal-dark:   #0E6171;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: #fff;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; }
a { color: var(--blue); text-decoration: none !important; }
a:hover { color: var(--mid-blue); }

.page-content {
    max-width: 90vw;
    margin: 30px auto;
    padding: 0 20px;
}

/* ---- HERO ---- */
.hero {
    background: var(--dark-blue);
    color: #fff;
    padding: 40px 24px 36px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--cyan);
    border-radius: 0 0 0 0;
}
.hero .wrap { max-width: 900px; position: relative; }
.hero .eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #a8d8f0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.hero h1 {
    font-size: clamp(1.7rem, 3.6vw, 2.7rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 8px;
}
.hero h1 .accent { color: var(--cyan); }
.hero .zh-sub {
    font-size: 1.15rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}
.hero .lead {
    font-size: 1.05rem;
    color: #cde8f8;
    line-height: 1.75;
    max-width: 760px;
    margin-bottom: 20px;
}
.hero .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn-cta {
    display: inline-block;
    background: #fff;
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 28px;
    border-radius: 6px;
    transition: all 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
}
.hero .btn-cta:hover { background: var(--gold); color: var(--dark-blue); }
.hero .btn-cta.ghost {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}
.hero .btn-cta.ghost:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #fff; }

/* ---- SECTION COMMONS ---- */
.section { padding: 56px 0; }
.section-light { background: var(--grey-bg); }
.section-blue { background: var(--light-bg); }
.section-title {
    font-size: clamp(1.5rem, 3.6vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--blue);
    text-align: center;
    margin: 0 auto 14px;
}
.section-sub {
    color: var(--grey);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.7;
    max-width: 720px;
    text-align: center;
    margin: 0 auto 32px;
}

/* Generic section spacing - give breathing room between sections and their neighbours */
.page-content > .row > #content-area > section,
.page-content > .row > #content-area > header {
    margin-bottom: 56px;
}
.page-content > .row > #content-area > section:last-child { margin-bottom: 0; }
#content-area .info-block + .info-block { margin-top: 4px; }

/* ---- TRIAL LESSON FORM ---- */
/* offset matches the sticky nav height (.fm-sticky, applied via js/ib-diploma.js) so the
   anchor doesn't land underneath the fixed menu bar when jumping from the hero CTA */
#trial-form { scroll-margin-top: 100px; }
#trial-form i { width: 20px; }
.trial-form-card {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 14px;
    padding: 34px 30px;
    color: #fff;
    box-shadow: 0 10px 34px rgba(0,58,99,0.18);
    margin: 32px 0;
}
.trial-form-card h3 {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}
.trial-form-card .form-control {
    background: rgba(255,255,255,0.18);
    border: 0;
    border-radius: 6px;
    color: #fff;
}
.trial-form-card .form-control::placeholder { color: rgba(255,255,255,0.85); }
.trial-form-card .input-group-text {
    background: rgba(255,255,255,0.28);
    color: #fff;
    border: 0;
    border-radius: 6px 0 0 6px;
}
.trial-form-card select.form-control option { color: #000; }
.trial-form-card .btn-submit {
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    padding: 13px 34px;
    font-size: 1rem;
    transition: all 0.2s;
}
.trial-form-card .btn-submit:hover { background: var(--orange-dark); color: #fff; }

/* ---- SUBJECT SELECT + QUICK LINKS ---- */
.subject-picker {
    text-align: center;
    margin: 24px 0;
}
.subject-picker .btn-light {
    border-radius: 20px;
    font-weight: 600;
    color: var(--blue);
    padding: 8px 22px;
}
.quick-btn-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 20px 0 32px;
}
.btn-quick {
    background: var(--blue);
    color: #fff;
    padding: 11px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    border: none;
    display: inline-block;
}
.btn-quick:hover { background: var(--mid-blue); color: #fff; transform: translateY(-2px); }
.btn-quick.alt1 { background: var(--teal); }
.btn-quick.alt1:hover { background: var(--teal-dark); }
.btn-quick.alt2 { background: var(--purple); }
.btn-quick.alt2:hover { background: var(--purple-dark); }
.btn-quick.alt3 { background: var(--gold-dark); }
.btn-quick.alt3:hover { background: #6b5514; }

/* ---- STATS BAR ---- */
.stats-bar {
    background: var(--mid-blue);
    padding: 22px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}
.stat-item { text-align: center; }
.stat-item .num {
    font-size: 2.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.stat-item .num.gold { color: var(--gold); }
.stat-item .num.green { color: #3fe08f; }
.stat-item .label { font-size: 12.5px; color: #d6e8f7; margin-top: 6px; line-height: 1.4; }

/* ---- HELP LIST ---- */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
    margin: 20px 0 8px;
}
.help-card {
    background: #fff;
    border-radius: 10px;
    padding: 18px 20px;
    box-shadow: 0 2px 12px rgba(0,55,96,0.07);
    border-top: 3px solid var(--blue);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.help-card i { color: var(--blue); font-size: 1.1rem; margin-top: 3px; }
.help-card p { margin: 0; font-size: 15px; color: #444; line-height: 1.55; }
.help-card:nth-child(8n+1){ border-top-color: var(--blue); } .help-card:nth-child(8n+1) i { color: var(--blue); }
.help-card:nth-child(8n+2){ border-top-color: var(--cyan); } .help-card:nth-child(8n+2) i { color: var(--cyan); }
.help-card:nth-child(8n+3){ border-top-color: var(--green); } .help-card:nth-child(8n+3) i { color: var(--green); }
.help-card:nth-child(8n+4){ border-top-color: var(--purple); } .help-card:nth-child(8n+4) i { color: var(--purple); }
.help-card:nth-child(8n+5){ border-top-color: var(--orange); } .help-card:nth-child(8n+5) i { color: var(--orange); }
.help-card:nth-child(8n+6){ border-top-color: var(--teal); } .help-card:nth-child(8n+6) i { color: var(--teal); }
.help-card:nth-child(8n+7){ border-top-color: var(--gold); } .help-card:nth-child(8n+7) i { color: var(--gold-dark); }
.help-card:nth-child(8n+8){ border-top-color: var(--dark-blue); } .help-card:nth-child(8n+8) i { color: var(--dark-blue); }

/* Standalone callout for the long-form proofing/editing note, kept out of the even grid above */
.help-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--light-bg);
    border-radius: 10px;
    padding: 20px 22px;
    margin: 18px 0 8px;
}
.help-note i { color: var(--blue); font-size: 1.3rem; margin-top: 3px; }
.help-note p { margin: 0; font-size: 14.5px; color: #444; line-height: 1.7; }
.help-note strong { color: var(--dark-blue); }

/* CTA button row below the "Students Get Help From Our Teachers For" cards */
.help-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}
/* Outline button matching the colour scheme of the bottom "Submit Enquiry" CTA
   (blue/white outline instead of solid fill) but adapted for use on a light background */
.btn-outline-blue {
    background: #fff;
    color: var(--blue);
    font-weight: 600;
    font-size: 14px;
    padding: 11px 22px;
    border-radius: 6px;
    display: inline-block;
    border: 2px solid var(--blue);
    transition: all 0.2s;
}
.btn-outline-blue:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

/* ---- TRUSTPILOT DIVIDER (light separators above & below the Trustpilot carousel) ---- */
.trustpilot-divider {
    padding: 26px 0;
    border-top: 1px solid #e9eef3;
    border-bottom: 1px solid #e9eef3;
}

/* ---- SUBJECT GROUP CARDS (collapsible accordion - click header to expand/collapse) ---- */
.subject-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: start;
    gap: 18px;
    margin-top: 24px;
}
.subject-group-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,55,96,0.08);
    border-top: 5px solid var(--blue);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}
.subject-group-card:not(.is-open):hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,55,96,0.14); }
.subject-group-card.is-open { box-shadow: 0 8px 26px rgba(0,55,96,0.12); }
.subject-group-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 24px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s;
}
.subject-group-header:hover { background: rgba(0,103,172,0.05); }
.subject-group-header:focus-visible { outline: 2px solid var(--blue); outline-offset: -2px; border-radius: 8px; }
.subject-group-header .sgh-left { display: block; flex: 1; }
.subject-group-card .grp-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    background: var(--light-bg);
    color: var(--blue);
}
.subject-group-card h3 {
    font-size: 1.05rem;
    line-height: 1.35;
    color: var(--dark-blue);
    margin: 0;
    font-weight: 700;
    /* Reserve height for two lines so headers stay the same height whether the
       subject name wraps to one line (e.g. "Extended Essay (EE)") or two
       (e.g. "Theory of Knowledge (TOK)") — keeps collapsed cards in the same
       row visually even in height. */
    min-height: 2.7em;
    display: flex;
    align-items: center;
}
.subject-group-chevron {
    color: var(--blue);
    font-size: 15px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.subject-group-header[aria-expanded="true"] .subject-group-chevron { transform: rotate(180deg); }
.subject-group-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}
.subject-group-card.is-open .subject-group-body { padding: 0 24px 22px; }
.subject-group-body ul { list-style: none; padding: 0; margin: 0; }
.subject-group-body li {
    font-size: 14.5px;
    color: #444;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.5;
}
.subject-group-body li::before {
    content: "›";
    position: absolute;
    left: 0;
    font-weight: 800;
    font-size: 16px;
    color: var(--blue);
}
.subject-group-card.c1 { border-top-color: var(--blue); } .subject-group-card.c1 .grp-tag { background: var(--light-bg); color: var(--blue); } .subject-group-card.c1 .subject-group-body li::before { color: var(--blue); }
.subject-group-card.c2 { border-top-color: var(--cyan); } .subject-group-card.c2 .grp-tag { background: var(--light-bg); color: var(--cyan); } .subject-group-card.c2 .subject-group-body li::before { color: var(--cyan); }
.subject-group-card.c3 { border-top-color: var(--purple); } .subject-group-card.c3 .grp-tag { background: var(--purple-tint); color: var(--purple); } .subject-group-card.c3 .subject-group-body li::before { color: var(--purple); }
.subject-group-card.c4 { border-top-color: var(--green); } .subject-group-card.c4 .grp-tag { background: var(--green-tint); color: var(--green); } .subject-group-card.c4 .subject-group-body li::before { color: var(--green); }
.subject-group-card.c5 { border-top-color: var(--orange); } .subject-group-card.c5 .grp-tag { background: var(--orange-tint); color: var(--orange); } .subject-group-card.c5 .subject-group-body li::before { color: var(--orange); }
.subject-group-card.c6 { border-top-color: #aaa; } .subject-group-card.c6 .grp-tag { background: #f0f0f0; color: #777; } .subject-group-card.c6 .subject-group-body li::before { color: #aaa; }
.subject-group-card.c7 { border-top-color: var(--teal); } .subject-group-card.c7 .grp-tag { background: var(--teal-tint); color: var(--teal); } .subject-group-card.c7 .subject-group-body li::before { color: var(--teal); }
.subject-group-card.c8 { border-top-color: var(--teal); } .subject-group-card.c8 .grp-tag { background: var(--teal-tint); color: var(--teal); } .subject-group-card.c8 .subject-group-body li::before { color: var(--teal); }
.subject-group-card.c9 { border-top-color: var(--teal); } .subject-group-card.c9 .grp-tag { background: var(--teal-tint); color: var(--teal); } .subject-group-card.c9 .subject-group-body li::before { color: var(--teal); }

/* ---- QUICK JUMP PILLS ---- */
.jump-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 22px 0 8px;
}
.jump-pills a {
    background: var(--light-bg);
    color: var(--blue);
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 20px;
    transition: all 0.2s;
}
.jump-pills a:hover { background: var(--blue); color: #fff; }

/* ---- INFO CARD SECTIONS (what it is / what you study / how assessed / ucas / where it leads) ---- */
.info-block {
    background: #fff;
    border-radius: 14px;
    padding: 30px 32px;
    box-shadow: 0 4px 22px rgba(0,55,96,0.08);
    margin-bottom: 24px;
    scroll-margin-top: 100px;
}

.info-block h2 {
    color: var(--dark-blue);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.info-block h2 i { color: var(--blue); font-size: 1.2rem; }
.info-block p { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 14px; }
.info-block ul { margin-bottom: 14px; padding-left: 22px; }
.info-block li { font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 6px; }
.info-block strong { color: var(--dark-blue); }

/* Points bars for "How you are assessed" */
.points-visual {
    display: flex;
    gap: 24px;
    margin: 18px 0;
    flex-wrap: wrap;
}
.points-visual .pv-item {
    flex: 1;
    min-width: 200px;
    background: var(--light-bg);
    border-radius: 10px;
    padding: 18px 20px;
    text-align: center;
}
.points-visual .pv-item .pv-num { font-size: 2rem; font-weight: 800; color: var(--blue); }
.points-visual .pv-item .pv-label { font-size: 13px; color: var(--grey); margin-top: 4px; }
.points-visual .pv-item.gold .pv-num { color: var(--gold-dark); }

/* UCAS tariff comparison chart */
.ucas-chart-wrap {
    max-width: 480px;
    margin: 20px auto;
    height: 220px;
}

/* ---- SIDEBAR ---- */
.sidebar-wrap { padding: 20px 0 0; }
.sidebar-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8eef4;
    box-shadow: 0 2px 10px rgba(0,55,96,0.06);
    overflow: hidden;
    margin-bottom: 18px;
}
.sidebar-card a { display: block; }
.sidebar-card img { width: 100%; height: auto; display: block; }

/* ---- CTA STRIP ---- */
.cta-strip {
    background: linear-gradient(135deg, var(--dark-blue), var(--mid-blue));
    color: #fff;
    text-align: center;
    padding: 34px 24px;
    border-radius: 14px;
    margin: 30px 0;
}
.cta-strip p { color: #cde8f8; font-size: 15px; margin: 0 0 18px; }
.cta-strip .btn-white {
    background: #fff;
    color: var(--dark-blue);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.2s;
}
.cta-strip .btn-white:hover { background: var(--gold); color: var(--dark-blue); }
.cta-strip .btn-gold {
    background: var(--gold);
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.02rem;
    padding: 14px 34px;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.2s;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.cta-strip .btn-gold:hover { background: #fff; color: var(--dark-blue); transform: translateY(-2px); }
.cta-strip .btn-orange {
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: 1.02rem;
    padding: 14px 34px;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.2s;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.cta-strip .btn-orange:hover { background: var(--orange-dark); color: #fff; transform: translateY(-2px); }
.cta-strip-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
}
.cta-strip .btn-outline-white {
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 1.02rem;
    padding: 14px 34px;
    border-radius: 6px;
    display: inline-block;
    border: 2px solid #fff;
    transition: all 0.2s;
}
.cta-strip .btn-outline-white:hover { background: #fff; color: var(--dark-blue); transform: translateY(-2px); }

/* ---- REVEAL ANIMATIONS ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-stagger .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger .reveal:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger .reveal:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger .reveal:nth-child(8) { transition-delay: 0.54s; }
.reveal-stagger .reveal:nth-child(9) { transition-delay: 0.61s; }

/* ---- Quote widget (sidebar) ---- */
.quote-widget {
    background: linear-gradient(135deg, var(--dark-blue), var(--mid-blue));
    color: #fff;
    border-radius: 12px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
}
.quote-widget::before {
    content: '\f10d';
    font-family: FontAwesome;
    position: absolute;
    top: -10px; left: 10px;
    font-size: 80px;
    opacity: 0.08;
}
.quote-text { font-size: 13px; line-height: 1.7; font-style: italic; margin: 0 0 12px; position: relative; transition: opacity 0.6s; }
.quote-author { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.7); position: relative; }
.quote-author::before { content: '— '; }

/* ---- SIDEBAR MENU BUTTON ---- */
.sb-menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f0f5f9;
    transition: background 0.2s;
}
.sb-menu-link:hover { background: var(--light-bg); }
.sb-menu-link i { width: 18px; }
#sb-menu.bg-white { border-radius: 10px; border: 1px solid #e8eef4; box-shadow: 0 2px 10px rgba(0,55,96,0.06); overflow: hidden; }
#sb-menu.bg-white hr { display: none; }

/* ---- LEARNING TRACKS ---- */
.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 8px;
}
.track-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 28px 28px;
    box-shadow: 0 6px 26px rgba(0,55,96,0.09);
    border-top: 4px solid var(--blue);
    display: flex;
    flex-direction: column;
}
.track-card.track-green { border-top-color: var(--green); }
.track-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    background: var(--light-bg);
    color: var(--blue);
}
.track-card.track-green .track-badge { background: var(--green-tint); color: var(--green); }
.track-card h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.track-card p {
    color: #555;
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.track-card ul { list-style: none; padding: 0; margin: 0 0 24px; flex-grow: 1; }
.track-card li {
    font-size: 14.5px;
    color: #444;
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.5;
}
.track-card li::before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
}
.track-card.track-green li::before { color: var(--green); }
.track-cta-btn {
    display: block;
    text-align: center;
    background: var(--blue);
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 20px;
    border-radius: 8px;
    transition: all 0.2s;
}
.track-cta-btn:hover { background: var(--mid-blue); transform: translateY(-2px); }
.track-card.track-green .track-cta-btn { background: var(--green); }
.track-card.track-green .track-cta-btn:hover { background: var(--green-dark); }

/* ---- FOOTER ---- */
footer { background: var(--dark-blue); }
footer a { color: #19C2FF !important; }
.follow-us li, .follow-us a { font-size: 1.5rem !important; color: #19C2FF !important; }
.quick-links a { line-height: 1.7; color: #19C2FF !important; font-size: 0.85rem; }
.quick-links li { margin-bottom: 8px; }
.left-footer-pane { width: 40%; }
@media (max-width: 40em) { .left-footer-pane { width: 100%; } }

/* ---- FIXED ELEMENTS ---- */
#cta-phone {
    position: fixed; right: 20px; bottom: 86px;
    width: 56px; height: 56px;
    background: var(--blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
}
#cta-phone img { width: 28px; height: 28px; }
#wa-float-btn {
    position: fixed; right: 20px; bottom: 20px;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
}
#wa-float-btn img { width: 32px; height: 32px; }
@media (min-width: 769px) { #cta-phone { display: none; } }
#fixed-social {
    position: fixed; top: 35%; left: 0;
    z-index: 10;
    box-shadow: 0 0 5px #b7b7b7;
}
#fixed-social div a {
    display: flex; align-items: center;
    width: 40px; overflow: hidden;
    transition: width 0.3s;
    padding: 8px 10px;
    color: #fff !important;
    font-size: 1rem;
}
#fixed-social div a span { white-space: nowrap; margin-left: 6px; opacity: 0; transition: opacity 0.3s; }
#fixed-social div a:hover { width: 120px; }
#fixed-social div a:hover span { opacity: 1; }
#fixed-social .fixed-title  { background: #666; }
#fixed-social .fixed-facebook { background: #3b5998; }
#fixed-social .fixed-linkedin { background: #0077b5; }
#fixed-social .fixed-gplus    { background: #d34836; }
@media (max-width: 768px) { #fixed-social { display: none; } }

/* ---- RESPONSIVE ---- */
@media (max-width: 860px) {
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .subject-groups-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .page-content { padding: 0; }
    .subject-groups-grid { grid-template-columns: 1fr; }
    .info-block { padding: 22px 18px; }
    .quick-btn-row .btn-quick { width: 100%; text-align: center; }
    .points-visual { flex-direction: column; }
    .page-content > .row > #content-area > section,
    .page-content > .row > #content-area > header {
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}