/* #AD1457, #C8185A, #006064, #FCE4EC */
/* Design Palette: fuchsia-teal */
/* Style System: bold-editorial | Sharp Borders | Dramatic Shadows | Mixed Color Mode */

:root {
    --color-primary: #AD1457;
    --color-secondary: #C8185A;
    --color-accent: #006064;
    --bg-tint: #FCE4EC;
    
    --text-dark: #121212;
    --text-light: #FFFFFF;
    --text-muted: #555555;
    
    --font-heading: 'Helvetica Neue', Arial, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    --shadow-dramatic: 0 24px 64px rgba(0,0,0,0.22);
    --shadow-hover: 0 32px 80px rgba(0,0,0,0.30);
}

/* Base Reset - Mobile First */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-tint);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container Structure */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* Header & Navigation Template */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-secondary);
    border-bottom: 3px solid 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 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-light) !important;
    letter-spacing: 1px;
    z-index: 100;
}

.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(--text-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;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.desktop-nav a:hover {
    color: var(--bg-tint);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--color-secondary);
    max-height: 0;
    overflow: hidden;
    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 a {
    color: var(--text-light);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}

@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);
    }
}

/* Button Component System - Sharp Borders */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border-radius: 0;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: var(--shadow-dramatic);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 44px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--text-light) !important;
}

.btn-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--color-accent);
    color: var(--text-light) !important;
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Diagonal Split Layout */
.hero-diagonal {
    background-color: var(--color-secondary);
    color: var(--text-light);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-diagonal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-diagonal {
        padding: 100px 0;
    }
    .hero-diagonal-container {
        grid-template-columns: 1fr 1fr;
        padding: 0 24px;
    }
}

.hero-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--text-light);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 6vw, 64px);
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-description {
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: 16px;
    opacity: 0.95;
}

.hero-subtext {
    font-size: 15px;
    margin-bottom: 32px;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-media {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-dramatic);
}

