/* 
   Color Palette: crimson-steel
   --color-primary: #7B1034;
   --color-secondary: #9B1B3E;
   --color-accent: #546E7A;
   --bg-tint: #FEF6F8;
   Design Style: warm-vintage
   Border Style: rounded
   Shadow Style: dramatic
   Color Mode: light
*/

:root {
    --color-primary: #7B1034;
    --color-secondary: #9B1B3E;
    --color-accent: #546E7A;
    --bg-tint: #FEF6F8;
    --color-text: #2C1E21;
    --color-text-light: #5C4B4E;
    --color-white: #FFFFFF;
    --font-heading: Georgia, 'Times New Roman', serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --border-radius-card: 16px;
    --border-radius-btn: 8px;
    --border-radius-circle: 50%;
    --shadow-dramatic: 0 24px 64px rgba(123, 16, 52, 0.12), 0 8px 16px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 32px 80px rgba(123, 16, 52, 0.20), 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* Base Reset & Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-tint);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(26px, 4vw, 40px);
    margin-bottom: 16px;
}

h3 {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-white);
    box-shadow: 0 4px 20px rgba(123, 16, 52, 0.05);
    z-index: 1000;
    border-bottom: 2px solid rgba(123, 16, 52, 0.08);
}

.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) !important;
    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;
    background-color: var(--color-primary);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.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: 600;
    color: var(--color-text-light);
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--color-white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(123, 16, 52, 0.08);
}

.mobile-nav a {
    font-weight: 600;
    color: var(--color-text);
    display: block;
    font-size: 18px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--border-radius-btn);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    box-shadow: 0 4px 12px rgba(123, 16, 52, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(123, 16, 52, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary) !important;
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: rgba(123, 16, 52, 0.05);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Vintage Badge */
.vintage-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(123, 16, 52, 0.08);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(123, 16, 52, 0.15);
}

/* Sections Base */
section {
    padding: 48px 16px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header-center {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.section-header-center h2 {
    position: relative;
    padding-bottom: 15px;
}

.section-header-center h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-accent);
}

