/*
* Design Style: dynamic-tech
* Border Style: sharp
* Shadow Style: flat
* Color Mode: mixed
* Color Palette: Cyberpunk Magenta
*/

:root {
    --dark-bg: #1A1423;
    --light-bg: #F4F4F8;
    --primary-accent: #9C1C66;
    --secondary-accent: #E0479E;
    --text-light: #F2D4C9;
    --text-dark: #212121;
    --border-light: #e0e0e0;
    --border-dark: #3a3a3a;
    --glass-bg: rgba(26, 20, 35, 0.6);
}

/* --- Global Styles & Resets --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 4vw, 1.75rem); }
h4 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0; /* Sharp style */
}

ul {
    list-style-position: inside;
    padding-left: 1rem;
}

/* --- Layout & Containers --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 60px 0;
}

.dark-section {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.light-section {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.dark-section a { color: var(--secondary-accent); }
.dark-section a:hover { color: var(--primary-accent); }
.dark-section h1, .dark-section h2, .dark-section h3, .dark-section h4 { color: var(--text-light); }
.light-section a { color: #fff; }
.light-section h1, .light-section h2, .light-section h3, .light-section h4 { color: var(--text-dark); }
.thank-you-section a { color: #000; }

.thank-you-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.text-center {
    text-align: center;
}

/* --- Header & Navigation --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--border-dark);
}

.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(--text-light) !important;
    text-decoration: none;
}
.logo:hover { text-decoration: none; }

.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: 500;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}
.desktop-nav a:hover {
    color: var(--secondary-accent);
    text-decoration: none;
    border-bottom-color: var(--secondary-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(--dark-bg);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-dark);
}

.mobile-nav a {
    color: var(--text-light);
    display: block;
    width: 100%;
}

@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 --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border-radius: 0; /* Sharp style */
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    border: 2px solid transparent;
}
.btn:hover { text-decoration: none; }

.btn-primary {
    background-color: var(--primary-accent);
    color: var(--text-light);
    border-color: var(--primary-accent);
}
.btn-primary:hover {
    background-color: var(--secondary-accent);
    border-color: var(--secondary-accent);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-accent);
    border-color: var(--primary-accent);
}
.dark-section .btn-secondary {
    color: var(--secondary-accent);
    border-color: var(--secondary-accent);
}
.btn-secondary:hover {
    background-color: var(--primary-accent);
    color: var(--text-light);
}
.dark-section .btn-secondary:hover {
    background-color: var(--secondary-accent);
    color: var(--dark-bg);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--dark-bg) !important;
    color: var(--text-light) !important;
    padding: 40px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 30px;
}

.footer-heading {
    color: var(--text-light) !important;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.footer-column p, .footer-column a {
    color: var(--text-light) !important;
    opacity: 0.8;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a:hover {
    color: var(--secondary-accent) !important;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    text-align: center;
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* --- Cookie Banner --- */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background-color: var(--dark-bg);
    color: var(--text-light);
    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;
    border-top: 1px solid var(--border-dark);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 0.9rem; }
#cookie-banner a { color: var(--secondary-accent); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 16px;
    border: 1px solid var(--secondary-accent);
    background-color: transparent;
    color: var(--secondary-accent);
    cursor: pointer;
    border-radius: 0;
    transition: 0.3s;
}
.cookie-btn-accept:hover {
    background-color: var(--secondary-accent);
    color: var(--dark-bg);
}
.cookie-btn-decline:hover {
    opacity: 0.7;
}

@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; }
}

/* --- INDEX.HTML STYLES --- */

/* Hero: Floating Card */
.hero-floating-card {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    overflow: hidden;
}
.hero-background {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.hero-background::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(26, 20, 35, 0.5);
}
.hero-floating-card .container {
    position: relative;
    z-index: 2;
}
.hero-content-card {
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}
.hero-content-card h1 { color: var(--text-light); }
.hero-content-card p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

/* Benefits: Asymmetric Grid */
.benefits-asymmetric-grid {
    display: grid;
    gap: 24px;
}
.benefit-card {
    padding: 24px;
    border: 1px solid var(--border-light);
}
.benefit-card h3 { color: var(--primary-accent); }
.benefit-card h4 { margin-bottom: 8px; }

