/* ========== BSD FUTURE CENTRE - SHARED STYLES ========== */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --white: #FFFFFF;
    --dark: #51545F;
    --dark-light: #6b6e78;
    --yellow: #FFCD00;
    --orange: #FCAC17;
    --coral: #FA595D;
    --teal: #00C4BA;
    --green: #75CF20;
    --pale-yellow: #FEFAF1;
    --pale-orange: #FAF6F0;
    --pale-coral: #FFF7F8;
    --pale-teal: #EFF9F8;
    --pale-green: #FAFFF8;
    --bg-light: #F8F9FB;
    --shadow-sm: 0 2px 8px rgba(82,84,95,0.06);
    --shadow-md: 0 4px 20px rgba(82,84,95,0.08);
    --shadow-lg: 0 8px 40px rgba(82,84,95,0.10);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(82,84,95,0.06);
    transition: var(--transition);
}

.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 32px; width: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover { color: var(--teal); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--teal);
    transition: var(--transition);
}

.nav-links a:hover::after { width: 100%; }

.nav-links a.active { color: var(--teal); }
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; gap: 12px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.btn-primary:hover {
    background: #00b0a7;
    border-color: #00b0a7;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,196,186,0.3);
}

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

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-yellow {
    background: var(--yellow);
    color: var(--dark);
    border-color: var(--yellow);
}

.btn-yellow:hover {
    background: #f0c200;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255,205,0,0.35);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-1px);
}

.btn-large { padding: 14px 36px; font-size: 1rem; }
.btn-icon { width: 20px; height: 20px; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========== SECTIONS ========== */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-light); }
.section-teal { background: var(--teal); }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--teal);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--dark-light);
    line-height: 1.8;
}

/* ========== HERO (shared base) ========== */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid rgba(0,196,186,0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero h1 .highlight { color: var(--teal); }
.hero h1 .highlight-yellow { color: var(--orange); }

.hero-sub {
    font-size: 1.15rem;
    color: var(--dark-light);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

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

/* ========== STATS BAR ========== */
.stats-bar {
    padding: 48px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(82,84,95,0.06);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item { padding: 16px; }

.stat-number {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--teal);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-light);
    font-weight: 500;
}

/* ========== PATHWAY CARDS ========== */
.pathway-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pathway-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.pathway-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pathway-card:nth-child(1) { border-top-color: var(--green); }
.pathway-card:nth-child(2) { border-top-color: var(--teal); }
.pathway-card:nth-child(3) { border-top-color: var(--yellow); }

.pathway-number {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    opacity: 0.08;
    position: absolute;
    top: 16px; right: 20px;
}

.pathway-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.pathway-card:nth-child(1) .pathway-icon { background: rgba(117,207,32,0.12); }
.pathway-card:nth-child(2) .pathway-icon { background: rgba(0,196,186,0.12); }
.pathway-card:nth-child(3) .pathway-icon { background: rgba(255,205,0,0.15); }

.pathway-card h3 { font-size: 1.25rem; margin-bottom: 4px; }

.pathway-ages {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--teal);
    margin-bottom: 16px;
}

