/* crimson-gold Color Palette */
/* Primary: #B22B5B | Secondary: #1D2A3C | Accent: #D4AC0D | Tint: #FDF8EC */

:root {
    --color-primary: #B22B5B;
    --color-secondary: #1D2A3C;
    --color-accent: #D4AC0D;
    --bg-tint: #FDF8EC;
    --color-white: #ffffff;
    --color-text-dark: #2c3e50;
    --color-text-muted: #607d8b;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* soft-organic Design System */
    --border-radius-lg: 32px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* dramatic Shadow Style */
    --shadow-dramatic: 0 24px 64px rgba(29, 42, 60, 0.18);
    --shadow-dramatic-hover: 0 32px 80px rgba(29, 42, 60, 0.28);
}

/* Reset & Base Styles */
* {
    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;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--color-accent);
}

/* Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.max-width-md {
    max-width: 800px !important;
}

.text-center {
    text-align: center;
}

/* Section Spacing */
section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    section {
        padding: 100px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(28px, 5vw, 42px);
    color: var(--color-secondary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--color-text-muted);
}

/* Badges & Buttons */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(178, 43, 91, 0.1);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    min-height: 48px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-dramatic);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Grids */
.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .grid-2-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

.align-items-center {
    align-items: center;
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-secondary);
    box-shadow: var(--shadow-dramatic);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: var(--color-white) !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;
    margin: 5px 0;
    background-color: var(--color-white);
    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: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 16px;
}

.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;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--color-secondary);
}

.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(--color-white);
    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 SECTION: VERTICAL STACK */
.hero-vertical-stack {
    display: flex;
    flex-direction: column;
    padding: 0;
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.hero-image-wrapper {
    height: 45vh;
    width: 100%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-wrapper {
    padding: 60px 20px;
    background-color: var(--color-secondary);
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-container h1 {
    font-size: clamp(32px, 6vw, 56px);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: clamp(18px, 3vw, 22px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (min-width: 768px) {
    .hero-image-wrapper {
        height: 55vh;
    }
    .hero-content-wrapper {
        padding: 100px 20px;
    }
}

/* SECTION 1: BENEFITS HORIZONTAL SCROLL */
.section-benefits-hscroll {
    background-color: var(--bg-tint);
}

.hscroll-wrapper {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    flex: 0 0 280px;
    background-color: var(--color-white);
    padding: 35px 25px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-dramatic);
    scroll-snap-align: start;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dramatic-hover);
}

.card-icon {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--color-secondary);
    margin-bottom: 15px;
    font-size: 20px;
}

.benefit-card p {
    color: var(--color-text-muted);
    font-size: 15px;
}

@media (min-width: 768px) {
    .benefit-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

/* SECTION 2: TESTIMONIALS (VERTICAL) */
.section-testimonials {
    background-color: var(--color-white);
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-item {
    background-color: var(--bg-tint);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-dramatic);
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.testimonial-name {
    font-weight: 700;
    color: var(--color-secondary);
}

.rating {
    color: var(--color-accent);
    font-size: 14px;
}

.testimonial-text {
    font-style: italic;
    font-size: 16px;
    color: var(--color-text-dark);
}

/* SECTION 3: CHECKLIST BLOCK */
.section-checklist {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.checklist-info h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 20px;
}

.checklist-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.checklist-item {
    display: flex;
    gap: 16px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--border-radius-md);
}

.checkmark {
    color: var(--color-accent);
    font-size: 20px;
    font-weight: bold;
}

.checklist-item h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.checklist-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* SECTION 4: NUMBERED STEPS */
.section-steps {
    background-color: var(--bg-tint);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-dramatic);
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(178, 43, 91, 0.15);
    margin-bottom: 15px;
}

.step-card h3 {
    color: var(--color-secondary);
    margin-bottom: 15px;
    font-size: 18px;
}

.step-card p {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* SECTION 5: STATS BAR */
.section-stats-bar {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-number {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA & FORMS */
.section-cta-form {
    background-color: var(--color-white);
}

.form-card {
    background-color: var(--bg-tint);
    padding: 40px 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-dramatic);
}

@media (min-width: 768px) {
    .form-card {
        padding: 60px 50px;
    }
}

.form-card h2 {
    text-align: center;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.form-card p {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.cta-form .form-group {
    margin-bottom: 24px;
}

.cta-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-secondary);
}

.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(29, 42, 60, 0.15);
    background-color: var(--color-white);
    border-radius: var(--border-radius-sm);
    font-size: 16px;
    font-family: var(--font-family);
    transition: var(--transition-smooth);
}

.cta-form input:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(178, 43, 91, 0.1);
}

/* INTERNAL PAGES HERO */
.internal-hero {
    background-color: var(--bg-tint);
    padding: 80px 0;
    text-align: center;
}

.internal-hero.bg-dark {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.internal-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.internal-hero.bg-dark h1 {
    color: var(--color-white);
}

.internal-hero p {
    font-size: 18px;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.internal-hero.bg-dark p {
    color: rgba(255, 255, 255, 0.8);
}

/* SPLIT INTRO (PROGRAM.HTML) */
.section-intro-split {
    background-color: var(--color-white);
}

.rounded-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-dramatic);
}

/* TIMELINE (PROGRAM.HTML) */
.section-timeline {
    background-color: var(--bg-tint);
}

.timeline-container {
    position: relative;
    padding-left: 30px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(178, 43, 91, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-badge {
    position: absolute;
    left: -30px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: var(--shadow-dramatic);
}

.timeline-content {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-dramatic);
}

.timeline-content h3 {
    color: var(--color-secondary);
    margin-bottom: 10px;
}

/* FAQ (PROGRAM.HTML) */
.section-faq {
    background-color: var(--color-white);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background-color: var(--bg-tint);
    padding: 25px;
    border-radius: var(--border-radius-md);
}

.faq-item h4 {
    font-size: 18px;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

/* CTA SIMPLE */
.section-cta-simple {
    background-color: var(--color-secondary);
    color: var(--color-white);
    text-align: center;
}

.cta-box h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

/* VALUES GRID (MISSION.HTML) */
.section-values {
    background-color: var(--bg-tint);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-dramatic);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--color-secondary);
    margin-bottom: 15px;
}

/* MANIFESTO */
.section-manifesto {
    background-color: var(--color-white);
}

.manifesto-box {
    background-color: var(--bg-tint);
    padding: 60px 40px;
    border-radius: var(--border-radius-lg);
    border-left: 8px solid var(--color-primary);
}

.manifesto-quote {
    font-size: clamp(18px, 3vw, 24px);
    font-style: italic;
    color: var(--color-secondary);
    line-height: 1.4;
}

/* CONTACT LAYOUT */
.section-contact-layout {
    background-color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 3fr 2fr;
    }
}

.contact-form-wrapper {
    background-color: var(--bg-tint);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-dramatic);
}

