/* 
   Midnight Rose Palette
   Primary: #0C0F24 (Deep navy)
   Secondary: #B22B5B (Rose)
   Accent: #F39C12 (Orange/Amber)
   Bg Tint: #F5F5F5 (Warm light gray)
*/

:root {
    --color-primary: #0C0F24;
    --color-secondary: #B22B5B;
    --color-accent: #F39C12;
    --bg-tint: #F5F5F5;
    --color-white: #FFFFFF;
    --color-text-dark: #1A1A1A;
    --color-text-light: #E0E0E0;
    
    /* Design System: soft-organic (colors) mixed with sharp (borders) and dramatic (shadows) */
    --border-radius-none: 0px; /* Sharp rule */
    --shadow-dramatic: 0 24px 64px rgba(0, 0, 0, 0.22);
    --shadow-dramatic-hover: 0 32px 80px rgba(0, 0, 0, 0.30);
    --transition-standard: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    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: inherit;
    text-decoration: none;
    transition: var(--transition-standard);
}

/* Mobile-First Containers & Sections */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

section {
    padding: 48px 16px;
}

@media (min-width: 768px) {
    section {
        padding: 80px 24px;
    }
    .container {
        padding: 0 24px;
    }
}

/* Color Modes (Mixed Style) */
.section-light {
    background-color: var(--bg-tint);
    color: var(--color-text-dark);
}

.section-dark {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.section-dark .section-title {
    color: var(--color-white);
}

/* Typography elements */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--color-white);
}

h1 {
    font-size: clamp(32px, 6vw, 56px);
}

h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 16px;
}

h3 {
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
    font-size: clamp(15px, 2.5vw, 17px);
}

/* Shared Components */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.section-tag {
    display: inline-block;
    color: var(--color-secondary);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-dark .section-tag {
    color: var(--color-accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 700;
    cursor: pointer;
    border-radius: var(--border-radius-none) !important; /* Sharp */
    transition: var(--transition-standard);
    font-size: 16px;
    border: 2px solid transparent;
    text-align: center;
    min-height: 44px;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary);
    box-shadow: var(--shadow-dramatic);
    transform: translateY(-2px);
}

.btn-secondary-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.section-dark .btn-secondary-outline {
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.btn-accent:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    box-shadow: var(--shadow-dramatic);
    transform: translateY(-2px);
}

/* Header & Hamburger */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-primary);
    color: var(--color-white);
    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: 24px;
    font-weight: bold;
    z-index: 100;
    color: var(--color-white) !important;
}

.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(--color-white);
}

.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:hover {
    color: var(--color-accent);
}

.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(--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 {
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--color-primary);
}

.hero-image-wrapper {
    height: 55vh;
    width: 100%;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-wrapper {
    padding: 48px 16px;
    background-color: var(--color-primary);
    color: var(--color-white);
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    border-radius: var(--border-radius-none) !important;
}

.hero-title {
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero-lead {
    color: var(--color-text-light);
    margin-bottom: 32px;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (min-width: 768px) {
    .hero-content-wrapper {
        padding: 80px 24px;
    }
}

/* Section 1: benefits-5asymm */
.benefits-grid-asymm {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    background-color: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow-dramatic);
    border-radius: var(--border-radius-none) !important;
    transition: var(--transition-standard);
}

.section-light .benefit-card {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-dramatic-hover);
    border-color: var(--color-accent);
}

.card-num {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-accent);
    opacity: 0.8;
    margin-bottom: 16px;
}

.benefit-card h3 {
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .benefits-grid-asymm {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .card-large {
        grid-column: span 3;
    }
    
    .card-small {
        grid-column: span 2;
    }
}

/* Section 2: comparison-table */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-top: 32px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background-color: var(--color-white);
    box-shadow: var(--shadow-dramatic);
    border-radius: var(--border-radius-none) !important;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
}

.comparison-table tr:hover {
    background-color: rgba(178, 43, 91, 0.05);
}

/* Section 3: testimonials (vertical stack) */
.testimonials-vertical {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--color-accent);
    padding: 32px;
    box-shadow: var(--shadow-dramatic);
    border-radius: var(--border-radius-none) !important;
}

.section-light .testimonial-card {
    background-color: var(--color-white);
    border-left: 4px solid var(--color-secondary);
}

.testimonial-stars {
    color: var(--color-accent);
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: var(--border-radius-none) !important;
}

.author-info h4 {
    margin: 0;
    font-size: 16px;
}

.author-info span {
    font-size: 14px;
    opacity: 0.7;
}

/* Section 4: two-col-image */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.two-col-img-block {
    position: relative;
    box-shadow: var(--shadow-dramatic);
}