/* Hero Section: Circle Image Layout */
.hero-section-circle {
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(123, 16, 52, 0.08);
    padding: 60px 16px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text-content {
    text-align: left;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-image-container {
    width: clamp(280px, 40vw, 450px);
    height: clamp(280px, 40vw, 450px);
    overflow: hidden;
    border-radius: var(--border-radius-circle);
    border: 8px solid var(--color-white);
    box-shadow: var(--shadow-dramatic);
    transition: transform 0.4s ease;
}

.circle-image-container:hover {
    transform: scale(1.02);
}

.hero-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section 1: Benefits Timeline */
.section-timeline {
    background-color: var(--bg-tint);
}

.timeline-vertical {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-vertical::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 3px;
    background-color: var(--color-accent);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(123, 16, 52, 0.2);
}

.timeline-content {
    background-color: var(--color-white);
    padding: 24px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(123, 16, 52, 0.05);
}

.timeline-content h3 {
    margin-bottom: 8px;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

/* Section 2: Icon Features */
.section-features {
    background-color: var(--color-white);
}

.features-grid-six {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-card {
    background-color: var(--bg-tint);
    padding: 32px 24px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
    transition: all 0.3s ease;
    border: 1px solid rgba(123, 16, 52, 0.05);
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    margin-bottom: 0;
}

/* Split Showcase Section */
.section-split-showcase {
    background-color: var(--bg-tint);
    padding: 60px 16px;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.split-image-side {
    width: 100%;
}

.split-showcase-img {
    width: 100%;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
}

.split-text-side {
    text-align: left;
}

/* Section 3: Accordion FAQ */
.section-accordion-faq {
    background-color: var(--color-white);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-details {
    background-color: var(--bg-tint);
    margin-bottom: 16px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(123, 16, 52, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-summary {
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 700;
    color: var(--color-primary);
    cursor: pointer;
    outline: none;
    user-select: none;
    position: relative;
    list-style: none; /* Hide default arrow */
}

.faq-summary::-webkit-details-marker {
    display: none; /* Hide default arrow Chrome */
}

.faq-summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.faq-details[open] .faq-summary::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-content {
    padding: 0 24px 20px 24px;
    border-top: 1px solid rgba(123, 16, 52, 0.05);
}

.faq-content p {
    margin: 16px 0 0 0;
}

/* Section 4: Quote Highlight */
.section-quote-highlight {
    background-color: var(--color-secondary);
    color: var(--color-white);
    text-align: center;
    padding: 80px 24px;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: 1;
    display: block;
    color: var(--color-accent);
    margin-bottom: -20px;
}

.section-quote-highlight blockquote {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3.5vw, 32px);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.4;
}

.section-quote-highlight cite {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    color: var(--bg-tint);
}

/* Section 5: Checklist Block */
.section-checklist {
    background-color: var(--color-white);
}

.checklist-grid-two {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.checklist-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checklist-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-icon {
    width: 28px;
    height: 28px;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(84, 110, 122, 0.2);
}

.checklist-item h4 {
    margin-bottom: 4px;
}

.checklist-item p {
    margin-bottom: 0;
}

/* PROGRAM PAGE STYLES */
.page-intro-section {
    background-color: var(--color-white);
    text-align: center;
    padding: 60px 16px;
    border-bottom: 1px solid rgba(123, 16, 52, 0.08);
}

.page-intro-section p {
    max-width: 800px;
    margin: 0 auto;
}

.section-methodology {
    background-color: var(--bg-tint);
}

.grid-two-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.methodology-text h2 {
    margin-bottom: 20px;
}

.methodology-img {
    width: 100%;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
}

/* Numbered Sections */
.section-numbered-program {
    background-color: var(--color-white);
}

.numbered-sections-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.numbered-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    background-color: var(--bg-tint);
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(123, 16, 52, 0.05);
}

.number-badge {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.numbered-content h3 {
    margin-bottom: 12px;
}

.numbered-content p:last-child {
    margin-bottom: 0;
}

/* Stats Section */
.section-stats {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 60px 16px;
}

.stats-grid-four {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 24px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--bg-tint);
    display: block;
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--bg-tint);
    margin-bottom: 0;
}

/* CTA Banner Section */
.section-cta-banner {
    background-color: var(--bg-tint);
    text-align: center;
    padding: 80px 24px;
}

.cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    margin-bottom: 16px;
}

.cta-banner-content p {
    margin-bottom: 24px;
}

/* MISSION PAGE STYLES */
.section-founder-story {
    background-color: var(--color-white);
}

.story-image-wrapper {
    width: 100%;
}

.story-main-img {
    width: 100%;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
}

.story-text-content h2 {
    margin-bottom: 20px;
}

.section-grid-values {
    background-color: var(--bg-tint);
}

.values-grid-three {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.value-card {
    background-color: var(--color-white);
    padding: 32px 24px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(123, 16, 52, 0.05);
}

.value-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    margin-bottom: 0;
}

.section-manifesto {
    background-color: var(--color-white);
}

.manifesto-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-tint);
    border-left: 6px solid var(--color-primary);
    padding: 40px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
}

.manifesto-box h2 {
    margin-bottom: 16px;
}

.manifesto-box p {
    margin-bottom: 0;
    font-size: 18px;
    font-style: italic;
}

/* CONTACT PAGE STYLES */
.section-contact-grid {
    background-color: var(--color-white);
    padding: 60px 16px;
}

.contact-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-card {
    display: flex;
    gap: 16px;
    background-color: var(--bg-tint);
    padding: 20px;
    border-radius: var(--border-radius-card);
    border: 1px solid rgba(123, 16, 52, 0.05);
}

.contact-detail-card .contact-icon {
    font-size: 28px;
}

.working-hours-box {
    margin-top: 16px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 24px;
    border-radius: var(--border-radius-card);
}

.working-hours-box h3 {
    color: var(--color-white);
    margin-bottom: 12px;
}

.working-hours-box p {
    color: var(--bg-tint);
    margin-bottom: 8px;
}

.contact-form-column {
    background-color: var(--bg-tint);
    padding: 32px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(123, 16, 52, 0.05);
}

.vintage-form .form-group {
    margin-bottom: 20px;
}

.vintage-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.vintage-form input,
.vintage-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(123, 16, 52, 0.2);
    border-radius: var(--border-radius-btn);
    background-color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.3s ease;
}

.vintage-form input:focus,
.vintage-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(123, 16, 52, 0.1);
}

/* LEGAL PAGES STYLES */
.legal-page-main {
    background-color: var(--color-white);
    padding: 60px 16px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.last-update {
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 32px;
}

.legal-section {
    margin-bottom: 40px;
    padding: 0;
}

.legal-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(123, 16, 52, 0.1);
    padding-bottom: 8px;
}

.disclaimer-box {
    background-color: var(--bg-tint);
    padding: 24px;
    border-radius: var(--border-radius-card);
    border-left: 4px solid var(--color-primary);
}

/* THANK PAGE STYLES */
.thank-page-main {
    background-color: var(--bg-tint);
    padding: 80px 16px;
}

.thank-container {
    max-width: 700px;
    margin: 0 auto;
}

.thank-card {
    background-color: var(--color-white);
    padding: 48px 32px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
    text-align: center;
    border: 1px solid rgba(123, 16, 52, 0.05);
}

.thank-badge-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: inline-block;
}

.vintage-divider {
    border: 0;
    height: 1px;
    background-color: rgba(123, 16, 52, 0.15);
    margin: 32px 0;
}

.thank-next-steps h3 {
    margin-bottom: 16px;
}

.thank-links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.thank-link-item {
    padding: 12px;
    background-color: var(--bg-tint);
    border-radius: var(--border-radius-btn);
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thank-link-item:hover {
    background-color: rgba(123, 16, 52, 0.08);
}

/* Footer Layout */
.site-footer {
    background-color: var(--color-secondary) !important;
    color: var(--color-white) !important;
    padding: 60px 16px 20px 16px;
    border-top: 4px solid var(--color-primary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-brand .logo {
    color: var(--color-white) !important;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 0;
}

.site-footer h4 {
    color: var(--color-white) !important;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-white) !important;
    text-decoration: underline;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--color-white) !important;
    font-weight: bold;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 14px;
    margin-bottom: 0;
}

/* 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;
    background-color: var(--color-white);
    border-top: 3px solid var(--color-primary);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 14px;
    color: var(--color-text);
}

#cookie-banner a {
    color: var(--color-primary);
    font-weight: bold;
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-decline {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.cookie-btn-accept:hover {
    background-color: var(--color-secondary);
}

.cookie-btn-decline {
    background-color: var(--bg-tint);
    color: var(--color-text);
    border: 1px solid rgba(123, 16, 52, 0.2);
}

.cookie-btn-decline:hover {
    background-color: rgba(123, 16, 52, 0.05);
}

/* 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: 600px) {
    .thank-links-grid {
        flex-direction: row;
        justify-content: center;
    }
}

@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;
    }
}

@media (min-width: 768px) {
    section {
        padding: 80px 24px;
    }

    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
    }

    .features-grid-six {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }

    .checklist-grid-two {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-two-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }

    .stats-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid-three {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid-container {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 60px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid-six {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid-four {
        grid-template-columns: repeat(4, 1fr);
    }

    .values-grid-three {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
}