@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

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

:root {
    --color-bg: #F5F5F5;
    --color-navy: #1A2B4D;
    --color-green: #6B8E23;
    --color-terracotta: #CC5500;
    --color-text: #2A2A2A;
    --color-text-muted: #5A5A5A;
    --color-text-light: #888888;
    --color-white: #FFFFFF;
    --color-border: #DCDCDC;
    --color-block-dark: #1A2B4D;
    --color-block-mid: #2E3F63;
    --color-card-bg: #FFFFFF;
    --color-overlay: rgba(26, 43, 77, 0.72);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lora', serif;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 96px;
    --spacing-xxl: 128px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-card: 0 2px 16px rgba(26,43,77,0.10);
    --shadow-card-hover: 0 8px 32px rgba(26,43,77,0.18);
    --transition-base: 0.28s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container--narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.18;
    color: var(--color-navy);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

h2 {
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    font-weight: 800;
    text-wrap: balance;
}

h3 {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-navy);
}

p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.75;
    color: var(--color-text);
}

p:last-child {
    margin-bottom: 0;
}

.text-muted {
    color: var(--color-text-muted);
}

.text-small {
    font-size: 0.875rem;
    font-family: var(--font-heading);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section--dark {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
    color: var(--color-white);
}

.section--dark p {
    color: rgba(255,255,255,0.82);
}

.section--green {
    background-color: var(--color-green);
    color: var(--color-white);
}

.section--green h2,
.section--green h3 {
    color: var(--color-white);
}

.section--mid {
    background-color: #EFF0F2;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: var(--spacing-sm);
    border-left: 3px solid var(--color-terracotta);
    padding-left: var(--spacing-xs);
}

.section-label--white {
    color: rgba(255,255,255,0.7);
    border-left-color: rgba(255,255,255,0.5);
}

.section-label--green {
    color: var(--color-green);
    border-left-color: var(--color-green);
}

.divider-line {
    width: 56px;
    height: 3px;
    background: var(--color-terracotta);
    margin: var(--spacing-sm) 0 var(--spacing-md);
    border: none;
    display: block;
}

.divider-line--white {
    background: rgba(255,255,255,0.5);
}

.divider-line--green {
    background: var(--color-green);
}

.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
    border: 2px solid transparent;
    text-decoration: none;
}

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

.btn--primary:hover {
    background-color: var(--color-block-mid);
    border-color: var(--color-block-mid);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,43,77,0.22);
}

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

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

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

.btn--outline-white:hover {
    background-color: rgba(255,255,255,0.12);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: translateY(-2px);
}

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

.btn--terracotta:hover {
    background-color: #b34a00;
    border-color: #b34a00;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204,85,0,0.28);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 43, 77, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.22);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: -0.04em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.header-logo span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-terracotta);
    border-radius: 50%;
    margin-bottom: 2px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header-nav a {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    transition: color var(--transition-base), border-color var(--transition-base);
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--color-white);
    border-bottom-color: var(--color-terracotta);
}

.header-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.header-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--color-navy);
    z-index: 999;
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
    padding: 14px var(--spacing-md);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color var(--transition-base), background-color var(--transition-base);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--color-white);
    background-color: rgba(255,255,255,0.05);
}

.page-offset {
    padding-top: 72px;
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-navy);
}

.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(26,43,77,0.88) 45%, rgba(26,43,77,0.42) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: var(--spacing-xl) 0;
}

.hero__badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    background: rgba(204,85,0,0.12);
    border: 1px solid rgba(204,85,0,0.35);
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: var(--spacing-md);
}

.hero__disclaimer {
    margin-top: var(--spacing-md);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.04em;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: var(--spacing-sm);
}

.hero__educational-badge {
    display: inline-block;
    margin-top: var(--spacing-md);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.58);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 2px;
}

.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.card {
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card__body {
    padding: var(--spacing-md);
}

.card__tag {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-green);
    margin-bottom: 10px;
}