@media (min-width: 768px) {
    .benefits-asymmetric-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-card {
        grid-column: 1 / -1;
    }
}
@media (min-width: 1024px) {
    .benefits-asymmetric-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
    }
    .featured-card {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
}

/* Icon Features */
.icon-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.icon-feature-item {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--border-dark);
}
.icon-placeholder {
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.icon-feature-item h4 { margin-bottom: 4px; }
.icon-feature-item p { font-size: 0.9rem; margin: 0; }
@media (min-width: 768px) {
    .icon-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Testimonials */
.testimonials-list {
    display: grid;
    gap: 24px;
}
.testimonial-item {
    border: 1px solid var(--border-light);
    padding: 24px;
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: #ccc;
    flex-shrink: 0;
}
.testimonial-name { font-weight: bold; display: block; }
.testimonial-rating { color: var(--primary-accent); }
.testimonial-text { font-style: italic; }

/* Numbered Steps */
.numbered-steps-grid {
    display: grid;
    gap: 32px;
}
.numbered-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-accent);
    line-height: 1;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .numbered-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* CTA Banner */
.cta-banner-section {
    padding: 60px 0;
    background-color: var(--primary-accent);
    color: var(--text-light);
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}
.cta-banner-content {
    text-align: center;
}
.cta-banner-content h2 { color: var(--text-light); }
.cta-banner-content p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}
.cta-banner-section .btn-secondary {
    color: var(--text-light);
    border-color: var(--text-light);
}
.cta-banner-section .btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-accent);
}

/* --- PROGRAM.HTML STYLES --- */

/* Page Header */
.page-header-section {
    text-align: center;
    padding: 60px 0;
}
.page-title { margin-bottom: 8px; }
.page-subtitle { max-width: 600px; margin: 0 auto; opacity: 0.9; }

/* Horizontal Tabs */
.tabs {
    width: 100%;
}
input[name="tabs"] { display: none; }
.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--border-light);
}
.tabs-nav label {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: 0.3s;
    text-align: center;
    flex-grow: 1;
}
.tabs-nav label:hover {
    color: var(--primary-accent);
}
.tab-panel {
    display: none;
    padding: 30px 0;
}
.content-image {
    margin-top: 24px;
    width: 100%;
}

#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"] {
    color: var(--primary-accent);
    border-bottom-color: var(--primary-accent);
    font-weight: bold;
}

#t1:checked ~ #p1, #t2:checked ~ #p2,
#t3:checked ~ #p3, #t4:checked ~ #p4 {
    display: block;
}

.cta-centered { text-align: center; }
.cta-centered p { max-width: 600px; margin: 0 auto 24px auto; }

/* --- MISSION.HTML STYLES --- */

/* Split Layout */
.split-layout-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}
@media (min-width: 992px) {
    .split-layout-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}
.split-layout-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Values Grid */
.values-grid {
    display: grid;
    gap: 24px;
}
.value-card {
    padding: 24px;
    border: 1px solid var(--border-dark);
}
.value-card h3 { color: var(--secondary-accent); }
@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Manifesto */
.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* --- CONTACT.HTML STYLES --- */
.contact-grid {
    display: grid;
    gap: 40px;
}
@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 3fr 2fr;
    }
}

.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-light);
    background-color: #fff;
    border-radius: 0; /* Sharp style */
    font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--primary-accent);
    border-color: var(--primary-accent);
}
.contact-form button { width: 100%; }

.contact-info-item {
    margin-bottom: 24px;
}
.contact-info-item h4 {
    margin-bottom: 4px;
    color: var(--primary-accent);
}
.contact-info-item p { margin-bottom: 0; }

/* --- POLICY & THANK YOU PAGES --- */
.policy-page .container, .thank-you-section .container {
    max-width: 800px;
}
.policy-page h1, .thank-you-section h1 {
    margin-bottom: 24px;
}
.policy-page h2 {
    margin-top: 32px;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 8px;
}
.next-steps {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}
.steps-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}