:root {
    --primary: #0F2847;
    --secondary: #1A497D;
    --accent: #F57C00;
    --bg: #F9FAFC;
    --surface: #FFFFFF;
    --text-primary: #1C2A38;
    --text-secondary: #546E7A;
    --border: #E0E6ED;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius: 8px;
    --shadow: 0 4px 12px rgba(15, 40, 71, 0.08);
    --shadow-hover: 0 12px 24px rgba(15, 40, 71, 0.12);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-primary);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary);
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.max-w-800 { max-width: 800px; margin: 0 auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.w-100 { width: 100%; }
.bg-primary { background-color: var(--primary); color: white; }
.bg-surface { background-color: var(--surface); }
.text-white { color: white; }
.p-2 { padding: 2rem; }

/* Header */
.site-header {
    background: var(--surface);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-logo {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.main-nav a {
    color: var(--text-primary);
    font-weight: 500;
}
.main-nav a:hover, .main-nav a[aria-current="page"] {
    color: var(--accent);
}

.mobile-burger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}
.mobile-burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--secondary); color: white; transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: #E65100; color: white; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-outline.light { border-color: white; color: white; }
.btn-outline.light:hover { background: white; color: var(--primary); }
.center-cta { text-align: center; margin-top: 2rem; }

/* Sections */
section { padding: 4rem 0; }
.page-content { padding: 4rem 0; }
.section-title { text-align: center; margin-bottom: 3rem; font-size: 2rem; }

/* Hero Split Image Right */
.hero-split-image-right {
    background: linear-gradient(135deg, var(--bg) 0%, #E8EEF5 100%);
    padding: 4rem 0 0 0;
    position: relative;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 0 1rem;
}
.hero-badge {
    display: inline-block;
    background: rgba(245, 124, 0, 0.1);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.hero-title { font-size: 3rem; margin-bottom: 1rem; }
.hero-lead { font-size: 1.125rem; color: var(--text-secondary); margin-bottom: 2rem; }
.hero-visual-framed-media-panel {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 100%;
    min-height: 400px;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-structure-command-grid {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}
.hero-command-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}
.command-group { display: flex; flex-direction: column; gap: 0.5rem; }
.command-group label { font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); }
.command-group select {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    background: white;
}
.hero-support-ticker-row {
    background: var(--primary);
    color: white;
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}
.ticker-content {
    display: inline-block;
    animation: ticker 20s linear infinite;
}
.ticker-content span {
    margin-right: 3rem;
    font-weight: 600;
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Discovery Band */
.discovery-band {
    padding: 1.5rem 0;
    background: white;
    border-bottom: 1px solid var(--border);
}
.chip {
    display: inline-block;
    background: var(--bg);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-primary);
    margin: 0 0.5rem;
    border: 1px solid var(--border);
}
.chip:hover { background: var(--primary); color: white; }

/* Popular Sports Visual Directory */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}
.sport-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 200px;
    display: block;
}
.sport-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.sport-card:hover .sport-img { transform: scale(1.05); }
.sport-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,40,71,0.9) 0%, rgba(15,40,71,0.2) 100%);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.sport-overlay h3 { color: white; margin-bottom: 0.5rem; }
.age-chip {
    align-self: flex-start;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
}

/* Trust Story */
.trust-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.trust-checklist { list-style: none; margin-top: 1.5rem; }
.trust-checklist li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}
.trust-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}
.trust-cards { display: grid; gap: 1rem; }
.proof-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    border-left: 4px solid var(--accent);
}
.proof-icon { font-size: 2rem; margin-bottom: 0.5rem; }

/* School Cards & Grid */
.school-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.school-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.school-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.school-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.badge-overlay {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: bold;
}
.school-card-content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.school-card-content h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.school-meta { color: var(--text-secondary); font-size: 0.875rem; margin-bottom: 1rem; }
.school-desc { font-size: 0.9rem; margin-bottom: 1rem; flex-grow: 1; }
.school-facts {
    background: var(--bg);
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.school-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.school-actions .btn { padding: 0.5rem; font-size: 0.875rem; }

/* Timeline */
.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.step-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}
.step-number {
    width: 40px; height: 40px;
    background: var(--primary); color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; font-weight: bold;
    margin: 0 auto 1rem auto;
}

/* Editorial & Guides */
.editorial-resource {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.editorial-content-stack {
    max-width: 800px;
    margin: 0 auto;
}
.editorial-block { margin-bottom: 3rem; }
.editorial-block h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.editorial-block p { margin-bottom: 1rem; }
.editorial-block ul { margin-bottom: 1rem; padding-left: 1.5rem; }

/* Reviews Wall */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.review-rating { color: var(--accent); margin-bottom: 0.5rem; font-size: 1.25rem; }
.review-text { font-style: italic; margin-bottom: 1rem; }
.review-author { font-weight: 600; font-size: 0.875rem; color: var(--text-secondary); }

/* Checklist Grid */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.check-item {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: var(--radius);
}

/* FAQ Accordion */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: white;
    border: 1px solid var(--border);
    margin-bottom: 0.5rem;
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}
.faq-question.active::after { transform: rotate(45deg); }
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer p { padding-bottom: 1.25rem; color: var(--text-secondary); }

