/* ===== SYNTAXTOMARKET INSTITUTE — SHARED STYLES ===== */
:root {
    --deep-navy: #0B1F3A;
    --royal-blue: #145DDB;
    --bright-blue: #1195E8;
    --teal: #15C9A8;
    --aqua-green: #16D4A4;
    --light-gray: #F3F5F7;
    --white: #FFFFFF;
    --text-dark: #1A2332;
    --text-muted: #6B7B8F;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Sora', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(21, 201, 168, 0.3); }
    50% { box-shadow: 0 0 40px rgba(21, 201, 168, 0.6); }
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(11, 31, 58, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}
.logo-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--teal), var(--aqua-green));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--deep-navy);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}
.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: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--teal); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
    background: linear-gradient(135deg, var(--teal), var(--aqua-green));
    color: var(--deep-navy) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 201, 168, 0.4);
}
.nav-cta::after { display: none !important; }
.mobile-menu-btn {
    display: none;
    background: none; border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--aqua-green));
    color: var(--deep-navy);
    box-shadow: 0 8px 30px rgba(21, 201, 168, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(21, 201, 168, 0.5);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: rgba(21, 201, 168, 0.05);
}
.btn-outline-dark {
    background: transparent;
    color: var(--deep-navy);
    border: 2px solid var(--deep-navy);
}
.btn-outline-dark:hover {
    background: var(--deep-navy);
    color: var(--white);
}
.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

/* ===== SECTIONS ===== */
section { padding: 5rem 0; position: relative; }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal);
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--deep-navy);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.7;
}
.text-center { text-align: center; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: var(--deep-navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    overflow: hidden;
}
.hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(20, 93, 219, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(21, 201, 168, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(17, 149, 232, 0.08) 0%, transparent 50%);
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(21, 201, 168, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 201, 168, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gradient-shift 20s ease infinite;
}
.hero-particles {
    position: absolute; inset: 0;
}
.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--teal);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease forwards;
}
.hero-badge .dot {
    width: 8px; height: 8px;
    background: var(--aqua-green);
    border-radius: 50%;
    animation: pulse-glow 2s ease infinite;
}
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s both;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--teal), var(--aqua-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-visual {
    position: relative;
    animation: fadeIn 1s ease 0.4s both;
}
.hero-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.hero-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(21, 201, 168, 0.1) 0%, transparent 70%);
}
.stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.stat-item {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
}
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--teal), var(--bright-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
    font-weight: 500;
}
.hero-graphic {
    height: 180px;
    background: linear-gradient(180deg, rgba(21, 201, 168, 0.1) 0%, transparent 100%);
    border-radius: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    gap: 8px;
    position: relative;
}
.bar {
    width: 30px;
    background: linear-gradient(to top, var(--teal), var(--bright-blue));
    border-radius: 6px 6px 0 0;
    opacity: 0.8;
    transition: all 0.5s;
}
.bar:nth-child(1) { height: 40%; }
.bar:nth-child(2) { height: 65%; }
.bar:nth-child(3) { height: 45%; }
.bar:nth-child(4) { height: 85%; }
.bar:nth-child(5) { height: 60%; }
.bar:nth-child(6) { height: 95%; }

/* ===== CARDS ===== */
.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.card-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }

.card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(11, 31, 58, 0.1);
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--bright-blue));
    transform: scaleX(0);
    transition: transform 0.4s;
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(21, 201, 168, 0.1), rgba(17, 149, 232, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--teal);
}
.card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.75rem;
}
.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== DARK SECTIONS ===== */
.dark-section {
    background: var(--deep-navy);
    color: var(--white);
}
.dark-section .section-title { color: var(--white); }
.dark-section .section-subtitle { color: rgba(255,255,255,0.7); }

.policy-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: all 0.3s;
}
.policy-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(5px);
}
.policy-icon {
    width: 48px; height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--teal), var(--aqua-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--deep-navy);
}
.policy-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.policy-card p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.6;
}

.gov-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(21, 201, 168, 0.1);
    border: 1px solid rgba(21, 201, 168, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}
.gov-badge span {
    font-size: 0.85rem;
    color: var(--teal);
    font-weight: 500;
}

/* ===== DIFFERENTIATORS ===== */
.diff-list { list-style: none; }
.diff-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.diff-list li:last-child { border-bottom: none; }
.diff-check {
    width: 32px; height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, var(--teal), var(--aqua-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-navy);
    font-size: 0.9rem;
    font-weight: 700;
}
.diff-list h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 0.25rem;
}
.diff-list p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.comparison-table {
    background: linear-gradient(135deg, var(--light-gray), #e8ecf1);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}
.comparison-table::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(21, 201, 168, 0.08) 0%, transparent 50%);
}
.comp-header {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
}
.comp-header span:first-child { flex: 1; }
.comp-header span { width: 100px; text-align: center; }
.comp-row {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
    z-index: 1;
}
.comp-label { flex: 1; font-weight: 600; color: var(--deep-navy); font-size: 0.95rem; }
.comp-val { width: 100px; text-align: center; font-size: 0.85rem; font-weight: 600; }
.comp-val.others { color: var(--text-muted); }
.comp-val.us { color: var(--teal); }

