/* 
Color Palette: fuchsia-teal
--color-primary: #AD1457;
--color-secondary: #C8185A;
--color-accent: #006064;
--bg-tint: #FCE4EC;
*/

:root {
    --color-primary: #AD1457;
    --color-secondary: #C8185A;
    --color-accent: #006064;
    --bg-tint: #FCE4EC;
    --bg-light: #FFF8FA;
    --text-dark: #2D2226;
    --text-light: #FFFFFF;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    
    /* Design parameters */
    --border-radius-card: 16px;
    --border-radius-btn: 8px;
    --shadow-dramatic: 0 24px 64px rgba(200, 24, 90, 0.15);
    --shadow-hover: 0 32px 80px rgba(200, 24, 90, 0.25);
    --vintage-texture: repeating-linear-gradient(45deg, rgba(173, 20, 87, 0.02) 0px, rgba(173, 20, 87, 0.02) 2px, transparent 2px, transparent 10px);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    background-image: var(--vintage-texture);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

h1 {
    font-size: clamp(32px, 6vw, 56px);
}

h2 {
    font-size: clamp(26px, 4.5vw, 40px);
    margin-bottom: 16px;
}

h3 {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: 12px;
}

p {
    font-size: clamp(15px, 2.5vw, 17px);
    margin-bottom: 16px;
    color: #4A3B40;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--text-light);
    padding: 14px 28px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: var(--border-radius-btn);
    box-shadow: 0 4px 12px rgba(173, 20, 87, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 96, 100, 0.4);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    padding: 12px 26px;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-full {
    display: block;
    width: 100%;
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

/* Badge Vintage */
.badge-vintage {
    display: inline-block;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 20px;
    background-color: rgba(173, 20, 87, 0.05);
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-light);
    border-bottom: 1px solid rgba(173, 20, 87, 0.1);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo - завжди зліва */
.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: bold;
    color: var(--color-primary);
    z-index: 100;
}

/* Hamburger - ЗАВЖДИ СПРАВА */
.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-primary);
}

.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 {
    font-weight: 500;
    color: var(--text-dark);
}

.desktop-nav .nav-list a:hover {
    color: var(--color-primary);
}

/* 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(--bg-light);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(173,20,87,0.1);
}

.mobile-nav a {
    color: var(--text-dark);
    font-weight: 500;
    display: block;
}

/* Hero Diagonal Split Layout */
.hero-diagonal {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 70vh;
    background-color: var(--color-secondary);
    color: var(--text-light);
    overflow: hidden;
    position: relative;
}

.hero-diagonal::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--vintage-texture);
    opacity: 0.1;
    pointer-events: none;
}

.hero-content {
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-content h1 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-content .badge-vintage {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.1);
    align-self: flex-start;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    height: 350px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sections Global */
section {
    padding: 60px 0;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-tag {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
}

/* Benefits Section (benefits-5asymm) */
.section-benefits {
    background-color: var(--bg-tint);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(173, 20, 87, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.8;
    margin-bottom: 16px;
}

/* Gallery Section */
.gallery-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-dramatic);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 24px;
    color: var(--text-light);
}

.gallery-overlay h4 {
    color: var(--text-light);
    margin-bottom: 4px;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin: 0;
}

.placeholder-item {
    background-color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}

.placeholder-content h4 {
    color: var(--text-light);
    margin: 12px 0 8px 0;
}

.placeholder-content p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin: 0;
}

.placeholder-icon {
    font-size: 48px;
}

/* Icon Features Grid */
.section-features {
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-box {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius-card);
    border: 1px solid rgba(173, 20, 87, 0.08);
    box-shadow: var(--shadow-dramatic);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-box h4 {
    margin-bottom: 10px;
}

/* CTA Banner Section */
.section-cta-banner {
    background-color: var(--color-secondary);
    color: var(--text-light);
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.section-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--vintage-texture);
    opacity: 0.15;
}

.cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-cta-banner h2 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.section-cta-banner p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

/* Testimonials Section */
.section-testimonials {
    background-color: var(--bg-tint);
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(173, 20, 87, 0.05);
}

.testimonial-rating {
    color: #FFB300;
    font-size: 18px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.testimonial-author h4 {
    font-size: 16px;
    margin: 0;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--color-accent);
}

/* Program Page Layout & Tabs */
.inner-hero {
    background-color: var(--color-secondary);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
}

.inner-hero h1 {
    color: var(--text-light);
    margin-bottom: 16px;
}

.inner-hero p {
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
}

.inner-hero .badge-vintage {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.1);
}

.methodology-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.rounded-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
}

/* CSS Only Tabs */
.tabs {
    margin-top: 40px;
    box-shadow: var(--shadow-dramatic);
    border-radius: var(--border-radius-card);
    background-color: var(--bg-light);
    overflow: hidden;
    border: 1px solid rgba(173, 20, 87, 0.1);
}

input[name="tabs"] {
    display: none;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--bg-tint);
    border-bottom: 1px solid rgba(173, 20, 87, 0.1);
}

