/*
* Design System: bold-editorial
* Border Style: rounded
* Shadow Style: subtle
* Color Mode: mixed
* Color Palette: Bold Editorial Purple
* #6A1E9C (Primary Purple), #0C0F24 (Dark Charcoal), #B2B3B1 (Light Gray), #F8F9FA (Off-White)
*/

:root {
    --color-primary: #6A1E9C;
    --color-primary-dark: #561680;
    --color-dark: #0C0F24;
    --color-light: #F8F9FA;
    --color-text-dark: #1a1a1a;
    --color-text-light: #f0f0f0;
    --color-gray: #B2B3B1;
    --font-family-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --border-radius-card: 12px;
    --border-radius-btn: 8px;
    --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* --- Global Styles & Reset --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-sans);
    line-height: 1.7;
    background-color: var(--color-light);
    color: var(--color-text-dark);
    font-size: clamp(16px, 1.5vw, 18px);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary-dark);
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(48px, 9vw, 90px);
}

h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 24px;
}

h3 {
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 12px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: clamp(60px, 10vw, 100px) 0;
}

.section-light {
    background-color: var(--color-light);
    color: var(--color-text-dark);
}

.section-dark {
    background-color: var(--color-dark);
    color: var(--color-text-light);
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 48px auto;
    opacity: 0.9;
}

/* --- Header --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-dark);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    z-index: 100;
    color: var(--color-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;
    background-color: var(--color-light);
    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;
}

.desktop-nav .nav-list a {
    color: var(--color-light);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.desktop-nav .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.desktop-nav .nav-list a:hover::after {
    width: 100%;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    z-index: 99;
    background-color: var(--color-dark);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav li a {
    color: var(--color-light);
    font-size: 18px;
    display: block;
}

@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); }
}

/* --- Hero (Bold Text Only) --- */
.hero-bold-text {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1c1f3a 100%);
    color: var(--color-light);
    padding: clamp(100px, 15vw, 160px) 0;
    text-align: center;
}

.hero-bold-text .container {
    max-width: 900px;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    margin-bottom: 40px;
    opacity: 0.85;
    line-height: 1.6;
}

.image-full-width-section {
    color: #fff;
    background-position: center;
    text-shadow: #0C0F24 0px 4px 12px;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 14px 32px;
    font-size: 18px;
    font-weight: bold;
    border-radius: var(--border-radius-btn);
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
    color: var(--color-light);
}

/* --- Benefits 3-Col --- */
.benefits-grid-3col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    background-color: #fff;
    padding: 32px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    border: 1px solid #eee;
}

.card-title {
    color: var(--color-primary);
}

/* --- Comparison Table --- */
.table-container {
    overflow-x: auto;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
}
.comparison-table th, .comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.comparison-table th {
    background-color: rgba(255, 255, 255, 0.05);
}
.cell-positive::before {
    content: '✓ ';
    color: #4CAF50;
    font-weight: bold;
    margin-right: 8px;
}
.cell-negative::before {
    content: '✗ ';
    color: #F44336;
    font-weight: bold;
    margin-right: 8px;
}

/* --- Stats Bar --- */
.stats-bar {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 40px 0;
}
.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.stat-item {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: bold;
}
.stat-label {
    display: block;
    font-size: 16px;
    opacity: 0.9;
}

/* --- Checklist Block --- */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
}
.checklist-item {
    background-color: #fff;
    padding: 16px 20px;
    border-radius: var(--border-radius-btn);
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-subtle);
}
.checklist-item::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: bold;
    margin-right: 12px;
    font-size: 20px;
}

/* --- Accordion FAQ --- */
.faq-container {
    max-width: 800px;
}
.accordion-faq {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-btn);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-question {
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+';
    font-size: 24px;
    transition: transform 0.3s ease;
}
.faq-item[open] > .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 20px 20px 20px;
    opacity: 0.85;
}

/* --- Program Page: Numbered Sections --- */
.page-header {
    text-align: center;
    padding: 80px 0;
}
.page-header h1 {
    font-size: clamp(36px, 6vw, 56px);
}
.page-header p {
    max-width: 700px;
    margin: 16px auto 0;
    opacity: 0.9;
}

