/* ===== CSS VARIABLES - EMERALD PALETTE ===== */
:root {
    --primary: #065f46;
    --primary-light: #10b981;
    --primary-dark: #022c22;
    --accent: #34d399;
    --accent-warm: #a7f3d0;
    --bg-light: #f0fdf4;
    --bg-section: #ecfdf5;
    --text-main: #1a1a1a;
    --text-muted: #4b5563;
    --text-light: #6b7280;
    --white: #ffffff;
    --border: #d1fae5;
    --shadow-sm: 0 2px 8px rgba(6,95,70,0.10);
    --shadow-md: 0 6px 24px rgba(6,95,70,0.16);
    --shadow-lg: 0 16px 48px rgba(6,95,70,0.22);
    --radius: 14px;
    --radius-sm: 7px;
    --radius-lg: 22px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-main);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
    background: var(--primary-dark);
    position: sticky; top: 0; z-index: 100;
    padding: 0;
    box-shadow: 0 2px 16px rgba(2,44,34,0.28);
}
.site-header .container {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
}
.logo a { display: flex; align-items: center; }
.logo img { height: 44px; width: auto; }

/* ===== NAVIGATION ===== */
.navigation { display: none; }
.navigation ul { list-style: none; display: flex; gap: 32px; }
.navigation ul li a {
    color: var(--accent-warm);
    font-weight: 600; font-size: 15px;
    transition: color 0.2s;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}
.navigation ul li a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ===== HAMBURGER ===== */
#menu-toggle { display: none; }
.hamburger {
    display: flex; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 8px; z-index: 101;
}
.hamburger .line {
    width: 26px; height: 2px;
    background: var(--accent-warm);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 98;
    background: var(--primary-dark);
    flex-direction: column; align-items: center; justify-content: center;
}
#menu-toggle:checked ~ .mobile-nav { display: flex; }
#menu-toggle:checked ~ .hamburger { opacity: 0; pointer-events: none; }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav ul li { margin: 18px 0; }
.mobile-nav ul li a {
    color: var(--accent-warm);
    font-size: 22px; font-weight: 700;
    transition: color 0.2s;
}
.mobile-nav ul li a:hover { color: var(--accent); }
.mobile-nav-close {
    position: absolute; top: 18px; right: 20px;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border-radius: 50%;
    background: rgba(52,211,153,0.15);
}
.mobile-nav-close::before,
.mobile-nav-close::after {
    content: ''; position: absolute;
    width: 22px; height: 2px;
    background: var(--accent-warm);
    border-radius: 2px;
}
.mobile-nav-close::before { transform: rotate(45deg); }
.mobile-nav-close::after  { transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    min-height: 82vh;
    background: url('img/bg.jpg') center/cover no-repeat;
    position: relative;
    display: flex; align-items: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(2,44,34,0.85) 0%, rgba(6,95,70,0.65) 60%, rgba(0,0,0,0.35) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 13px; font-weight: 800;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-title {
    font-size: 2.2rem; font-weight: 900;
    color: var(--white); line-height: 1.2;
    margin-bottom: 20px;
}
.hero-desc {
    font-size: 1.1rem; color: var(--accent-warm);
    margin-bottom: 36px; max-width: 580px;
}
.hero-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 800; font-size: 16px;
    padding: 16px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: all 0.25s;
}
.hero-cta:hover { background: var(--primary-light); color: var(--white); transform: translateY(-2px); }

/* ===== SECTIONS ===== */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-section); }
.section-dark { background: var(--primary-dark); }
.section-title {
    font-size: 1.9rem; font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 14px;
    line-height: 1.25;
}
.section-title-white { color: var(--white); }
.section-subtitle {
    font-size: 1.05rem; color: var(--text-muted);
    margin-bottom: 44px; max-width: 640px;
}
.section-subtitle-white { color: var(--accent-warm); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--primary); padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-item { text-align: center; }
.stat-num {
    font-size: 2.4rem; font-weight: 900;
    color: var(--accent); display: block;
}
.stat-label { color: var(--accent-warm); font-size: 14px; font-weight: 600; }

/* ===== CARDS ===== */
.cards-grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.cards-grid-4 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-icon {
    font-size: 2.4rem; margin-bottom: 16px;
    display: block;
}
.card-title {
    font-size: 1.15rem; font-weight: 800;
    color: var(--primary); margin-bottom: 10px;
}
.card-text { font-size: 0.97rem; color: var(--text-muted); line-height: 1.7; }

