/* #2D1B50, #4A2F7A, #A06830, #F5F0FF */
:root {
    --color-primary: #2D1B50;
    --color-secondary: #4A2F7A;
    --color-accent: #A06830;
    --bg-tint: #F5F0FF;
    --color-white: #ffffff;
    --color-text-dark: #1f1435;
    --color-text-light: #f5f0ff;
    --font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Global resets & typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    color: var(--color-text-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Color mode: mixed alternating */
.light-bg {
    background-color: var(--bg-tint);
    color: var(--color-text-dark);
}

.dark-bg {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-primary);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo - always left */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-text-light);
    text-decoration: none;
    z-index: 100;
}

/* Hamburger - ALWAYS RIGHT */
.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(--color-text-light);
    transition: 0.3s;
}

.menu-checkbox {
    display: none;
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-list a {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-accent);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: var(--color-primary);
    transition: max-height 0.3s ease;
    z-index: 99;
}

.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 li a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 18px;
    display: block;
}

/* Mobile Adaptation */
@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);
    }
}

/* Buttons (Pill border style) */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 24px 64px rgba(160, 104, 48, 0.25);
}

.btn-primary:hover {
    background-color: #8f5c29;
    transform: translateY(-2px);
    box-shadow: 0 32px 80px rgba(160, 104, 48, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-light);
    border: 2px solid var(--color-text-light);
}

.btn-secondary:hover {
    background-color: var(--color-text-light);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Section Containers */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
}

