/* ===========================
   FLY AGARIC — Styles
   =========================== */

:root {
    --primary: #C41E3A;
    --primary-dark: #9B1830;
    --primary-light: #E8506A;
    --secondary: #2D5016;
    --secondary-light: #3D6B1E;
    --accent: #FAF3E0;
    --cream: #FFF8F0;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-100: #F7F5F2;
    --gray-200: #E8E4DF;
    --gray-300: #D1CBC3;
    --gray-500: #8A8279;
    --gray-700: #4A443E;
    --gray-900: #2A2520;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --transition: 0.3s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--gray-900); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { margin-bottom: 1rem; }
.text-center { text-align: center; }
.subtitle { font-size: 1.125rem; color: var(--gray-500); max-width: 600px; margin: 0.5rem auto 0; }

/* ===========================
   HEADER
   =========================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}
.logo, .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--gray-900);
}
.logo-icon { font-size: 1.75rem; }
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-menu a:not(.lang-btn) {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all var(--transition);
}
.nav-menu a:not(.lang-btn):hover, .nav-menu a:not(.lang-btn).active {
    color: var(--primary);
    background: rgba(196, 30, 58, 0.06);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
    padding: 8px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid var(--gray-200);
}
.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all var(--transition);
    opacity: 0.5;
}
.lang-btn:hover {
    opacity: 1;
    background: rgba(196,30,58,0.06);
}
.lang-btn.active {
    opacity: 1;
    background: rgba(196,30,58,0.1);
    box-shadow: 0 0 0 2px var(--primary);
}

/* ===========================
   HERO
   =========================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,25,20,0.75) 0%, rgba(45,80,22,0.5) 50%, rgba(196,30,58,0.3) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 0;
}
.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content .hero-latin {
    display: inline-block;
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}
.hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 32px;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}
.badge-danger { background: rgba(196,30,58,0.2); color: #FFB3B3; border: 1px solid rgba(196,30,58,0.3); }
.badge-info { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.2); }
.badge-success { background: rgba(45,80,22,0.3); color: #B8E6A0; border: 1px solid rgba(45,80,22,0.4); }
.badge-warning { background: rgba(255,165,0,0.2); color: #FFD699; border: 1px solid rgba(255,165,0,0.3); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(196,30,58,0.3);
}
.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-green {
    background: var(--secondary);
    color: var(--white);
}
.btn-green:hover {
    background: var(--secondary-light);
    color: var(--white);
    transform: translateY(-2px);
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===========================
   SECTIONS
   =========================== */
.section {
    padding: 80px 0;
}
.section-alt {
    background: var(--white);
}
.section-dark {
    background: var(--gray-900);
    color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }
.section-green {
    background: linear-gradient(135deg, var(--secondary) 0%, #1A3A0A 100%);
    color: var(--white);
}
.section-green h2 { color: var(--white); }
.section-green p { color: rgba(255,255,255,0.85); }
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header .section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 12px; }

/* ===========================
   CARDS
   =========================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.card-body {
    padding: 24px;
}
.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}
.card-body .card-latin {
    font-style: italic;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}
.card-body p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
}
.card-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.card-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--gray-100);
    color: var(--gray-700);
}
.card-tag-danger { background: rgba(196,30,58,0.1); color: var(--primary); }
.card-tag-success { background: rgba(45,80,22,0.1); color: var(--secondary); }
.card-tag-warning { background: rgba(255,165,0,0.1); color: #B8860B; }

/* Feature cards */
.feature-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.feature-icon-red { background: rgba(196,30,58,0.1); }
.feature-icon-green { background: rgba(45,80,22,0.1); }
.feature-icon-orange { background: rgba(255,165,0,0.1); }
.feature-icon-blue { background: rgba(0,119,182,0.1); }
.feature-card h3 { font-size: 1.125rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--gray-500); }

/* ===========================
   Z-PATTERN / SPLIT SECTIONS
   =========================== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.split-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.split-text h2 { margin-bottom: 16px; }
.split-text p { color: var(--gray-700); margin-bottom: 16px; }
.split-text .split-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

/* ===========================
   INFO BOX / ALERT
   =========================== */
.info-box {
    padding: 24px;
    border-radius: var(--radius-md);
    margin: 24px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.info-box-danger {
    background: rgba(196,30,58,0.06);
    border-left: 4px solid var(--primary);
}
.info-box-warning {
    background: rgba(255,165,0,0.06);
    border-left: 4px solid #E8751A;
}
.info-box-success {
    background: rgba(45,80,22,0.06);
    border-left: 4px solid var(--secondary);
}
.info-box-icon { font-size: 1.5rem; flex-shrink: 0; }
.info-box-content h4 { margin-bottom: 4px; }
.info-box-content p { font-size: 0.9rem; margin-bottom: 0; }

/* ===========================
   DATA TABLE / FICHE
   =========================== */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}
.data-table th, .data-table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
}
.data-table th {
    background: var(--gray-100);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
}
.data-table td { font-size: 0.95rem; }