/* ===== TIMELINE ===== */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
    display: flex; gap: 24px;
    padding-bottom: 36px;
    position: relative;
}
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px; top: 48px; bottom: 0;
    width: 2px;
    background: var(--border);
}
.timeline-num {
    min-width: 44px; height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 1.1rem;
    flex-shrink: 0; z-index: 1;
}
.timeline-body {}
.timeline-title { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.timeline-text { color: var(--text-muted); font-size: 0.97rem; }

/* ===== SPLIT (TWO COL) ===== */
.two-col { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-img img { width: 100%; height: 340px; object-fit: cover; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.testimonial-card {
    background: var(--white);
    border-left: 5px solid var(--primary-light);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
}
.testimonial-text { font-size: 1rem; color: var(--text-main); font-style: italic; margin-bottom: 16px; }
.testimonial-author { font-weight: 800; color: var(--primary); font-size: 0.95rem; }
.testimonial-city { font-size: 0.88rem; color: var(--text-light); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 16px; max-width: 820px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-question {
    width: 100%; background: none; border: none;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem; font-weight: 700;
    color: var(--primary-dark);
    cursor: pointer; text-align: left;
}
.faq-icon { font-size: 1.3rem; transition: transform 0.3s; color: var(--primary-light); flex-shrink: 0; }
.faq-answer { padding: 0 24px 20px; color: var(--text-muted); font-size: 0.97rem; }

/* ===== FORM ===== */
.form-section { background: var(--bg-light); }
.contact-form {
    max-width: 800px; margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 0.9rem; font-weight: 700; color: var(--primary-dark); }
.form-input, .form-textarea {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-main);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    background: var(--bg-light);
}
.form-input:focus, .form-textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
    background: var(--white);
}
.form-textarea { min-height: 130px; resize: vertical; }
.btn-submit {
    display: block; width: 100%;
    background: var(--primary);
    color: var(--white);
    font-size: 1.05rem; font-weight: 800;
    padding: 16px 32px;
    border: none; border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 8px;
    box-shadow: var(--shadow-md);
}
.btn-submit:hover { background: var(--primary-light); transform: translateY(-2px); }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--primary);
    padding: 64px 0; text-align: center;
}
.cta-banner h2 { color: var(--white); font-size: 1.9rem; font-weight: 900; margin-bottom: 16px; }
.cta-banner p { color: var(--accent-warm); font-size: 1.05rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.btn-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 800; font-size: 16px;
    padding: 16px 44px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: all 0.25s;
}
.btn-cta:hover { background: var(--white); transform: translateY(-2px); }

/* ===== PILLS ===== */
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.pill {
    background: var(--accent-warm);
    color: var(--primary-dark);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.9rem; font-weight: 700;
}

/* ===== BG IMAGE SECTION ===== */
.bg-section {
    background: url('img/bg-1.jpg') center/cover no-repeat;
    position: relative; padding: 88px 0;
}
.bg-section-overlay {
    position: absolute; inset: 0;
    background: rgba(2,44,34,0.78);
}
.bg-section-content { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }

/* ===== VALUES ===== */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    border-top: 4px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
}
.value-icon { font-size: 2.2rem; margin-bottom: 14px; }
.value-title { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.value-text { color: var(--text-muted); font-size: 0.96rem; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary-dark);
    color: var(--accent-warm);
    padding: 44px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
.footer-title { font-size: 1.1rem; font-weight: 800; color: var(--accent); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--accent-warm); font-size: 0.95rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(52,211,153,0.2);
    padding-top: 20px; text-align: center;
    font-size: 0.88rem; color: rgba(167,243,208,0.7);
}
.footer-bottom a { color: var(--accent-warm); margin: 0 8px; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--primary-dark);
    border-top: 2px solid var(--accent);
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    transform: translateY(0); transition: transform 0.4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; color: var(--accent-warm); font-size: 0.95rem; }
#cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept {
    background: var(--accent); color: var(--primary-dark);
    border: none; padding: 10px 22px;
    border-radius: var(--radius-sm); font-weight: 800; cursor: pointer;
    font-size: 0.95rem;
}
.cookie-btn-decline {
    background: transparent; color: var(--accent-warm);
    border: 1.5px solid var(--accent-warm); padding: 10px 22px;
    border-radius: var(--radius-sm); font-weight: 700; cursor: pointer;
    font-size: 0.95rem;
}
@media (max-width: 600px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
    .navigation { display: block; }
    .hamburger { display: none; }
    .cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
    .two-col { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    .form-row { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 3.2rem; }
}
@media (min-width: 1024px) {
    .cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ===== ABOUT / PROGRAM EXTRAS ===== */
.module-block {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border-left: 5px solid var(--primary-light);
    margin-bottom: 28px;
}
.module-num { font-size: 0.85rem; font-weight: 800; color: var(--primary-light); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.module-title { font-size: 1.25rem; font-weight: 900; color: var(--primary-dark); margin-bottom: 14px; }
.module-text { color: var(--text-muted); font-size: 0.97rem; line-height: 1.8; }

.contact-cards { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 44px; }
.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--primary-light);
    text-align: center;
}
.contact-card-icon { font-size: 2rem; margin-bottom: 10px; }
.contact-card-label { font-size: 0.88rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.contact-card-val { font-size: 1rem; font-weight: 800; color: var(--primary-dark); }

@media (min-width: 768px) {
    .contact-cards { grid-template-columns: repeat(3, 1fr); }
}

.highlight-box {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    color: var(--white);
    text-align: center;
    margin: 44px 0;
}
.highlight-box h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 12px; }
.highlight-box p { color: var(--accent-warm); font-size: 1rem; }

.page-banner {
    background: url('img/bg-1.jpg') center/cover no-repeat;
    position: relative;
    min-height: 300px;
    display: flex; align-items: center;
}
.page-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(2,44,34,0.88) 0%, rgba(6,95,70,0.7) 100%);
}
.page-banner-content { position: relative; z-index: 2; max-width: 720px; }
.page-banner-title { font-size: 2.4rem; font-weight: 900; color: var(--white); margin-bottom: 14px; }
.page-banner-sub { color: var(--accent-warm); font-size: 1.05rem; }

.manifesto {
    background: var(--bg-section);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
}
.manifesto::before {
    content: '"';
    position: absolute; top: -20px; left: 20px;
    font-size: 10rem; color: var(--accent-warm);
    font-family: Georgia, serif; line-height: 1;
    opacity: 0.5;
}
.manifesto-text {
    font-size: 1.25rem; font-style: italic;
    color: var(--primary-dark); font-weight: 600;
    line-height: 1.7; position: relative; z-index: 1;
}
.manifesto-author { margin-top: 16px; font-weight: 800; color: var(--primary); font-size: 0.97rem; }
header img[alt="logo"], footer img[alt="logo"] { filter: brightness(0) invert(1); }