.pathway-card p {
    font-size: 0.95rem;
    color: var(--dark-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.pathway-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.pathway-tag {
    font-size: 0.78rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--bg-light);
    color: var(--dark-light);
}

/* ========== DIFFERENTIATORS ========== */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.diff-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.diff-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.diff-icon {
    width: 48px; height: 48px;
    min-width: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.diff-card:nth-child(1) .diff-icon { background: rgba(0,196,186,0.12); }
.diff-card:nth-child(2) .diff-icon { background: rgba(255,205,0,0.15); }
.diff-card:nth-child(3) .diff-icon { background: rgba(250,89,93,0.1); }
.diff-card:nth-child(4) .diff-icon { background: rgba(117,207,32,0.12); }

.diff-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.diff-card p { font-size: 0.9rem; color: var(--dark-light); line-height: 1.6; }

/* ========== OUTCOMES ========== */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.outcome-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.outcome-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.outcome-icon {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.outcome-card:nth-child(1) .outcome-icon { background: rgba(0,196,186,0.12); }
.outcome-card:nth-child(2) .outcome-icon { background: rgba(117,207,32,0.12); }
.outcome-card:nth-child(3) .outcome-icon { background: rgba(255,205,0,0.15); }
.outcome-card:nth-child(4) .outcome-icon { background: rgba(250,89,93,0.1); }

.outcome-card h3 { font-size: 1rem; margin-bottom: 8px; }
.outcome-card p { font-size: 0.85rem; color: var(--dark-light); line-height: 1.6; }

/* ========== CTA BANNER ========== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--teal) 0%, #00a89f 50%, #009e95 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '{ }';
    position: absolute;
    top: -20px; right: 10%;
    font-family: 'Quicksand', sans-serif;
    font-size: 14rem;
    font-weight: 700;
    color: rgba(255,255,255,0.05);
    pointer-events: none;
}

.cta-banner.yellow-banner {
    background: linear-gradient(135deg, var(--yellow) 0%, #f0c200 100%);
}

.cta-banner.yellow-banner .cta-content h2 { color: var(--dark); }
.cta-banner.yellow-banner .cta-content p { color: rgba(82,84,95,0.75); }

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

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

/* ========== FRANCHISE LAYOUT ========== */
.franchise-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.franchise-text h2 { font-size: 2.2rem; margin-bottom: 16px; }

.franchise-text > p {
    font-size: 1.05rem;
    color: var(--dark-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.franchise-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.franchise-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.franchise-feature-icon {
    width: 40px; height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: var(--pale-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.franchise-feature h4 { font-size: 0.95rem; margin-bottom: 4px; }
.franchise-feature p { font-size: 0.85rem; color: var(--dark-light); line-height: 1.6; }

.franchise-card-area { position: sticky; top: 96px; }

.economics-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.economics-card-header {
    background: var(--dark);
    color: var(--white);
    padding: 28px 32px;
}

.economics-card-header h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.economics-card-header p { font-size: 0.85rem; opacity: 0.7; }

.economics-card-body { padding: 28px 32px; }

.economics-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(82,84,95,0.06);
}

.economics-row:last-child { border-bottom: none; }
.economics-label { font-weight: 600; font-size: 0.9rem; }

.economics-value {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--teal);
    text-align: right;
}

.economics-note {
    font-size: 0.78rem;
    color: var(--dark-light);
    font-weight: 400;
}

.economics-card-footer {
    padding: 20px 32px;
    background: var(--pale-teal);
    text-align: center;
}

.economics-card-footer a {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--teal);
    font-size: 0.9rem;
}

.economics-card-footer a:hover { color: var(--dark); }

.info-callout {
    margin-top: 20px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 3px solid var(--yellow);
}

.info-callout h4 { font-size: 0.9rem; margin-bottom: 6px; }
.info-callout p { font-size: 0.85rem; color: var(--dark-light); line-height: 1.6; }

/* ========== TIMELINE ========== */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--teal), var(--yellow), var(--green));
}

.timeline-item {
    display: flex;
    gap: 28px;
    margin-bottom: 36px;
    position: relative;
}

.timeline-marker {
    width: 56px; min-width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--teal);
    z-index: 1;
}

.timeline-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: var(--shadow-sm);
    flex: 1;
}

.timeline-content h3 { font-size: 1.05rem; margin-bottom: 4px; }

.timeline-time {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--teal);
    margin-bottom: 8px;
}

.timeline-content p { font-size: 0.88rem; color: var(--dark-light); line-height: 1.6; }

/* ========== FORMS ========== */
.contact-form-wrap {
    max-width: 640px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--teal);
}

.contact-card.yellow-border { border-top-color: var(--yellow); }

.contact-card h3 { font-size: 1.3rem; margin-bottom: 8px; }

.contact-card > p {
    font-size: 0.95rem;
    color: var(--dark-light);
    margin-bottom: 28px;
    line-height: 1.7;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(82,84,95,0.15);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,196,186,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-status {
    min-height: 24px;
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-status.success { color: var(--green); }
.form-status.error { color: var(--coral); }

/* ========== PROGRAMME DETAIL BLOCKS ========== */
.programme-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 64px 0;
    border-bottom: 1px solid rgba(82,84,95,0.06);
}

.programme-detail:last-child { border-bottom: none; }
.programme-detail.reversed { direction: rtl; }
.programme-detail.reversed > * { direction: ltr; }

.programme-info .section-label { text-align: left; }

.programme-info h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.programme-ages-large {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--teal);
    margin-bottom: 20px;
}