/* ID card */
.id-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}
.id-card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 32px;
    color: var(--white);
}
.id-card-header h3 { color: var(--white); margin-bottom: 4px; }
.id-card-header .card-latin { color: rgba(255,255,255,0.8); }
.id-card-body { padding: 32px; }
.id-card-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}
.id-card-row:last-child { border-bottom: none; }
.id-card-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.id-card-value { font-size: 0.95rem; color: var(--gray-900); text-align: right; max-width: 60%; }

/* ===========================
   REGION / DEPARTMENT LIST
   =========================== */
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.region-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    text-decoration: none;
    color: var(--gray-900);
}
.region-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    color: var(--gray-900);
}
.region-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(45,80,22,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.region-info h3 { font-size: 1rem; font-family: var(--font-body); margin-bottom: 2px; }
.region-info span { font-size: 0.8rem; color: var(--gray-500); }

/* ===========================
   FAQ
   =========================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question .faq-icon {
    transition: transform var(--transition);
    font-size: 1.25rem;
    color: var(--gray-500);
}
.faq-item.active .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ===========================
   BREADCRUMB
   =========================== */
.breadcrumb {
    padding: 16px 0;
    font-size: 0.85rem;
    color: var(--gray-500);
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 8px; }

/* ===========================
   PAGE HERO (internal pages)
   =========================== */
.page-hero {
    background: linear-gradient(135deg, var(--gray-900) 0%, #3A2520 50%, var(--primary-dark) 100%);
    padding: 80px 0 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196,30,58,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; position: relative; z-index: 2; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.125rem; max-width: 600px; position: relative; z-index: 2; }
.page-hero .breadcrumb { color: rgba(255,255,255,0.5); }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb a:hover { color: var(--white); }

/* ===========================
   ARTICLE CONTENT
   =========================== */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}
.article-content h2 {
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-200);
}
.article-content h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}
.article-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
}
.article-content ul, .article-content ol {
    margin: 16px 0;
    padding-left: 24px;
    list-style: disc;
}
.article-content li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--gray-700);
}
.article-content blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    background: var(--gray-100);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--gray-700);
}

/* ===========================
   SPECIES GRID
   =========================== */
.species-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    text-decoration: none;
    color: var(--gray-900);
}
.species-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
    color: var(--gray-900);
}
.species-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}
.species-info h4 { font-size: 0.95rem; font-family: var(--font-body); margin-bottom: 2px; }
.species-info span { font-size: 0.8rem; font-style: italic; color: var(--gray-500); }

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    color: var(--white);
    margin: 40px 0;
}
.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-text { color: var(--white); }
.footer-desc { font-size: 0.9rem; line-height: 1.6; }
.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}
.footer-warning {
    margin-top: 8px;
    color: rgba(255,165,0,0.8);
    font-weight: 500;
}

/* ===========================
   REVEAL ON SCROLL
   =========================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   QUIZ / INTERACTIVE
   =========================== */
.quiz-container {
    max-width: 600px;
    margin: 40px auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}
.quiz-question { font-weight: 600; font-size: 1.1rem; margin-bottom: 20px; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
    padding: 14px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.95rem;
    background: var(--white);
}
.quiz-option:hover {
    border-color: var(--primary);
    background: rgba(196,30,58,0.04);
}
.quiz-option.correct {
    border-color: var(--secondary);
    background: rgba(45,80,22,0.08);
    color: var(--secondary);
}
.quiz-option.wrong {
    border-color: var(--primary);
    background: rgba(196,30,58,0.08);
    color: var(--primary);
}
.quiz-result {
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    display: none;
}
.quiz-score {
    text-align: center;
    margin-top: 24px;
    font-size: 1.25rem;
    font-weight: 700;
}

/* ===========================
   STAT COUNTERS
   =========================== */
.stats-row {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 32px 0;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.section-dark .stat-number { color: var(--primary-light); }
.section-green .stat-number { color: var(--white); }
.stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 4px;
}
.section-dark .stat-label { color: rgba(255,255,255,0.6); }
.section-green .stat-label { color: rgba(255,255,255,0.7); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .split-section { gap: 40px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 16px 24px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
    }
    .nav-menu.active { display: flex; }
    .nav-menu a { padding: 12px 16px; width: 100%; }
    .lang-switcher {
        border-left: none;
        border-top: 1px solid var(--gray-200);
        margin-left: 0;
        padding-left: 0;
        padding-top: 12px;
        margin-top: 8px;
    }
    .hero { min-height: 70vh; }
    .hero-content { padding: 60px 0; }
    .hero-buttons { flex-direction: column; }
    .split-section { grid-template-columns: 1fr; gap: 32px; }
    .split-section.reverse { direction: ltr; }
    .split-image img { height: 280px; }
    .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
    .card-grid { grid-template-columns: 1fr; }
    .region-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .section { padding: 60px 0; }
    .page-hero { padding: 60px 0 40px; }
    .stats-row { gap: 24px; }
    .stat-number { font-size: 2rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-content h1 { font-size: 2rem; }
    .section { padding: 48px 0; }
    .card-body { padding: 20px; }
    .feature-card { padding: 24px; }
    .quiz-container { padding: 24px; }
}