.card__link {
    display: inline-block;
    margin-top: var(--spacing-sm);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    border-bottom: 2px solid var(--color-terracotta);
    padding-bottom: 2px;
    transition: color var(--transition-base), border-color var(--transition-base);
}

.card__link:hover {
    color: #b34a00;
    border-color: #b34a00;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 520px;
}

.split-section--reverse {
    direction: rtl;
}

.split-section--reverse > * {
    direction: ltr;
}

.split-section__image {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.split-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.split-section:hover .split-section__image img {
    transform: scale(1.04);
}

.split-section__content {
    padding: var(--spacing-xl) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-white);
}

.split-section--dark .split-section__content {
    background: var(--color-navy);
}

.split-section--dark .split-section__content h2,
.split-section--dark .split-section__content h3 {
    color: var(--color-white);
}

.split-section--dark .split-section__content p {
    color: rgba(255,255,255,0.78);
}

.assessment-section {
    background: var(--color-white);
    padding: var(--spacing-xl) 0;
}

.assessment-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    box-shadow: 0 2px 20px rgba(26,43,77,0.07);
}

.assessment-step {
    display: none;
}

.assessment-step.active {
    display: block;
}

.assessment-question {
    margin-bottom: var(--spacing-lg);
}

.assessment-question__label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.assessment-question__title {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: var(--spacing-sm);
}

.option-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

.option-btn {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-text);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

.option-btn:hover {
    border-color: var(--color-navy);
    background: rgba(26,43,77,0.05);
}

.option-btn.selected {
    border-color: var(--color-navy);
    background: var(--color-navy);
    color: var(--color-white);
}

.slider-wrap {
    margin-top: var(--spacing-sm);
}

.slider-wrap input[type=range] {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--color-navy) 0%, var(--color-navy) 50%, var(--color-border) 50%, var(--color-border) 100%);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.slider-wrap input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-navy);
    box-shadow: 0 2px 8px rgba(26,43,77,0.3);
    cursor: pointer;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-top: 6px;
}

.assessment-progress {
    display: flex;
    gap: 6px;
    margin-bottom: var(--spacing-md);
}

.assessment-progress__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    transition: background var(--transition-base);
}

.assessment-progress__dot.done {
    background: var(--color-green);
}

.assessment-progress__dot.active {
    background: var(--color-navy);
    transform: scale(1.3);
}

.assessment-loading {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.assessment-loading__spinner {
    width: 56px;
    height: 56px;
    border: 4px solid var(--color-border);
    border-top-color: var(--color-navy);
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.dashboard-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-navy);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.dashboard-metric {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    position: relative;
    overflow: hidden;
    transition: background var(--transition-base), border-color var(--transition-base);
}

.dashboard-metric:hover {
    background: rgba(255,255,255,0.11);
    border-color: rgba(255,255,255,0.22);
}

.dashboard-metric__label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
}

.dashboard-metric__value {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 6px;
}