.programme-info p {
    font-size: 1rem;
    color: var(--dark-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.programme-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.programme-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--dark-light);
    line-height: 1.6;
}

.programme-list li::before {
    content: '';
    width: 8px; height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--teal);
    margin-top: 8px;
}

.programme-visual {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.programme-visual-icon {
    font-size: 6rem;
    opacity: 0.15;
    position: absolute;
}

.programme-visual-tag {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--dark);
    opacity: 0.12;
    text-align: center;
    line-height: 1.3;
}

.programme-visual.green-tint { background: var(--pale-green); }
.programme-visual.teal-tint { background: var(--pale-teal); }
.programme-visual.yellow-tint { background: var(--pale-yellow); }

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand img { height: 28px; width: auto; margin-bottom: 16px; }

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer h4 {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

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

.footer-links a { font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.footer-socials { display: flex; gap: 16px; }

.footer-socials a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-socials a:hover { background: var(--teal); color: var(--white); }

/* ========== HOMEPAGE SPECIFICS ========== */
.home-hero {
    background: linear-gradient(135deg, var(--pale-teal) 0%, var(--white) 40%, var(--pale-yellow) 100%);
}

.home-hero::before {
    content: '</>';
    position: absolute;
    top: 120px; right: 8%;
    font-family: 'Quicksand', sans-serif;
    font-size: 12rem;
    font-weight: 700;
    color: var(--teal);
    opacity: 0.04;
    pointer-events: none;
}

.home-hero::after {
    content: '*';
    position: absolute;
    bottom: 40px; left: 5%;
    font-family: 'Quicksand', sans-serif;
    font-size: 10rem;
    font-weight: 700;
    color: var(--yellow);
    opacity: 0.08;
    pointer-events: none;
}

/* Audience split cards on homepage */
.audience-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.audience-card {
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.audience-card-parent {
    background: linear-gradient(135deg, var(--pale-teal) 0%, #e4f9f7 100%);
    border: 2px solid rgba(0,196,186,0.15);
}

.audience-card-franchise {
    background: linear-gradient(135deg, var(--pale-yellow) 0%, #fdf5db 100%);
    border: 2px solid rgba(255,205,0,0.2);
}

.audience-card-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.audience-card-parent .audience-card-icon { background: rgba(0,196,186,0.15); }
.audience-card-franchise .audience-card-icon { background: rgba(255,205,0,0.2); }

.audience-card h3 { font-size: 1.4rem; margin-bottom: 12px; }

.audience-card p {
    font-size: 0.95rem;
    color: var(--dark-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.audience-card .btn { margin-top: auto; }

.audience-card::after {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 8rem;
    position: absolute;
    bottom: -20px; right: -10px;
    opacity: 0.04;
    pointer-events: none;
}

.audience-card-parent::after { content: '#'; color: var(--teal); }
.audience-card-franchise::after { content: '&'; color: var(--yellow); }

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.6rem; }
    .section-header h2 { font-size: 2rem; }
    .franchise-layout { grid-template-columns: 1fr; }
    .franchise-card-area { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .programme-detail { grid-template-columns: 1fr; gap: 32px; }
    .programme-detail.reversed { direction: ltr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open, .nav-cta.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: var(--white);
        padding: 24px;
        box-shadow: var(--shadow-md);
        z-index: 999;
    }

    .nav-links.open { gap: 20px; }

    .hero { padding: 120px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 2.2rem; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-number { font-size: 1.8rem; }

    .pathway-grid { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr; }
    .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
    .audience-split { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .section { padding: 64px 0; }
    .section-header { margin-bottom: 40px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-sub { font-size: 1rem; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .outcomes-grid { grid-template-columns: 1fr; }
    .cta-content h2 { font-size: 1.6rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .programme-info h3 { font-size: 1.4rem; }
}