/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --primary-dark: #0f2440;
    --accent: #c9a84c;
    --accent-light: #e8d48b;
    --text: #2d3748;
    --text-light: #718096;
    --text-white: #ffffff;
    --bg: #ffffff;
    --bg-light: #f7fafc;
    --bg-dark: #edf2f7;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.3;
    color: var(--primary);
}

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

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

ul {
    list-style: none;
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

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

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

.nav__logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav__logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav__logo-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 500;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary);
    background: var(--bg-light);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

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

.btn--primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn--secondary {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn--secondary:hover {
    background: var(--text-white);
    color: var(--primary);
}

.btn--large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: var(--text-white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 120px 0 80px;
}

.hero__title {
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

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

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--text-white);
    text-align: center;
}

.page-hero h1 {
    color: var(--text-white);
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.page-hero .section-tag {
    color: var(--accent-light);
}

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== STATS ===== */
.stats {
    padding: 60px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

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

.stats__number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stats__label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header--light .section-title {
    color: var(--text-white);
}

.section-header--light .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    padding: 80px 0;
}

.about-preview__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-preview__text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-preview__text .btn {
    margin-top: 12px;
}

.about-preview__values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-card {
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.value-card__icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--accent);
}

.value-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== MISSION PREVIEW ===== */
.mission-preview {
    padding: 80px 0;
    background: var(--primary);
    color: var(--text-white);
}

.mission-preview__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.mission-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.mission-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.mission-card__number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.mission-card h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.mission-card p {
    opacity: 0.85;
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
    padding: 80px 0;
    background: var(--accent);
}

.cta__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta p {
    color: var(--primary-dark);
    opacity: 0.85;
    margin-bottom: 32px;
    font-size: 1.05rem;
}

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

.cta .btn--primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* ===== ABOUT DETAILED ===== */
.about-detailed {
    padding: 80px 0;
}

.about-detailed__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.about-detailed__text h2 {
    margin-bottom: 24px;
}

.about-detailed__text p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.info-card {
    padding: 28px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.info-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.info-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-light);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li strong {
    color: var(--text);
}

/* ===== GOVERNANCE ===== */
.governance {
    padding: 80px 0;
    background: var(--bg-light);
}

.governance__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.governance-card {
    padding: 32px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.governance-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.governance-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== TIMELINE ===== */
.history {
    padding: 80px 0;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--accent);
}

.timeline__item {
    display: flex;
    margin-bottom: 48px;
    position: relative;
}

.timeline__item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 32px);
    text-align: right;
}

.timeline__item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 32px);
    text-align: left;
}

.timeline__date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 1;
}

.timeline__content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.timeline__content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== PROGRAMS ===== */
.programs {
    padding: 80px 0;
}

.programs__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.program-card {
    padding: 32px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.program-card__icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.program-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.program-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.program-card__list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
}

.program-card__list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ===== IMPACT ===== */
.impact {
    padding: 80px 0;
    background: var(--primary);
    color: var(--text-white);
}

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

.impact-card {
    padding: 32px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
}

.impact-card__number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.impact-card h3 {
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 8px;
}

.impact-card p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ===== APPROACH ===== */
.approach {
    padding: 80px 0;
}

.approach__content {
    max-width: 800px;
    margin: 0 auto;
}

.approach__item {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.approach__item:last-child {
    border-bottom: none;
}

.approach__step {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
}

.approach__item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.approach__item p {
    color: var(--text-light);
}

/* ===== TEAM ===== */
.team-intro {
    padding: 40px 0;
}

.team-members {
    padding: 0 0 80px;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.team-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.team-card__avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}

.team-card__info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.team-card__role {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.team-card__bio {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.team-card__since {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===== BOARD ===== */
.board {
    padding: 80px 0;
    background: var(--bg-light);
}

.board__content {
    max-width: 800px;
    margin: 0 auto;
}

.board__text p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.board__list {
    margin-bottom: 20px;
}

.board__list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-light);
}

.board__list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ===== VALUES ===== */
.values {
    padding: 80px 0;
    background: var(--primary);
    color: var(--text-white);
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-item {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
}

.value-item h3 {
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.value-item p {
    opacity: 0.85;
    font-size: 0.95rem;
}

/* ===== CONTACT ===== */
.contact {
    padding: 80px 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
}

.contact__form-wrapper h2,
.contact__info h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.contact__form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-group--checkbox input {
    width: auto;
    margin-top: 4px;
}

.form-group--checkbox label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-group--checkbox label a {
    color: var(--primary);
    text-decoration: underline;
}

.contact-info-card {
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.contact-info-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.contact-info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-info-card p.small {
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 8px;
}

.contact-info-card a {
    color: var(--primary);
    text-decoration: underline;
}

/* ===== MAP ===== */
.map-section {
    padding: 0 0 80px;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    display: block;
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    text-align: left;
}

.faq-item__icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 200px;
}

.faq-item__answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
    padding: 60px 0 80px;
}

.legal-content__wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content__wrapper h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--primary);
}

.legal-content__wrapper h2:first-child {
    margin-top: 0;
}

.legal-content__wrapper p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content__wrapper ul {
    margin-bottom: 16px;
}

.legal-content__wrapper ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content__wrapper ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.legal-content__wrapper a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-contact {
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-top: 16px;
}

.legal-contact p {
    margin-bottom: 12px;
}

.legal-contact p:last-child {
    margin-bottom: 0;
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 0;
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer__about h3 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.footer__about p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer__registration {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer__links h4 {
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer__links li {
    margin-bottom: 8px;
}

.footer__links a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer__links a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer__contact h4 {
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer__contact p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-preview__content {
        grid-template-columns: 1fr;
    }
    
    .about-detailed__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    
    .nav__menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .mission-preview__grid,
    .governance__grid,
    .programs__grid,
    .team__grid {
        grid-template-columns: 1fr;
    }
    
    .impact__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values__grid {
        grid-template-columns: 1fr;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
    }
    
    .team-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline__item:nth-child(odd),
    .timeline__item:nth-child(even) {
        flex-direction: row;
        padding-left: 56px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline__date {
        left: 20px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .hero__buttons .btn {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .stats__number {
        font-size: 1.5rem;
    }
    
    .impact__grid {
        grid-template-columns: 1fr;
    }
    
    .approach__item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