@media (min-width: 1024px) {
    .section-container {
        padding: 80px 24px;
    }
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.section-header-center h2 {
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: 16px;
    color: inherit;
}

.section-header-left {
    max-width: 700px;
    margin-bottom: 48px;
}

.section-header-left h2 {
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: 16px;
}

/* HERO SECTION: Asymmetric Layout (Dynamic-Tech Style) */
.hero-asymmetric {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    position: relative;
    padding: 60px 16px;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-asymmetric {
        padding: 100px 24px;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }
    .hero-container {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-text-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-text-content h1 {
    font-size: clamp(32px, 6vw, 52px);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-text-content p {
    font-size: clamp(16px, 3vw, 18px);
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
}

@media (min-width: 768px) {
    .hero-image-wrapper {
        height: 400px;
    }
}

@media (min-width: 1024px) {
    .hero-image-wrapper {
        height: 100%;
        min-height: 450px;
    }
}

.hero-img-asym {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 36px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

/* SECTION 1: benefits-hscroll (Horizontal scroll carousel) */
.benefits-carousel-section {
    overflow: hidden;
}

.hscroll-wrapper {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 24px;
}

.hscroll-container {
    display: flex;
    gap: 24px;
    padding-right: 24px;
}

.benefit-scroll-card {
    min-width: 280px;
    max-width: 340px;
    background-color: var(--color-white);
    padding: 32px;
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(45, 27, 80, 0.08);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .benefit-scroll-card {
        min-width: 320px;
    }
}

.benefit-scroll-card:hover {
    transform: translateY(-8px);
}

.card-icon {
    font-size: 32px;
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.benefit-scroll-card h3 {
    margin-bottom: 12px;
    color: var(--color-primary);
}

/* SECTION 2: quote-highlight */
.quote-highlight-section {
    padding: 80px 16px;
    text-align: center;
    position: relative;
}

@media (min-width: 1024px) {
    .quote-highlight-section {
        clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
        padding: 120px 24px;
    }
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote-mark-open {
    font-size: 80px;
    line-height: 1;
    color: var(--color-accent);
    font-family: Georgia, serif;
    margin-bottom: -20px;
}

.pull-quote {
    font-size: clamp(20px, 4vw, 28px);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.4;
}

.quote-author {
    display: block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-accent);
}

/* SECTION 3: checklist-block */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.checklist-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    background-color: var(--color-white);
    padding: 24px;
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(45, 27, 80, 0.05);
}

.check-icon {
    background-color: var(--color-accent);
    color: var(--color-white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.checklist-text h4 {
    margin-bottom: 8px;
    color: var(--color-primary);
}

/* SECTION 4: stats-bar */
.stats-bar-section {
    padding: 60px 16px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

@media (min-width: 500px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    padding: 16px;
}

.stat-number {
    font-size: clamp(40px, 8vw, 64px);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Split Image-Text */
.split-image-text {
    padding: 60px 16px;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .split-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.split-image-side {
    width: 100%;
}

.split-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 36px;
    box-shadow: 0 24px 64px rgba(45, 27, 80, 0.15);
}

.split-text-side h2 {
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: 24px;
    color: var(--color-primary);
}

.split-text-side p {
    margin-bottom: 16px;
}

/* SECTION 5: testimonials */
.testimonials-vertical-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--color-primary);
    padding: 32px;
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.author-meta h4 {
    margin-bottom: 4px;
}

.stars {
    color: var(--color-accent);
    font-size: 14px;
}

.testimonial-body {
    font-style: italic;
    opacity: 0.9;
}

/* Internal Hero */
.internal-hero {
    padding: 80px 16px;
    text-align: center;
}

.internal-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.internal-hero h1 {
    font-size: clamp(32px, 6vw, 48px);
    margin-bottom: 16px;
}

/* Methodology Section */
.methodology-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .methodology-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.methodology-img {
    width: 100%;
    height: auto;
    border-radius: 36px;
    box-shadow: 0 24px 64px rgba(45, 27, 80, 0.12);
}

/* Accordion Program Section */
.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.program-accordion-item {
    background-color: var(--color-primary);
    border-radius: 28px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

.accordion-header {
    padding: 24px;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    list-style: none; /* Hide default arrow */
}

.accordion-header::-webkit-details-marker {
    display: none; /* Hide default arrow Chrome */
}

.module-number {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-accent);
    margin-right: 16px;
}

.accordion-header h3 {
    flex-grow: 1;
    font-size: 18px;
}

.accordion-arrow {
    font-size: 14px;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.program-accordion-item[open] .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 24px 24px 24px 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.accordion-content p {
    margin-bottom: 16px;
}

.accordion-content ul {
    list-style: disc;
    padding-left: 20px;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-card {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(45, 27, 80, 0.05);
}

.faq-card h4 {
    margin-bottom: 12px;
    color: var(--color-primary);
}

/* CTA Banner */
.cta-banner {
    padding: 80px 16px;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 16px;
}

.cta-banner p {
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Story/Team Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .story-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.story-img {
    width: 100%;
    height: auto;
    border-radius: 36px;
    box-shadow: 0 24px 64px rgba(45, 27, 80, 0.12);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 500px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background-color: var(--color-primary);
    padding: 32px;
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
    text-align: center;
}

.value-icon {
    font-size: 32px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.value-card h3 {
    margin-bottom: 12px;
}

/* Manifesto Section */
.manifesto-section {
    padding: 80px 16px;
    text-align: center;
}

.manifesto-container {
    max-width: 800px;
    margin: 0 auto;
}

.manifesto-badge {
    color: var(--color-accent);
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.manifesto-section h2 {
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: 24px;
    font-style: italic;
    color: var(--color-primary);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.contact-form-wrapper {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(45, 27, 80, 0.05);
}

.contact-form-wrapper h2 {
    margin-bottom: 16px;
    color: var(--color-primary);
}

.custom-contact-form {
    margin-top: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    border: 1px solid rgba(45, 27, 80, 0.2);
    font-family: var(--font-family);
    outline: none;
}

.form-group textarea {
    border-radius: 28px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
}

.btn-submit {
    width: 100%;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card, .hours-card {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 32px;
    border-radius: 28px;
}

.info-card h3, .hours-card h3 {
    margin-bottom: 16px;
    color: var(--color-accent);
}

.info-details {
    margin-top: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.info-icon {
    font-size: 24px;
}

.info-text a {
    color: var(--color-text-light);
    text-decoration: none;
}

.hours-list {
    list-style: none;
    margin-top: 16px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
}

/* Legal Page Styling */
.legal-page {
    padding: 60px 16px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(45, 27, 80, 0.05);
}

.legal-container h1 {
    color: var(--color-primary);
    margin-bottom: 8px;
}

.legal-date {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 32px;
}

.legal-section {
    margin-bottom: 32px;
}

.legal-section h2 {
    color: var(--color-primary);
    margin-bottom: 16px;
    font-size: 20px;
}

.legal-section ul {
    padding-left: 20px;
    margin-top: 12px;
}

.legal-section li {
    margin-bottom: 8px;
}

/* Thank You Page Styling */
.thank-page {
    padding: 80px 16px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-card {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 48px;
    border-radius: 36px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

.thank-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 24px;
}

.thank-card h1 {
    margin-bottom: 16px;
}

.next-steps {
    margin-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
}

.next-steps h3 {
    margin-bottom: 16px;
}

.thank-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

@media (min-width: 500px) {
    .thank-links {
        flex-direction: row;
        justify-content: center;
    }
}

/* Footer Section */
.site-footer {
    background-color: var(--color-secondary) !important;
    color: var(--color-text-light) !important;
    padding: 60px 16px 20px 16px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-description {
    opacity: 0.8;
}

.site-footer h4 {
    color: var(--color-accent) !important;
    margin-bottom: 20px;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 12px;
}

.footer-links a, .footer-legal a {
    color: var(--color-text-light) !important;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover, .footer-legal a:hover {
    opacity: 1;
    color: var(--color-accent) !important;
}

.footer-contact p {
    margin-bottom: 12px;
    opacity: 0.8;
}

.footer-phone, .footer-contact a {
    color: var(--color-text-light) !important;
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* 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;
    transform: translateY(0); transition: transform 0.4s ease;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--color-accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}
.cookie-btn-decline {
    background-color: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
}
@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; }
}