/* Palette: Royal Amethyst & Warm Gold (No Blue, No Green) */
:root {
    --primary: #6B4C9A; /* Amethyst Purple */
    --secondary: #D4AF37; /* Warm Gold */
    --bg-color: #F9F8F6; /* Cream/Off-white */
    --text-dark: #2C2A2E; /* Dark Charcoal */
    --accent: #8E73B3; /* Light Purple */
    --white: #ffffff;
    --gray-light: #E5E5E5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mb-40 { margin-bottom: 40px; }

/* Typography */
h1, h2, h3, h4 {
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: #bfa030;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #563d7c;
}

.btn-full {
    width: 100%;
}

/* ================= HEADER (STRICT TEMPLATE) ================= */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--primary);
    color: var(--white);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    z-index: 100;
    color: var(--secondary);
}

.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: 0.3s;
}

.menu-checkbox {
    display: none;
}

.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: var(--secondary);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--primary);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a {
    color: var(--white);
    font-size: 18px;
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger { display: block; }
    .mobile-nav { display: block; }
    #menu-toggle:checked ~ .mobile-nav { max-height: 400px; }
    #menu-toggle:checked ~ .hamburger .line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    #menu-toggle:checked ~ .hamburger .line:nth-child(2) { opacity: 0; }
    #menu-toggle:checked ~ .hamburger .line:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
}

