/* Palette: Cold Purple & Peach (Version 2) */
:root {
    --primary: #4A3B52; /* Deep Purple/Slate */
    --secondary: #8B7D91; /* Muted Lavender */
    --accent: #E8B4A2; /* Soft Peach */
    --bg-color: #F7F5F8; /* Light grey-purple */
    --text-main: #2D2432; /* Dark slate */
    --text-light: #ffffff;
    --footer-bg: #2A212E; /* Very dark purple */
    --border-color: #DCD6DF;
    --font-main: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: clamp(24px, 4vw, 36px);
    color: var(--primary);
    margin-bottom: 15px;
}

/* Buttons */
.btn-primary, .btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-main);
}

.btn-primary:hover {
    background-color: #d6a18f;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header Layout (STRICT) */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--primary);
    color: var(--text-light);
}

.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(--text-light);
}

.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;
    margin: 5px 0;
    background-color: var(--text-light);
    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:hover {
    color: var(--accent);
}

.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);
}

@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); }
}

/* UNIQUE HERO: Diagonal Split */
.hero-diagonal {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
    background-color: var(--primary);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero-content-wrapper {
    padding: 60px 20px;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-text-area {
    max-width: 600px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background-color: rgba(232, 180, 162, 0.2);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid var(--accent);
}

.hero-text-area h1 {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text-area p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0dce2;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-actions .btn-outline {
    border-color: var(--text-light);
    color: var(--text-light);
}

.hero-image-area {
    width: 100%;
    height: 300px;
}

.hero-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .hero-diagonal {
        flex-direction: row;
    }
    .hero-content-wrapper {
        width: 50%;
        padding: 80px 5%;
    }
    .hero-image-area {
        width: 50%;
        height: auto;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* Stats Bar */
.stats-bar {
    background-color: var(--accent);
    padding: 40px 0;
    color: var(--text-main);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
}

@media (min-width: 576px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Overlap Info Section */
.overlap-info-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 h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 32px;
}

.overlap-text p {
    margin-bottom: 15px;
    color: #4a4a4a;
}

@media (min-width: 992px) {
    .overlap-wrapper {
        flex-direction: row;
        align-items: center;
    }
    .overlap-image {
        width: 45%;
        position: relative;
        z-index: 1;
    }
    .overlap-text {
        width: 65%;
        background-color: #fff;
        padding: 50px;
        border-radius: 8px;
        margin-left: -10%;
        box-shadow: 0 10px 40px rgba(0,0,0,0.05);
        z-index: 1;
    }
}

/* 2x2 Grid Benefits */
.benefits-grid-section {
    padding: 80px 0;
    background-color: #fff;
}

.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.benefit-card-alt {
    background-color: var(--bg-color);
    padding: 40px 30px;
    border-radius: 8px;
    border-top: 4px solid var(--secondary);
    transition: transform 0.3s ease;
}

.benefit-card-alt:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.benefit-card-alt h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 22px;
}

@media (min-width: 768px) {
    .grid-2x2 { grid-template-columns: 1fr 1fr; }
}

/* Accordion FAQ */
.faq-accordion-section, .modules-accordion-section {
    padding: 80px 0;
}

.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.accordion-item summary {
    padding: 20px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    color: var(--primary);
    list-style: none;
    position: relative;
}

.accordion-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--secondary);
}

.accordion-item[open] summary::after {
    content: '-';
}

.accordion-content {
    padding: 0 20px 20px;
    color: #555;
}

/* Page Header */
.page-header {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 80px 0;
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    color: #e0dce2;
}

/* Numbered Methodology */
.numbered-methodology {
    padding: 80px 0;
}

.method-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.method-number {
    background-color: var(--secondary);
    color: var(--text-light);
    font-size: 48px;
    font-weight: bold;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-content {
    padding: 30px;
}

.method-content h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .method-row {
        flex-direction: row;
    }
    .method-number {
        width: 150px;
        flex-shrink: 0;
    }
}

/* Image Divider Parallax */
.image-divider {
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.divider-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(74, 59, 82, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.divider-overlay h2 {
    color: var(--text-light);
    font-size: clamp(28px, 4vw, 42px);
}

/* Mission Hero */
.mission-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mission-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(42, 33, 46, 0.8);
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.mission-hero-overlay h1 {
    font-size: clamp(36px, 5vw, 54px);
    margin-bottom: 20px;
}

/* Vertical Timeline */
.timeline-section {
    padding: 80px 0;
    background-color: #fff;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 20px;
    width: 2px;
    background-color: var(--accent);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px var(--accent);
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 22px;
}

@media (min-width: 768px) {
    .timeline-container::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .timeline-item {
        width: 50%;
        padding-left: 0;
        padding-right: 40px;
        text-align: right;
    }
    .timeline-item:nth-child(even) {
        margin-left: auto;
        padding-right: 0;
        padding-left: 40px;
        text-align: left;
    }
    .timeline-item:nth-child(odd) .timeline-dot {
        right: -10px;
        left: auto;
    }
    .timeline-item:nth-child(even) .timeline-dot {
        left: -10px;
    }
}

/* Values Split Section */
.values-split-section {
    padding: 80px 0;
}

.values-split-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.values-text h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 32px;
}

.values-list {
    list-style: none;
    margin-top: 20px;
}

.values-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.values-image img {
    border-radius: 8px;
}

@media (min-width: 768px) {
    .values-split-wrapper {
        flex-direction: row;
        align-items: center;
    }
    .values-text, .values-image {
        width: 50%;
    }
}

/* Contact Top Layout */
.contact-top-layout {
    padding: 60px 0;
}

.contact-cards-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.contact-info-card {
    background-color: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info-card .icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-info-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .contact-cards-row { grid-template-columns: repeat(3, 1fr); }
}

.form-container-full {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-wrapper h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

/* Legal Pages */
.legal-section {
    padding: 60px 0;
    background-color: #fff;
}

.legal-section h1 {
    color: var(--primary);
    margin-bottom: 10px;
}

.legal-content {
    margin-top: 40px;
}

.legal-content h2 {
    color: var(--primary);
    margin: 30px 0 15px;
    font-size: 22px;
}

.legal-content p, .legal-content ul {
    margin-bottom: 15px;
    color: #444;
}

.legal-content ul {
    padding-left: 20px;
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-box {
    background-color: #fff;
    padding: 50px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.thank-you-box h1 {
    color: var(--primary);
    margin-bottom: 15px;
}

.next-steps {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.next-steps h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.action-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer (STRICT) */
.site-footer {
    background-color: var(--footer-bg) !important;
    color: #ffffff !important;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
    color: #ffffff !important;
}

.footer-desc {
    color: #cccccc !important;
    font-size: 14px;
}

.site-footer h4 {
    color: #ffffff !important;
    margin-bottom: 20px;
    font-size: 18px;
}

.site-footer ul {
    list-style: none;
}

.site-footer ul li {
    margin-bottom: 10px;
}

.site-footer a {
    color: #cccccc !important;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: var(--accent) !important;
}

.footer-contact p {
    color: #cccccc !important;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: #999999 !important;
    font-size: 14px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    padding: 18px 24px;
    background-color: #ffffff;
    color: #333333;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    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;
    font-size: 14px;
}

#cookie-banner a {
    color: var(--primary);
    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;
    font-size: 14px;
}

.cookie-btn-accept {
    background-color: var(--primary);
    color: #fff;
}

.cookie-btn-decline {
    background-color: #e0e0e0;
    color: #333;
}

@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;
    }
}