.dashboard-metric__value.green { color: #8BC34A; }
.dashboard-metric__value.yellow { color: #FFD54F; }
.dashboard-metric__value.orange { color: #FF8A65; }

.dashboard-metric__desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.5;
}

.dashboard-metric__bar {
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.12);
    margin-top: var(--spacing-sm);
    overflow: hidden;
}

.dashboard-metric__bar-fill {
    height: 100%;
    border-radius: 2px;
    width: 0;
    transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

.dashboard-metric__bar-fill.green { background: #8BC34A; }
.dashboard-metric__bar-fill.yellow { background: #FFD54F; }
.dashboard-metric__bar-fill.orange { background: #FF8A65; }

.dashboard-metric__btn {
    display: inline-block;
    margin-top: var(--spacing-sm);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    border-bottom: 1px solid rgba(255,255,255,0.25);
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 0;
    transition: color var(--transition-base);
}

.dashboard-metric__btn:hover {
    color: var(--color-white);
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,18,38,0.72);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    max-width: 560px;
    width: 90%;
    position: relative;
    box-shadow: 0 16px 64px rgba(0,0,0,0.3);
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color var(--transition-base);
    padding: 4px 8px;
}

.modal-close:hover {
    color: var(--color-navy);
}

.info-tools-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

.tool-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md) var(--spacing-md);
    box-shadow: var(--shadow-card);
    border-top: 3px solid var(--color-navy);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.tool-card:nth-child(2) {
    border-top-color: var(--color-green);
}

.tool-card:nth-child(3) {
    border-top-color: var(--color-terracotta);
}

.tool-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.tool-card__icon svg {
    width: 24px;
    height: 24px;
}

.community-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.quote-card {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: var(--spacing-md) var(--spacing-md);
    border-left: 4px solid var(--color-green);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.quote-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.quote-card__text {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.quote-card__author {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.stat-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    background: var(--color-navy);
    padding: var(--spacing-md) var(--spacing-md);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item__number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
}

.stat-item__label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.52);
    margin-top: 4px;
}

.library-section {
    padding: var(--spacing-xl) 0;
    background: #EFF0F2;
}

.library-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    text-decoration: none;
    color: inherit;
}

.library-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}

.library-card__num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-border);
    line-height: 1;
    flex-shrink: 0;
    min-width: 48px;
}

.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-navy);
    cursor: pointer;
    gap: var(--spacing-sm);
    transition: color var(--transition-base);
}

.faq-question:hover {
    color: var(--color-terracotta);
}

.faq-question__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.faq-item.open .faq-question__icon {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: var(--color-white);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding-bottom: var(--spacing-sm);
}

.faq-answer p {
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

.approaches-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

.approach-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--color-border);
}

.approach-item:last-child {
    border-bottom: none;
}

.approach-item__num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--color-terracotta);
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
    opacity: 0.35;
}

.disclaimer-box {
    background: rgba(26,43,77,0.05);
    border: 1px solid rgba(26,43,77,0.12);
    border-left: 4px solid var(--color-navy);
    border-radius: var(--radius-sm);
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.disclaimer-box p {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.disclaimer-box--terracotta {
    border-left-color: var(--color-terracotta);
    background: rgba(204,85,0,0.04);
    border-color: rgba(204,85,0,0.15);
    border-left-color: var(--color-terracotta);
}

.context-block {
    background: #EFF0F2;
    border-radius: var(--radius-md);
    padding: var(--spacing-md) var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.context-block h3 {
    color: var(--color-navy);
    margin-bottom: var(--spacing-sm);
}

.context-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.context-block ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

.context-block ul li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-green);
    flex-shrink: 0;
    margin-top: 8px;
}

.site-footer {
    background: var(--color-navy);
    color: rgba(255,255,255,0.72);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: -0.04em;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand span {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--color-terracotta);
    border-radius: 50%;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: var(--spacing-sm);
}

.footer-educational-note {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    background: rgba(204,85,0,0.12);
    border: 1px solid rgba(204,85,0,0.25);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 2px;
    margin-bottom: var(--spacing-md);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: var(--spacing-sm);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition-base);
}

.footer-col ul li a:hover {
    color: var(--color-white);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
}

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.footer-disclaimer p {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.65;
    margin-bottom: var(--spacing-sm);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.footer-bottom p {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.32);
    margin: 0;
}

.chat-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
}

.chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-navy);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(26,43,77,0.35);
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.chat-toggle:hover {
    background: var(--color-block-mid);
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(26,43,77,0.45);
}

.chat-toggle svg {
    width: 26px;
    height: 26px;
    fill: var(--color-white);
}

.chat-box {
    display: none;
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 320px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(26,43,77,0.22);
    overflow: hidden;
    animation: fadeInUp 0.3s ease;
}

.chat-box.open {
    display: block;
}