/* ================= INDEX: DIAGONAL HERO (V2) ================= */
.hero-diagonal {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.hero-content-wrapper {
    padding: 60px 20px;
    color: var(--white);
    z-index: 2;
}

.hero-subtitle {
    color: var(--secondary);
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.hero-title {
    color: var(--white);
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 500px;
    opacity: 0.9;
}

.hero-image-area {
    width: 100%;
    height: 400px;
}

.hero-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .hero-diagonal {
        flex-direction: row;
    }
    .hero-content-wrapper {
        width: 50%;
        padding: 100px 5%;
        display: flex;
        align-items: center;
    }
    .hero-image-area {
        width: 50%;
        height: auto;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* ================= INDEX: STATS BAR ================= */
.stats-section {
    background-color: var(--secondary);
    padding: 40px 0;
    color: var(--text-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: var(--primary);
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ================= INDEX: OVERLAP SECTION ================= */
.overlap-section {
    padding: 80px 0;
}

.overlap-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.overlap-image img {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.overlap-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

@media (min-width: 992px) {
    .overlap-wrapper {
        flex-direction: row;
        align-items: center;
    }
    .overlap-image {
        width: 45%;
        position: relative;
    }
    .overlap-text {
        width: 65%;
        background: var(--white);
        padding: 50px;
        margin-left: -10%;
        border-radius: 8px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.05);
        z-index: 1;
    }
}

/* ================= INDEX: 2x2 GRID BENEFITS ================= */
.benefits-2x2-section {
    padding: 80px 0;
    background-color: var(--white);
}

.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.benefit-card-v2 {
    background: var(--bg-color);
    padding: 40px 30px;
    border-radius: 8px;
    border-top: 4px solid var(--primary);
    transition: transform 0.3s;
}

.benefit-card-v2:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .grid-2x2 { grid-template-columns: repeat(2, 1fr); }
}

/* ================= INDEX: ACCORDION FAQ ================= */
.faq-accordion-section {
    padding: 80px 0;
}

.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-toggle {
    display: none;
}

.accordion-header {
    display: block;
    padding: 20px;
    font-weight: bold;
    color: var(--primary);
    cursor: pointer;
    position: relative;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 24px;
    transition: 0.3s;
}

.accordion-content {
    max-height: 0;
    padding: 0 20px;
    background: var(--bg-color);
    transition: all 0.3s ease;
}

.accordion-toggle:checked ~ .accordion-content {
    max-height: 300px;
    padding: 20px;
}

.accordion-toggle:checked ~ .accordion-header::after {
    content: '-';
    transform: rotate(180deg);
}

/* ================= PROGRAM: NUMBERED MODULES ================= */
.page-banner {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
}

.page-title {
    color: var(--secondary);
    font-size: clamp(32px, 5vw, 48px);
}

.modules-section {
    padding: 80px 0;
}

.numbered-module {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.module-number {
    background: var(--secondary);
    color: var(--primary);
    font-size: 60px;
    font-weight: bold;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-content {
    padding: 40px;
}

.module-content p {
    margin-bottom: 15px;
}

.module-image-break {
    margin: 60px 0;
    border-radius: 12px;
    overflow: hidden;
}

.full-width-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .numbered-module {
        flex-direction: row;
    }
    .numbered-module.reverse {
        flex-direction: row-reverse;
    }
    .module-number {
        width: 200px;
        font-size: 80px;
    }
    .module-content {
        flex: 1;
    }
}

.cta-centered {
    background-color: var(--accent);
    color: var(--white);
    padding: 80px 0;
}

.cta-centered h2 {
    color: var(--white);
}

.cta-centered p {
    margin-bottom: 30px;
    font-size: 18px;
}

/* ================= MISSION: TIMELINE & SPLIT ================= */
.hero-overlay {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(107, 76, 154, 0.8); /* Primary color with opacity */
    z-index: 2;
}

.overlay-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    padding: 0 20px;
}

.overlay-content h1 {
    color: var(--secondary);
}

.timeline-section {
    padding: 80px 0;
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--accent);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 50%;
}

.timeline-date {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .timeline-item {
        width: 50%;
        padding: 0 40px;
    }
    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: right;
    }
    .timeline-item:nth-child(even) {
        left: 50%;
    }
    .timeline-item:nth-child(odd) .timeline-dot {
        right: -10px;
        left: auto;
    }
    .timeline-item:nth-child(even) .timeline-dot {
        left: -10px;
    }
}

.split-values-section {
    padding: 80px 0;
}

.split-values-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.values-image img {
    border-radius: 8px;
}

.custom-list {
    list-style: none;
}

.custom-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

@media (min-width: 768px) {
    .split-values-wrapper {
        flex-direction: row;
        align-items: center;
    }
    .values-image, .values-list {
        width: 50%;
    }
}

.manifesto-block {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0;
}

.manifesto-block h2 {
    color: var(--secondary);
}

.manifesto-text {
    font-size: 24px;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ================= CONTACT: CARDS & FORM ================= */
.contact-info-section {
    padding: 60px 0 40px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-card {
    background: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.c-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-form-section {
    padding: 0 0 80px;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 30px;
}

.custom-form .form-group {
    margin-bottom: 20px;
}

.custom-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.custom-form input, .custom-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    font-size: 16px;
}

.custom-form input:focus, .custom-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* ================= LEGAL & THANK YOU ================= */
.legal-section {
    padding: 80px 0;
    background: var(--white);
}

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    margin-top: 30px;
    font-size: 24px;
}

.legal-content p, .legal-content ul {
    margin-bottom: 15px;
}

.legal-content ul {
    padding-left: 20px;
}

.thank-you-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-icon {
    font-size: 80px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.next-steps {
    margin-top: 50px;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
}

.thank-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* ================= FOOTER (STRICT TEMPLATE) ================= */
.site-footer {
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3, .footer-links h4, .footer-legal h4 {
    margin-bottom: 20px;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 10px;
}

.footer-links a:hover, .footer-legal a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* ================= COOKIE BANNER ================= */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    background-color: var(--text-dark);
    color: var(--white);
    transform: translateY(0); transition: transform 0.4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 14px; }
#cookie-banner a { color: var(--secondary); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 16px; border: none; border-radius: 4px; cursor: pointer; font-weight: bold;
}
.cookie-btn-accept { background-color: var(--secondary); color: var(--text-dark); }
.cookie-btn-decline { background-color: transparent; color: var(--white); border: 1px solid var(--white); }

@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; }
}