.numbered-sections-wrapper {
    counter-reset: section-counter;
}
.numbered-section {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.numbered-section::before {
    counter-increment: section-counter;
    content: '0' counter(section-counter);
    font-size: clamp(80px, 15vw, 120px);
    font-weight: bold;
    color: rgba(0,0,0,0.05);
    position: absolute;
    top: 20px;
    left: -20px;
    z-index: 0;
    line-height: 1;
}
.numbered-content {
    position: relative;
    z-index: 1;
}
.numbered-content p {
    margin-bottom: 1rem;
}
.rounded-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
}

/* --- Mission Page: Timeline --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 48px auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--color-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--color-light);
    border: 4px solid var(--color-primary);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
}
.timeline-item:nth-child(odd)::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 30px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid var(--color-primary);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--color-primary);
}
.timeline-item:nth-child(even)::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 30px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid var(--color-primary);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--color-primary) transparent transparent;
}
.timeline-item:nth-child(even)::after {
    left: -10px;
}
.timeline-date {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
}
.timeline-content {
    padding: 20px;
    background-color: #fff;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
}

/* --- Contact Page --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
.form-title, .info-title {
    margin-bottom: 24px;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius-btn);
    font-size: 16px;
}
.form-button {
    width: 100%;
    padding: 14px;
    background-color: var(--color-primary);
    color: var(--color-light);
    border: none;
    border-radius: var(--border-radius-btn);
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.form-button:hover {
    background-color: var(--color-primary-dark);
}
.info-block {
    margin-bottom: 24px;
}
.info-block h4 {
    color: var(--color-primary);
}

/* --- Legal & Thank You Pages --- */
.legal-page .container {
    padding-top: 60px;
    padding-bottom: 60px;
}
.legal-page h1, .legal-page h2 {
    color: var(--color-primary);
}
.legal-page p, .legal-page li {
    margin-bottom: 16px;
}
.thank-you-section { padding: 100px 0; text-align: center; }
.thank-you-container h1 { color: var(--color-primary); margin-bottom: 24px; }
.next-steps { margin-top: 48px; }
.next-steps-links { display: flex; justify-content: center; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 12px 28px;
    border-radius: var(--border-radius-btn);
    font-weight: bold;
    transition: all 0.3s ease;
}
.cta-button-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--color-dark) !important;
    color: var(--color-text-light) !important;
    padding: 60px 0 0 0;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    padding-bottom: 40px;
}
.footer-column p, .footer-column li, .footer-column a {
    color: var(--color-gray) !important;
    font-size: 15px;
}
.footer-column a:hover {
    color: var(--color-light) !important;
}
.footer-heading {
    color: var(--color-light) !important;
    margin-bottom: 16px;
    font-size: 18px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 14px;
    color: var(--color-gray) !important;
}

/* --- Cookie Banner --- */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    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: 15px; }
#cookie-banner a { color: var(--color-gray); 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: var(--border-radius-btn);
    cursor: pointer;
    font-weight: bold;
}
.cookie-btn-accept { background-color: var(--color-primary); color: var(--color-light); }
.cookie-btn-decline { background-color: #444; color: var(--color-light); }

/* --- Media Queries (Mobile First) --- */
@media (min-width: 768px) {
    .benefits-grid-3col { grid-template-columns: repeat(3, 1fr); }
    .checklist-grid { grid-template-columns: repeat(2, 1fr); }
    .numbered-section { grid-template-columns: 1fr 1fr; }
    .section-with-image .numbered-content { order: 1; }
    .section-with-image .numbered-image-container { order: 2; }
    .contact-layout { grid-template-columns: 2fr 1fr; }
}

@media (max-width: 767px) {
    .timeline::after { left: 10px; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 10px; text-align: left !important; }
    .timeline-item:nth-child(even) { left: 0; }
    .timeline-item::after { left: 0; }
    .timeline-item::before {
        left: 40px !important;
        border-width: 10px 10px 10px 0 !important;
        border-color: transparent var(--color-primary) transparent transparent !important;
    }
}

@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; }
}