.chat-header {
    background: var(--color-navy);
    padding: 16px var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-header__avatar svg {
    width: 20px;
    height: 20px;
    fill: var(--color-white);
}

.chat-header__name {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-white);
}

.chat-header__status {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    color: rgba(255,255,255,0.55);
}

.chat-header__close {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(255,255,255,0.55);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color var(--transition-base);
}

.chat-header__close:hover {
    color: var(--color-white);
}

.chat-messages {
    padding: var(--spacing-sm);
    min-height: 160px;
    max-height: 260px;
    overflow-y: auto;
}

.chat-msg {
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--color-text);
    line-height: 1.55;
    margin-bottom: 10px;
}

.chat-disclaimer {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    color: var(--color-text-light);
    padding: 0 var(--spacing-sm);
    margin-bottom: 8px;
    line-height: 1.5;
}

.chat-quick-btns {
    padding: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid var(--color-border);
}

.chat-quick-btn {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-navy);
    cursor: pointer;
    text-align: left;
    transition: background var(--transition-base), border-color var(--transition-base);
}

.chat-quick-btn:hover {
    background: rgba(26,43,77,0.06);
    border-color: var(--color-navy);
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1500;
    background: var(--color-navy);
    border-top: 2px solid rgba(255,255,255,0.1);
    padding: var(--spacing-sm) var(--spacing-md);
}

.cookie-banner.show {
    display: block;
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    max-width: 1280px;
    margin: 0 auto;
}

.cookie-text {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    flex: 1;
    min-width: 220px;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
}

.cookie-btn--accept {
    background: var(--color-green);
    color: var(--color-white);
}

.cookie-btn--accept:hover {
    background: #5a7a1b;
}

.cookie-btn--reject {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn--reject:hover {
    background: rgba(255,255,255,0.18);
}

.cookie-btn--more {
    background: transparent;
    color: rgba(255,255,255,0.55);
    text-decoration: underline;
    font-size: 0.68rem;
    padding: 8px 10px;
}

.cookie-btn--more:hover {
    color: rgba(255,255,255,0.85);
}

.page-hero-simple {
    background: var(--color-navy);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.page-hero-simple::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(107,142,35,0.12) 100%);
    pointer-events: none;
}

.page-hero-simple h1 {
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

.page-hero-simple .section-label {
    position: relative;
    z-index: 1;
}

.about-timeline {
    position: relative;
    padding-left: 32px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-md);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-navy);
    border: 3px solid var(--color-bg);
    box-shadow: 0 0 0 2px var(--color-navy);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: 4px;
}

.contact-form {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-card);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    outline: none;
    resize: vertical;
}

.form-control:focus {
    border-color: var(--color-navy);
    box-shadow: 0 0 0 3px rgba(26,43,77,0.1);
}

.policy-content {
    padding: var(--spacing-xl) 0;
}

.policy-content h2 {
    font-size: 1.4rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
    color: var(--color-navy);
}

.policy-content h2:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.policy-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}

.policy-content ul {
    list-style: disc;
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.policy-content ul li {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    font-family: var(--font-body);
}

.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) 0;
}

.thank-you-box {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.thank-you-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--color-white);
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .split-section {
        grid-template-columns: 1fr;
    }
    .split-section--reverse {
        direction: ltr;
    }
    .split-section__content {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    .dashboard-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 64px;
        --spacing-lg: 40px;
        --spacing-md: 24px;
    }
    .header-nav {
        display: none;
    }
    .header-burger {
        display: flex;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    .stat-strip {
        gap: var(--spacing-md);
    }
    .assessment-card {
        padding: var(--spacing-md);
    }
    .hero {
        min-height: 80vh;
    }
    .hero__content {
        padding: var(--spacing-lg) 0;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero__cta-group {
        flex-direction: column;
    }
    .btn {
        text-align: center;
    }
    .chat-box {
        width: 290px;
    }
    .option-group {
        flex-direction: column;
    }
}
