/* Palette Name: charcoal-coral */
:root {
    --color-primary: #1D2A3C;
    --color-secondary: #FF6F61;
    --color-accent: #F2D4C9;
    --bg-tint: #F8F8F8;
    --text-dark: #1D2A3C;
    --text-light: #FFFFFF;
}

/* Base Styles & Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-tint);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Sharp Borders (No border-radius allowed) */
.border-sharp *,
.border-sharp {
    border-radius: 0 !important;
}

/* Dramatic Shadows */
.shadow-dramatic {
    box-shadow: 0 24px 64px rgba(29, 42, 60, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shadow-dramatic:hover {
    box-shadow: 0 32px 80px rgba(29, 42, 60, 0.30);
    transform: translateY(-4px);
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* Section General Padding */
.section {
    padding: 48px 16px;
}
@media (min-width: 768px) {
    .section {
        padding: 80px 24px;
    }
}

.light-bg {
    background-color: var(--bg-tint);
    color: var(--text-dark);
}

.dark-bg {
    background-color: var(--color-primary);
    color: var(--text-light);
}

/* Typography */
h1 {
    font-size: clamp(32px, 6vw, 56px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 16px;
}

h2 {
    font-size: clamp(24px, 4vw, 38px);
    line-height: 1.2;
    margin-bottom: 16px;
}

h3 {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 12px;
}

p {
    font-size: clamp(15px, 2vw, 17px);
    margin-bottom: 16px;
}

.text-center {
    text-align: center;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.section-subtitle {
    font-size: 18px;
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-height: 44px;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--text-light);
}
.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.btn-secondary {
    background-color: var(--color-primary);
    color: var(--text-light);
}
.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--text-light);
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-primary);
    border-bottom: 2px solid var(--color-secondary);
}

.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;
    color: var(--text-light);
    text-decoration: none;
    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;
    transition: 0.3s;
    background-color: var(--text-light);
}

.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 .nav-list a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-secondary);
}

.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-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);
}

.mobile-nav a {
    color: var(--text-light);
    text-decoration: none;
    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);
    }
}

.thank-card ul {
    list-style: none;
}

/* HERO: split-color */
.hero-split-color {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
}

.hero-text-half {
    background-color: var(--color-primary);
    color: var(--text-light);
    padding: 48px 16px;
    display: flex;
    align-items: center;
}

.hero-content-wrapper {
    max-width: 540px;
    margin: 0 auto;
}

.hero-badge {
    background-color: var(--color-secondary);
    color: var(--text-light);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 16px;
}

.hero-image-half {
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

@media (min-width: 768px) {
    .hero-split-color {
        flex-direction: row;
    }
    .hero-text-half, .hero-image-half {
        flex: 1;
    }
    .hero-text-half {
        padding: 80px;
    }
}

/* Page Hero (Inner Pages) */
.page-hero {
    padding: 80px 16px;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
}

/* Section 1: benefits-timeline */
.vertical-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.vertical-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-secondary);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    background-color: var(--color-secondary);
    color: var(--text-light);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-primary);
}

.timeline-content {
    background-color: var(--text-light);
    padding: 24px;
    box-shadow: 0 12px 32px rgba(29, 42, 60, 0.1);
}

/* Section 2: quote-highlight */
.quote-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 40px 0;
}

.quote-icon {
    font-size: 80px;
    color: var(--color-secondary);
    line-height: 1;
    display: block;
    margin-bottom: -20px;
}

.quote-text {
    font-size: clamp(20px, 3vw, 30px);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.4;
}

.quote-author {
    font-weight: bold;
    color: var(--color-accent);
}

/* Section 3: comparison-table */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    background-color: var(--text-light);
}

.comparison-table th, .comparison-table td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.comparison-table th {
    background-color: var(--color-primary);
    color: var(--text-light);
}

.comparison-table td.highlight-col {
    background-color: rgba(255, 111, 97, 0.05);
    border-left: 2px solid var(--color-secondary);
    border-right: 2px solid var(--color-secondary);
}

.comparison-table th.highlight-col {
    background-color: var(--color-secondary);
    color: var(--text-light);
}

/* Section 4: testimonials */
.testimonials-vertical {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    background-color: var(--color-secondary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.stars {
    color: var(--color-secondary);
}

/* Section 5: two-col-image & general grid */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .two-col-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.benefit-list {
    list-style: none;
    margin: 24px 0;
}

.benefit-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.benefit-list li::before {
    content: '✓';
    color: var(--color-secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Program: numbered-sections */
.numbered-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .numbered-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.step-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    display: flex;
    gap: 24px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.step-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
}

/* Mission: vertical-storytelling */
.story-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.story-badge {
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .story-block {
        grid-template-columns: repeat(2, 1fr);
    }
    .story-block.reverse .story-text {
        order: 2;
    }
    .story-block.reverse .story-image {
        order: 1;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* Contact: Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 3fr 2fr;
    }
}

.contact-form {
    max-width: 800px;
    margin-top: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: var(--text-dark);
}

.info-card {
    background-color: var(--color-primary);
    color: var(--text-light);
    padding: 32px;
    box-shadow: 0 16px 40px rgba(29, 42, 60, 0.2);
}

.info-item {
    margin-top: 24px;
}

.info-item a {
    color: var(--color-secondary);
    text-decoration: none;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-item h4 {
    margin-bottom: 12px;
    color: var(--color-primary);
}

/* Legal Pages */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 16px;
}

.legal-section {
    margin-top: 32px;
}

.alert-box {
    background-color: var(--color-accent);
    padding: 24px;
    border-left: 4px solid var(--color-secondary);
}

/* Footer (Hardcoded text/bg colors for protection) */
.site-footer {
    background-color: #1D2A3C !important;
    color: #FFFFFF !important;
    padding: 64px 16px 24px 16px;
    border-top: 4px solid #FF6F61;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 28px;
}

.footer-brand p {
    color: #F2D4C9 !important;
}

.footer-grid h4 {
    color: #FF6F61 !important;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.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: #FFFFFF !important;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover, .footer-legal a:hover {
    color: #FF6F61 !important;
}

.footer-contact p {
    margin-bottom: 12px;
    color: #FFFFFF !important;
}

.footer-contact a {
    color: #FF6F61 !important;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    color: #F2D4C9 !important;
}

/* 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(--text-light);
    border-top: 3px solid var(--color-secondary);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

#cookie-banner a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-secondary);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    padding: 10px 20px;
    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;
    }
}