/* Catalog Layout */
.catalog-layout { background: var(--bg); }
.catalog-header { padding: 3rem 0; border-bottom: 1px solid var(--border); text-align: center; }
.catalog-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    padding: 3rem 1rem;
    align-items: start;
}
.catalog-sidebar {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}
.filter-group { margin-bottom: 1.5rem; }
.filter-group h4, .filter-group label[for="search-input"] { margin-bottom: 0.5rem; font-size: 1rem; display: block; }
.filter-group input[type="text"] {
    width: 100%; padding: 0.5rem; border: 1px solid var(--border); border-radius: 4px;
}
.filter-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; cursor: pointer; }
.filter-group input[type="checkbox"] { margin-right: 0.5rem; }
.empty-state { text-align: center; padding: 4rem; background: white; border-radius: var(--radius); }

/* Compare Tray */
.compare-tray {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--primary);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}
.compare-tray.active { transform: translateY(0); }
.compare-tray-header { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto 1rem; }
.compare-tray-items { display: flex; gap: 1rem; max-width: 1200px; margin: 0 auto; overflow-x: auto; padding-bottom: 0.5rem; }
.compare-item {
    background: white; color: var(--text-primary);
    padding: 1rem; border-radius: 4px; min-width: 200px;
    font-size: 0.8rem; position: relative;
}
.compare-item h5 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.btn-remove-compare { position: absolute; top: 0.5rem; right: 0.5rem; background: none; border: none; cursor: pointer; color: red; }

/* Modals */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(15,40,71,0.8);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2000;
    padding: 1rem;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content {
    background: white; padding: 2rem; border-radius: var(--radius);
    width: 100%; max-width: 500px; position: relative;
    transform: translateY(20px); transition: transform 0.3s ease;
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.btn-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.25rem; font-weight: 600; font-size: 0.875rem; }
.form-group input, .form-group textarea {
    width: 100%; padding: 0.75rem; border: 1px solid var(--border); border-radius: 4px; font-family: inherit;
}
.success-message { text-align: center; padding: 2rem 0; }

/* Visual Sports Cards */
.sports-visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.visual-sport-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 350px;
    box-shadow: var(--shadow);
}
.visual-sport-card.wide-card {
    grid-column: 1 / -1;
}
.vsc-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.5s ease;
}
.visual-sport-card:hover .vsc-img { transform: scale(1.05); }
.vsc-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,40,71,0.95) 0%, rgba(15,40,71,0.4) 100%);
    padding: 2rem;
    display: flex; flex-direction: column; justify-content: flex-end; color: white;
}
.vsc-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.vsc-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 0.5rem 0 1rem; }
.vsc-desc { font-size: 0.9rem; margin-bottom: 1rem; opacity: 0.9; }
.vsc-count { font-size: 0.8rem; font-weight: bold; margin-bottom: 1.5rem; color: var(--accent); }

/* Detail Page Layout */
.school-hero-dynamic {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 1rem 3rem 1rem;
    position: relative;
}
.school-hero-dynamic::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,40,71,1), rgba(15,40,71,0.3));
}
.school-hero-dynamic .container { position: relative; z-index: 2; }
.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; margin-top: 2rem; }
.info-card { background: white; padding: 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 1.5rem; }

/* Footer */
.site-footer {
    background: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { color: white; margin-bottom: 1rem; }
.footer-col a, .footer-col p, .footer-col address { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 0.5rem; display: block; font-style: normal; }
.footer-col a:hover { color: var(--accent); }
.footer-col .brand-logo { color: white; display: block; margin-bottom: 1rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* Animation / Reveal */
.reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal-section { opacity: 1; transform: none; transition: none; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Responsive */
@media (max-width: 1024px) {
    .catalog-container { grid-template-columns: 1fr; }
    .catalog-sidebar { position: static; margin-bottom: 2rem; }
}
@media (max-width: 768px) {
    .hero-container { grid-template-columns: 1fr; padding-top: 2rem; }
    .hero-title { font-size: 2.25rem; }
    .hero-command-form { grid-template-columns: 1fr; }
    .main-nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--surface); padding: 1rem; flex-direction: column;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .main-nav.active { display: flex; }
    .mobile-burger { display: flex; }
    .trust-split { grid-template-columns: 1fr; gap: 2rem; }
    .timeline-steps { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: 1fr; }
}