/* ===== MODEL CARDS ===== */
.model-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s;
}
.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(11, 31, 58, 0.1);
}
.model-card .number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--teal), var(--bright-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}
.model-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.75rem;
}
.model-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== IMPACT ===== */
.impact-stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s;
}
.impact-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(11, 31, 58, 0.08);
}
.impact-stat .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--deep-navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.impact-stat .number span {
    background: linear-gradient(135deg, var(--royal-blue), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.impact-stat .label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.impact-quote {
    background: linear-gradient(135deg, var(--deep-navy), #14294a);
    border-radius: 24px;
    padding: 3rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.impact-quote::before {
    content: '"';
    position: absolute;
    top: -20px; left: 30px;
    font-size: 10rem;
    color: rgba(21, 201, 168, 0.1);
    font-weight: 800;
    line-height: 1;
}
.impact-quote p {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== LEADERSHIP ===== */
.leader-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s;
}
.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(11, 31, 58, 0.1);
}
.leader-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--bright-blue));
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}
.leader-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.25rem;
}
.leader-card .role {
    font-size: 0.8rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.leader-card .org {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.leader-bio {
    text-align: left;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.leader-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(21, 201, 168, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(21, 201, 168, 0.15);
}
.leader-note p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

/* ===== PARTNERS / CTA ===== */
.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    transition: all 0.4s;
    text-align: left;
    color: var(--white);
}
.cta-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}
.cta-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}
.cta-card p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.cta-card .btn {
    width: 100%;
    justify-content: center;
}

.fundraising-bar {
    max-width: 600px;
    margin: 3rem auto 0;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}
.fund-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}
.fund-label span:first-child { color: rgba(255,255,255,0.7); }
.fund-label span:last-child { color: var(--teal); font-weight: 700; }
.fund-progress {
    height: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}
.fund-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--teal), var(--aqua-green));
    border-radius: 10px;
    transition: width 2s ease;
}

/* ===== DONATE TIERS ===== */
.tier-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2rem;
    border: 2px solid rgba(0,0,0,0.05);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(11, 31, 58, 0.12);
    border-color: var(--teal);
}
.tier-card.featured {
    border-color: var(--teal);
    box-shadow: 0 15px 40px rgba(21, 201, 168, 0.15);
}
.tier-badge {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: linear-gradient(135deg, var(--teal), var(--aqua-green));
    color: var(--deep-navy);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
}
.tier-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.tier-amount span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}
.tier-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}
.tier-card ul {
    list-style: none;
    margin-bottom: 2rem;
}
.tier-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.tier-card ul li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    min-width: 16px;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}
.contact-info-card:hover {
    border-color: var(--teal);
    transform: translateX(5px);
}
.contact-info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}
.contact-info-card a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}
.contact-info-card a:hover {
    text-decoration: underline;
}
.contact-info-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* ===== FOOTER ===== */
footer {
    background: #070f1c;
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-decoration: none;
}
.footer-brand .logo-icon {
    width: 36px; height: 36px;
    font-size: 0.9rem;
}
.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}
.footer-col h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { font-size: 0.85rem; }
.social-links {
    display: flex;
    gap: 1rem;
}
.social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}
.social-links a:hover {
    background: var(--teal);
    color: var(--deep-navy);
    transform: translateY(-3px);
}

/* ===== PAGE HERO (smaller) ===== */
.page-hero {
    min-height: 50vh;
    background: var(--deep-navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 6rem;
}
.page-hero .hero-bg { position: absolute; inset: 0; }
.page-hero .hero-content {
    padding: 4rem 2rem;
    text-align: center;
    display: block;
}
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}
.page-hero .hero-subtitle {
    margin: 0 auto;
    max-width: 700px;
}

/* ===== PROGRAM CARDS ===== */
.program-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s;
}
.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(11, 31, 58, 0.1);
    border-color: var(--teal);
}
.program-card .program-number {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    margin-bottom: 0.75rem;
}
.program-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}
.program-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.program-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}
.program-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.program-card ul li::before {
    content: '→';
    color: var(--teal);
    font-weight: 700;
}

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-cta-group { justify-content: center; }
    .hero-visual { display: none; }
    .card-grid-2, .card-grid-3, .card-grid-4, .card-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(11, 31, 58, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block; }
    .card-grid-2, .card-grid-3, .card-grid-4, .card-grid-5 {
        grid-template-columns: 1fr;
    }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-group { flex-direction: column; align-items: center; }
    .cta-card { max-width: 100%; width: 100%; }
    section { padding: 3rem 0; }
    .tier-card { padding: 2rem 1.5rem; }
}