.side-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.custom-list {
    list-style: none;
    margin-top: 24px;
}

.custom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
}

.custom-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 18px;
}

@media (min-width: 768px) {
    .two-col-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Section 5: cta-banner */
.cta-banner-section {
    padding: 60px 16px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    text-align: center;
}

.cta-banner-card h2 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-banner-card p {
    max-width: 600px;
    margin: 0 auto 32px auto;
    font-size: 18px;
}

/* PROGRAM.HTML STYLES */
.page-intro {
    text-align: center;
    padding: 80px 16px;
}

.page-intro p {
    max-width: 700px;
    margin: 16px auto 0 auto;
    font-size: 18px;
}

/* Tabs System (Pure CSS) */
.tabs {
    display: flex;
    flex-direction: column;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 16px;
    justify-content: center;
}

.tabs-nav label {
    padding: 12px 24px;
    background-color: rgba(0, 0, 0, 0.05);
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition-standard);
    border-radius: var(--border-radius-none) !important;
}

.tabs-nav label:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.tab-panel {
    display: none;
    background-color: var(--color-white);
    padding: 32px;
    box-shadow: var(--shadow-dramatic);
    border-radius: var(--border-radius-none) !important;
}

input[name="tabs"] {
    display: none;
}

#t1:checked ~ #p1,
#t2:checked ~ #p2,
#t3:checked ~ #p3,
#t4:checked ~ #p4 {
    display: block;
}

#t1:checked ~ .tabs-nav label[for="t1"],
#t2:checked ~ .tabs-nav label[for="t2"],
#t3:checked ~ .tabs-nav label[for="t3"],
#t4:checked ~ .tabs-nav label[for="t4"] {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

.stat-card {
    padding: 24px;
}

.stat-number {
    display: block;
    font-size: 64px;
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    color: var(--color-text-light);
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    padding: 24px;
    box-shadow: var(--shadow-dramatic);
    border-radius: var(--border-radius-none) !important;
}

.faq-item h4 {
    margin-bottom: 12px;
    color: var(--color-primary);
}

/* MISSION.HTML STYLES */
.split-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.split-mission-img {
    box-shadow: var(--shadow-dramatic);
}

.mission-side-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.values-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-item {
    padding-left: 16px;
    border-left: 3px solid var(--color-accent);
}

@media (min-width: 768px) {
    .split-mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.manifesto-section {
    text-align: center;
}

.manifesto-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-dramatic);
    border-radius: var(--border-radius-none) !important;
}

.manifesto-card h3 {
    color: var(--color-accent);
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 24px;
}

/* CONTACT.HTML STYLES */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.custom-form {
    margin-top: 32px;
    max-width: 800px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input, .form-group textarea {
    padding: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    background-color: var(--color-white);
    border-radius: var(--border-radius-none) !important;
    font-size: 16px;
    outline: none;
    transition: var(--transition-standard);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-dramatic);
}

.info-card-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: var(--color-white);
    padding: 20px;
    box-shadow: var(--shadow-dramatic);
    border-radius: var(--border-radius-none) !important;
}

.info-card h4 {
    color: var(--color-secondary);
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 6fr 4fr;
    }
}

/* POLICY PAGES */
.policy-page {
    padding: 80px 16px;
}

.policy-date {
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 32px;
}

.policy-section {
    margin: 0;
    padding: 0;
}

.policy-section h2 {
    margin-bottom: 16px;
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.policy-section li {
    margin-bottom: 8px;
}

/* THANK PAGE */
.thank-page {
    padding: 80px 16px;
    text-align: center;
}

.thank-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 48px;
    box-shadow: var(--shadow-dramatic);
    border-radius: var(--border-radius-none) !important;
}

.thank-icon {
    font-size: 64px;
    color: var(--color-accent);
    display: block;
    margin-bottom: 24px;
}

.thank-next-steps {
    margin-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 24px;
}

.thank-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

/* Footer (Anti-Translate Hardcoded Colors) */
.site-footer {
    background-color: #0C0F24 !important;
    color: #E0E0E0 !important;
    padding: 64px 16px 24px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .footer-logo {
    font-size: 28px;
    font-weight: 900;
    color: #FFFFFF !important;
    display: block;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
}

.footer-grid h4 {
    color: #FFFFFF !important;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid li {
    margin-bottom: 12px;
}

.footer-grid a {
    color: #E0E0E0 !important;
    font-size: 14px;
}

.footer-grid a:hover {
    color: #F39C12 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
    opacity: 0.7;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 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-white);
    box-shadow: var(--shadow-dramatic);
    border-top: 3px solid var(--color-accent);
}

#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 {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
    border-radius: var(--border-radius-none) !important;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
    border-radius: var(--border-radius-none) !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;
    }
}