/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --navy-dark: #1F265E;
    --navy: #2A3270;
    --orange: #F28C18;
    --orange-hover: #E07D0A;
    --green: #1FA34A;
    --red: #DC3545;
    --text: #1F265E;
    --text-light: #5A6178;
    --bg-light: #F8F9FC;
    --white: #ffffff;
}

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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
}

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

/* Navigation */
nav {
    background: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(31, 38, 94, 0.08);
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--navy-dark); text-decoration: none; }
.logo span { color: var(--orange); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--text); text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.nav-links a.active { color: var(--orange); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-2px); }
.btn-large { padding: 16px 32px; font-size: 1.1rem; }

/* Page Header */
.page-header {
    padding: 60px 0 40px;
    text-align: center;
    background: var(--bg-light);
}
.page-header h1 { font-size: 2.2rem; color: var(--navy-dark); margin-bottom: 16px; }
.page-header p { font-size: 1.1rem; color: var(--text-light); max-width: 650px; margin: 0 auto; }

/* Section Titles */
.section-title { text-align: center; font-size: 1.6rem; margin-bottom: 16px; color: var(--navy-dark); }
.section-intro { text-align: center; color: var(--text-light); margin-bottom: 40px; max-width: 650px; margin-left: auto; margin-right: auto; }

/* Cards */
.card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Accordion */
.accordion { border: 1px solid #E5E7EB; border-radius: 8px; overflow: hidden; }
.accordion-item { border-bottom: 1px solid #E5E7EB; }
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
    padding: 16px 20px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--navy-dark);
}
.accordion-header:hover { background: var(--bg-light); }
.accordion-icon { font-size: 1.2rem; color: var(--orange); }
.accordion-content { display: none; padding: 16px 20px; background: var(--bg-light); font-size: 0.95rem; color: var(--text-light); }
.accordion-content.open { display: block; }
.accordion-content ul { margin-left: 20px; margin-top: 8px; }
.accordion-content li { margin-bottom: 6px; }

/* Tabs */
.tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.tab {
    padding: 12px 24px;
    border: 2px solid var(--navy-dark);
    background: var(--white);
    color: var(--navy-dark);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
}
.tab:hover { background: var(--bg-light); }
.tab.active { background: var(--navy-dark); color: var(--white); }

/* Scores/Badges */
.score-badge { font-size: 0.85rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.score-low { background: #FEE2E2; color: var(--red); }
.score-medium { background: #FEF3C7; color: #D97706; }
.score-high { background: #D1FAE5; color: var(--green); }

/* Check/X marks */
.check { color: var(--green); font-size: 1.2rem; font-weight: bold; }
.partial { color: var(--orange); font-size: 1.1rem; }
.no { color: var(--red); font-size: 1.2rem; }

/* CTA Section */
.cta-section { padding: 60px 0; text-align: center; }
.cta-section.dark { background: var(--navy-dark); color: var(--white); }
.cta-section.light { background: var(--bg-light); }
.cta-section h2 { font-size: 1.8rem; margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 24px; }

/* Footer */
footer { background: var(--navy-dark); padding: 24px 0; color: var(--white); }
.footer-content { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; opacity: 0.7; }
.footer-links a { color: var(--white); text-decoration: none; margin-left: 20px; }

/* Dark section */
.section-dark { background: var(--navy-dark); padding: 60px 0; color: var(--white); }
.section-dark h2 { text-align: center; font-size: 1.6rem; margin-bottom: 12px; }
.section-dark .intro { text-align: center; opacity: 0.8; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Light section */
.section-light { background: var(--bg-light); padding: 60px 0; }

/* Standard section */
.section { padding: 60px 0; }

/* Responsive */
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .page-header h1 { font-size: 1.8rem; }
    .footer-content { flex-direction: column; gap: 10px; text-align: center; }
    .tabs { gap: 4px; }
    .tab { padding: 10px 16px; font-size: 0.85rem; }
}