@media (min-width: 1024px) {
    .hero-img {
        clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* Page Subheaders */
.page-header {
    background-color: var(--color-secondary);
    color: var(--text-light);
    padding: 60px 0;
    border-bottom: 4px solid var(--color-primary);
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 16px;
}

.page-description {
    font-size: 18px;
    max-width: 800px;
    opacity: 0.9;
}

/* Common Section Titles */
.section-subtitle {
    display: block;
    color: var(--color-accent);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.1;
}

.section-intro {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 40px;
}

/* Section 1: Timeline Layout */
.section-timeline {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.timeline-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .timeline-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

.timeline-item {
    background-color: var(--bg-tint);
    padding: 32px;
    border-left: 6px solid var(--color-primary);
    box-shadow: var(--shadow-dramatic);
}

.timeline-marker {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.timeline-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.timeline-text {
    font-size: 16px;
    margin-bottom: 10px;
}

.timeline-subtext {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

/* Section 2: Checklist Block */
.section-checklist {
    padding: 80px 0;
    background-color: var(--bg-tint);
}

.checklist-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .checklist-grid-wrapper {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
    }
}

.checklist-img {
    margin-top: 24px;
    box-shadow: var(--shadow-dramatic);
}

.checklist-items {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 600px) {
    .checklist-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

.check-item {
    background-color: #FFFFFF;
    padding: 20px;
    display: flex;
    gap: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow-dramatic);
}

.check-icon {
    font-size: 20px;
    font-weight: 900;
    color: var(--color-primary);
}

.check-info h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

.check-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Section 3: Accordion FAQ */
.section-faq {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
}

.faq-accordion {
    background-color: var(--bg-tint);
    border: 2px solid var(--color-secondary);
    box-shadow: var(--shadow-dramatic);
}

.faq-summary {
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-primary);
}

.faq-body {
    padding: 0 24px 24px 24px;
    font-size: 15px;
    color: #333333;
    line-height: 1.7;
}

/* Section 4: Stats Bar */
.section-stats-bar {
    background-color: var(--color-accent);
    color: var(--text-light);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background-color: rgba(255,255,255,0.05);
    padding: 24px;
    border-bottom: 4px solid var(--color-primary);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    color: var(--bg-tint);
}

.stat-label {
    font-size: 16px;
    font-weight: 800;
    margin: 8px 0;
}

.stat-desc {
    font-size: 13px;
    opacity: 0.8;
}

/* Section 5: Testimonials Vertical Stack */
.section-testimonials {
    padding: 80px 0;
    background-color: var(--bg-tint);
}

.testimonials-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
}

.testimonial-card {
    background-color: #FFFFFF;
    padding: 32px;
    box-shadow: var(--shadow-dramatic);
    border-left: 6px solid var(--color-primary);
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.avatar-placeholder {
    width: 48px;
    height: 48px;
    background-color: var(--color-accent);
    color: var(--text-light);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.user-name {
    font-size: 18px;
    font-weight: 800;
}

.user-role {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
}

.stars {
    color: #FFC107;
    font-size: 18px;
    margin-left: auto;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: #333333;
}

/* Program Page Styles - Numbered Layout */
.section-numbered-program {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.program-intro-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

@media (min-width: 1024px) {
    .program-intro-block {
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
    }
}

.program-img {
    box-shadow: var(--shadow-dramatic);
}

.numbered-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.num-card {
    display: grid;
    grid-template-columns: 1fr;
    background-color: var(--bg-tint);
    border: 2px solid var(--color-secondary);
    box-shadow: var(--shadow-dramatic);
}

@media (min-width: 768px) {
    .num-card {
        grid-template-columns: 120px 1fr;
    }
}

.num-digit {
    background-color: var(--color-primary);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.num-content {
    padding: 32px;
}

.num-tag {
    font-size: 12px;
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.num-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
}

.num-desc {
    font-size: 16px;
    margin-bottom: 16px;
}

.num-features {
    list-style: circle;
    padding-left: 20px;
    font-size: 14px;
    color: var(--text-dark);
}

.section-program-cta {
    background-color: var(--color-secondary);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-inner p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Mission Page Styles - Story Team */
.section-story-team {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.story-img {
    box-shadow: var(--shadow-dramatic);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background-color: var(--bg-tint);
    padding: 32px;
    border-top: 4px solid var(--color-accent);
    box-shadow: var(--shadow-dramatic);
}

.value-number {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-manifesto {
    padding: 80px 0;
    background-color: var(--bg-tint);
}

.manifesto-card {
    background-color: var(--color-secondary);
    color: var(--text-light);
    padding: 48px;
    box-shadow: var(--shadow-dramatic);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-card h2 {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 900;
    line-height: 1.3;
    margin: 16px 0;
    font-style: italic;
}

/* Contact Page Styles */
.section-contact-main {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-info-card {
    background-color: var(--bg-tint);
    padding: 40px;
    box-shadow: var(--shadow-dramatic);
    border-left: 6px solid var(--color-accent);
}

.contact-info-card h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 16px;
}

.info-item {
    margin-top: 24px;
}

.info-item strong {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.contact-form-wrapper {
    background-color: #FFFFFF;
    padding: 40px;
    border: 2px solid var(--color-secondary);
    box-shadow: var(--shadow-dramatic);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 24px;
}

.contact-form {
    max-width: 800px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #CCCCCC;
    border-radius: 0;
    background-color: #FAFAFA;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: #FFFFFF;
}

/* Thank You Page */
.section-thank {
    padding: 100px 0;
    background-color: var(--bg-tint);
}

.thank-card {
    background-color: #FFFFFF;
    padding: 48px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-dramatic);
    border-top: 8px solid var(--color-primary);
}

.thank-icon {
    width: 72px;
    height: 72px;
    background-color: var(--color-accent);
    color: var(--text-light);
    font-size: 36px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.thank-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 16px;
}

.thank-message {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.thank-next-steps {
    text-align: left;
    background-color: var(--bg-tint);
    padding: 24px;
    margin-bottom: 32px;
}

.thank-next-steps h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
}

.thank-links-list {
    list-style: circle;
    padding-left: 20px;
}

.thank-links-list li {
    margin-bottom: 8px;
}

.mt-20 {
    margin-top: 20px;
}

/* Legal Pages Styling */
.section-legal {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.legal-content {
    max-width: 900px;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 800;
    margin: 32px 0 16px 0;
    color: var(--color-secondary);
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

/* Footer Styling - Locked Colors for Auto-translators */
.site-footer {
    background-color: #C8185A !important;
    color: #FFFFFF !important;
    padding: 60px 0 20px 0;
    border-top: 4px solid #AD1457;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 600px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

.footer-logo {
    color: #FFFFFF !important;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-about {
    font-size: 14px;
    color: #FFFFFF !important;
    opacity: 0.9;
    line-height: 1.5;
}

.footer-heading {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: #FFFFFF !important;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #FFFFFF !important;
    font-size: 14px;
    opacity: 0.85;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-address,
.footer-phone,
.footer-email {
    font-size: 14px;
    color: #FFFFFF !important;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-email a {
    color: #FFFFFF !important;
    text-decoration: underline;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 24px;
    margin-bottom: 24px;
    font-size: 12px;
    color: #FFFFFF !important;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 13px;
    color: #FFFFFF !important;
    opacity: 0.7;
}

/* Cookie Banner Styling */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 18px 24px;
    background-color: var(--text-dark);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    transform: translateY(0);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 14px;
}

#cookie-banner a {
    color: var(--bg-tint);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-primary);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    font-weight: 800;
    cursor: pointer;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 12px;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    padding: 10px 20px;
    font-weight: 800;
    cursor: pointer;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 12px;
}

@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;
    }
}