.tabs-nav label {
    flex: 1;
    min-width: 120px;
    padding: 18px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tabs-nav label:hover {
    background-color: rgba(173, 20, 87, 0.05);
    color: var(--color-primary);
}

.tab-panel {
    display: none;
    padding: 40px;
}

.tab-panel h3 {
    margin-bottom: 16px;
}

.tab-panel ul {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

.tab-panel li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
}

.tab-panel li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

/* Tab Switching Logic */
#t1:checked ~ #p1 { display: block; }
#t2:checked ~ #p2 { display: block; }
#t3:checked ~ #p3 { display: block; }
#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(--bg-light);
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* Stats Section */
.section-stats {
    background-color: var(--color-accent);
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin: 0;
}

/* FAQ Accordion */
.section-faq {
    background-color: var(--bg-light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: var(--border-radius-card);
    border: 1px solid rgba(173, 20, 87, 0.1);
    box-shadow: var(--shadow-dramatic);
}

.faq-item h4 {
    margin-bottom: 12px;
}

.faq-item p {
    margin: 0;
}

/* Final CTA Box */
.final-cta-box {
    background-color: var(--bg-tint);
    padding: 48px;
    border-radius: var(--border-radius-card);
    text-align: center;
    box-shadow: var(--shadow-dramatic);
}

.final-cta-box h2 {
    margin-bottom: 16px;
}

.final-cta-box p {
    margin-bottom: 24px;
}

/* Mission Page Story & Values */
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.quote-box {
    border-left: 4px solid var(--color-primary);
    padding: 16px 24px;
    margin: 30px 0;
    background-color: var(--bg-tint);
    border-radius: 0 var(--border-radius-card) var(--border-radius-card) 0;
}

.quote-box p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 18px;
    color: var(--color-primary);
    margin: 0;
}

.values-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.value-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(173, 20, 87, 0.08);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    margin: 0;
}

.manifesto-box {
    background-color: var(--color-secondary);
    color: var(--text-light);
    padding: 48px;
    border-radius: var(--border-radius-card);
    text-align: center;
    box-shadow: var(--shadow-dramatic);
    position: relative;
    overflow: hidden;
}

.manifesto-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--vintage-texture);
    opacity: 0.15;
}

.manifesto-box h2 {
    color: var(--text-light);
    margin-bottom: 16px;
}

.manifesto-box p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: clamp(16px, 3vw, 20px);
}

/* Contact Grid & Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info {
    background-color: var(--bg-tint);
    padding: 40px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
}

.info-item {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.info-icon {
    font-size: 24px;
}

.info-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.info-item p {
    margin: 0;
}

.work-hours {
    margin-top: 40px;
    border-top: 1px solid rgba(173, 20, 87, 0.15);
    padding-top: 24px;
}

.work-hours h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(173, 20, 87, 0.08);
}

.custom-form {
    margin-top: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(173, 20, 87, 0.2);
    border-radius: 8px;
    background-color: var(--bg-light);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    margin-bottom: 12px;
}

.updated-date {
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
    padding: 0;
}

.legal-section h2 {
    font-size: 22px;
    margin-bottom: 16px;
}

.legal-section ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-section li {
    margin-bottom: 8px;
}

.disclaimer-box {
    background-color: var(--bg-tint);
    border-left: 4px solid var(--color-primary);
    padding: 24px;
    border-radius: 0 var(--border-radius-card) var(--border-radius-card) 0;
}

/* Thank You Page */
.thank-page {
    padding: 100px 0;
}

.thank-box {
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
    text-align: center;
    border: 1px solid rgba(173, 20, 87, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.thank-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.thank-box h1 {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 16px;
}

.next-steps {
    text-align: left;
    background-color: var(--bg-tint);
    padding: 24px;
    border-radius: var(--border-radius-card);
    margin: 32px 0;
}

.next-steps h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.next-steps ul {
    padding-left: 20px;
}

.next-steps li {
    margin-bottom: 10px;
}

/* Footer Styles */
.site-footer {
    background-color: var(--color-secondary) !important;
    color: var(--text-light) !important;
    padding: 60px 0 20px 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--vintage-texture);
    opacity: 0.1;
    pointer-events: none;
}
.footer-contact p {color: #fff;}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-logo {
    color: var(--text-light) !important;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-grid h4 {
    color: var(--text-light) !important;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
}

.footer-grid li {
    margin-bottom: 12px;
}

.footer-grid a {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-grid a:hover {
    color: var(--text-light) !important;
    text-decoration: underline;
}

.footer-phone, .footer-email {
    color: var(--text-light) !important;
    font-weight: bold;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6) !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-accent);
    color: var(--text-light);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; color: var(--text-light); }
#cookie-banner a { color: var(--text-light); 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: 600;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
}
.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    font-weight: 600;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
}

/* Responsive Media Queries (Mobile-first) */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block; /* Показуємо hamburger на мобайлі */
    }

    .mobile-nav {
        display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    /* Анімація hamburger */
    #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);
    }
}

@media (min-width: 768px) {
    /* Hero Diagonal Split desktop styling */
    .hero-diagonal {
        grid-template-columns: 45% 55%;
    }
    
    .hero-content {
        padding: 60px 48px;
    }

    .hero-image-wrapper {
        height: auto;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    }

    /* Section Spacings */
    section {
        padding: 80px 0;
    }

    /* Benefits 5asymm layout */
    .benefits-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .benefit-card-large-1 {
        grid-column: span 3;
    }

    .benefit-card-large-2 {
        grid-column: span 3;
    }

    .benefit-card-small-1 {
        grid-column: span 2;
    }

    .benefit-card-small-2 {
        grid-column: span 2;
    }

    .benefit-card-small-3 {
        grid-column: span 2;
    }

    /* Gallery Grid 3 cols */
    .gallery-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Features Grid 3 cols */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Testimonials Vertical layout (stacked nicely in container) */
    .testimonials-list {
        max-width: 900px;
        margin: 0 auto;
    }

    /* Methodology page intro */
    .methodology-intro {
        grid-template-columns: 55% 45%;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Mission Story Split */
    .story-grid {
        grid-template-columns: 55% 45%;
    }

    /* Values Grid 2x2 */
    .values-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact Grid 2 cols */
    .contact-grid {
        grid-template-columns: 40% 60%;
    }

    /* Footer Grid desktop */
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

@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; }
}