.contact-form-wrapper h2 {
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.contact-form-wrapper p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(29, 42, 60, 0.15);
    border-radius: var(--border-radius-sm);
    background-color: var(--color-white);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background-color: var(--bg-tint);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-dramatic);
}

.info-card h3 {
    color: var(--color-secondary);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 8px;
}

/* LEGAL PAGES */
.section-legal-content {
    background-color: var(--color-white);
    padding: 80px 0;
}

.legal-section {
    margin-bottom: 40px;
    padding: 0;
}

.legal-section h2 {
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.legal-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-section li {
    margin-bottom: 10px;
}

.alert-box {
    background-color: #fcf8e3;
    border: 1px solid #faebcc;
    color: #8a6d3b;
    padding: 25px;
    border-radius: var(--border-radius-md);
}

.alert-box h2 {
    color: #8a6d3b;
}

/* THANK YOU PAGE */
.section-thank-you {
    background-color: var(--bg-tint);
    padding: 80px 0;
}

.thank-you-card {
    background-color: var(--color-white);
    padding: 50px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-dramatic);
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #2ecc71;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}

.thank-lead {
    font-size: 18px;
    margin-bottom: 40px;
}

.next-steps {
    text-align: left;
    background-color: var(--bg-tint);
    padding: 30px;
    border-radius: var(--border-radius-md);
    margin-bottom: 40px;
}

.next-steps h3 {
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.steps-list-vertical {
    list-style: none;
}

.steps-list-vertical li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.steps-list-vertical li::before {
    content: '•';
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-size: 20px;
    top: -2px;
}

.thank-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* FOOTER */
.site-footer {
    background-color: var(--color-secondary) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 80px 0 30px;
    border-top: 5px solid var(--color-primary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-grid h4 {
    color: var(--color-white) !important;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-grid h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}

.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: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-accent) !important;
    padding-left: 4px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--color-accent) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 12px;
}

/* 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-secondary);
    color: var(--color-white);
    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;
    font-size: 14px;
}

#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,
.cookie-btn-decline {
    padding: 8px 18px;
    border-radius: var(--border-radius-sm);
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    min-height: 40px;
}

.cookie-btn-accept {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.3);
}

@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;
    }
}

/* Utility to override Chrome translation styles */
.no-translate {
    unicode-bidi: isolate;
}