:root {
  --font-family: "Playfair Display", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;

  --max-w: 1200px;
  --space-x: 24px;
  --space-y: 20px;
  --gap: 16px;

  --radius-xl: 16px;
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 4px;

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.12);

  --overlay: rgba(0,0,0,0.4);
  --anim-duration: 0.3s;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #4A6FA5;
  --brand-contrast: #FFFFFF;
  --accent: #6B8CBC;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F7FAFC;
  --neutral-300: #E2E8F0;
  --neutral-600: #718096;
  --neutral-800: #2D3748;
  --neutral-900: #1A202C;

  --bg-page: #F9FBFF;
  --fg-on-page: #2D3748;

  --bg-alt: #FFFFFF;
  --fg-on-alt: #4A5568;

  --surface-1: #FFFFFF;
  --surface-2: #F7FAFC;
  --fg-on-surface: #2D3748;
  --border-on-surface: #E2E8F0;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #4A5568;
  --border-on-surface-light: #EDF2F7;

  --bg-primary: #4A6FA5;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #3A5F95;
  --ring: #4A6FA5;

  --bg-accent: #F0F4F8;
  --fg-on-accent: #2D3748;
  --bg-accent-hover: #5A7CA8;

  --success: #48BB78;
  --success-contrast: #FFFFFF;
  --warning: #ED8936;
  --warning-contrast: #FFFFFF;
  --danger: #F56565;
  --danger-contrast: #FFFFFF;

  --link: #4A6FA5;
  --link-hover: #3A5F95;

  --gradient-hero: linear-gradient(135deg, #4A6FA5 0%, #6B8CBC 100%);
  --gradient-accent: linear-gradient(135deg, #F0F4F8 0%, #E8EEF5 100%);

  --btn-primary-bg: var(--bg-primary);
  --btn-primary-fg: var(--fg-on-primary);
  --btn-primary-bg-hover: var(--bg-primary-hover);

  --btn-ghost-bg: transparent;
  --btn-ghost-fg: var(--fg-on-page);
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);

  --card-bg-dark: var(--surface-1);
  --card-fg-dark: var(--fg-on-surface);
  --card-border-dark: var(--border-on-surface);

  --card-bg-light: var(--surface-light);
  --card-fg-light: var(--fg-on-surface-light);
  --card-border-light: var(--border-on-surface-light);

  --chip-bg: rgba(255,255,255,0.08);
  --chip-fg: var(--fg-on-page);

  --input-bg: var(--surface-2);
  --input-fg: var(--fg-on-surface);
  --input-border: var(--border-on-surface);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);}

.header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    background: var(--bg-alt);
    color: var(--fg-on-alt);
}

.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-y);
    gap: 4px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--fg-on-surface);
    transition: all var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        padding: var(--space-y);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 40px 0 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section {
    margin-bottom: 30px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #2c5530;
}

address p {
    margin-bottom: 8px;
    color: #555;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2c5530;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #2c5530;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
        color: var(--fg-on-accent);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,.2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255,255,255,.1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.index-hero {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(32px, 6vw, 96px) clamp(16px, 4vw, 40px);
        background-image: url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .index-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--overlay);
    }

    .index-hero .index-hero__c {
        max-width: var(--max-w);
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .index-hero .index-hero__eyebrow {
        display: inline-block;
        padding: .35rem .7rem;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 600;
        margin-bottom: .75rem;
    }

    .index-hero h1 {
        font-size: clamp(30px, 6.5vw, 72px);
        margin: .1em 0 .3em;
        color: var(--neutral-0);
        background: transparent;
    }

    .index-hero p {
        max-width: 60ch;
        margin: 0 auto 1.25rem;
        color: var(--neutral-100);
        background: transparent;
        font-size: 1.2rem;
    }

    .index-hero .index-hero__form {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 1rem;
    }

    .index-hero input {
        padding: .9rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        min-width: 260px;
        outline: none;
        background: var(--neutral-0);
        color: var(--neutral-800);
    }

    .index-hero button {
        padding: .95rem 1.3rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 0;
        cursor: pointer;
        box-shadow: var(--shadow-md);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .index-hero button:hover {
        transform: translateY(-2px);
        background: var(--bg-primary-hover);
    }

    @media (max-width: 767px) {
        .index-hero .index-hero__form {
            flex-direction: column;
        }

        .index-hero input {
            min-width: auto;
            width: 100%;
        }
    }

.index-cta {
        font-family: var(--font-family);
        color: white;
        background: var(--bg-primary);
        padding: clamp(28px, 5vw, 72px) clamp(16px, 3vw, 40px);
    }

    .index-cta .index-cta__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .index-cta .index-cta__row {
        text-align: center;
    }

    .index-cta h2 {
        font-size: clamp(22px, 4.5vw, 40px);
        margin: 0 0 .3rem;
    }

    .index-cta p {
        color: var(--fg-on-page);
        margin: 2rem 0;
    }

    .index-cta .index-cta__actions {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .index-cta .index-cta__btn {
        display: inline-block;
        text-decoration: none;
        padding: .85rem 1.2rem;
        border-radius: var(--radius-lg);
        transition: transform .2s;
        background: var(--bg-accent)
    }

    .index-cta .index-cta__btn.index-cta__primary {
        background: #fff;
        color: black;
        box-shadow: var(--shadow-md);
    }

    .index-cta .index-cta__btn.index-cta__ghost {
        border: 1px solid rgba(255, 255, 255, .5);
        color: var(--fg-on-page);
    }

    .index-cta .index-cta__btn:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 767px) {
        .index-cta .index-cta__actions {
            flex-direction: column;
        }
        
        .index-cta .index-cta__btn {
            width: 100%;
            text-align: center;
        }
    }

.index-features {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-primary);
        padding: clamp(16px, 3vw, 40px);
    }

    .index-features .index-features__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: clamp(18px, 3vw, 32px);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .index-features .index-features__c>*:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .index-features .index-features__row {
        display: grid;
        gap: 24px;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        background: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.4vw, 28px);
        backdrop-filter: blur(8px);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .index-features .index-features__row>*:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .index-features .index-features__row:nth-child(even) {
        grid-auto-flow: dense;
        direction: rtl;
    }

    .index-features .index-features__row:nth-child(even) .index-features__txt {
        direction: ltr;
    }

    .index-features figure img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .index-features h3 {
        margin: 0 0 .4rem;
        font-size: clamp(20px, 3vw, 28px);
        color: var(--bg-primary)
    }

    .index-features p {
        margin: 0;
        color: var(--bg-primary)
    }

    @media (max-width: 767px) {
        .index-features .index-features__row {
            grid-template-columns: 1fr;
        }

        .index-features .index-features__row:nth-child(even) {
            direction: ltr;
        }
    }

.contact-support {
        font-family: var(--font-family);
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .contact-support .c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .contact-support .banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-lg);
    }

    .contact-support .btn {
        background: var(--fg-on-page);
        text-align: center;
        color: var(--bg-page);
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
    }

    .contact-support .txt {
        margin: .8rem 0 0;
        color: var(--fg-on-page);
    }

    @media (max-width: 767px) {
        .contact-support .banner {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
    }

.header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    background: var(--bg-alt);
    color: var(--fg-on-alt);
}

.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-y);
    gap: 4px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--fg-on-surface);
    transition: all var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        padding: var(--space-y);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 40px 0 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section {
    margin-bottom: 30px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #2c5530;
}

address p {
    margin-bottom: 8px;
    color: #555;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2c5530;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #2c5530;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
        color: var(--fg-on-accent);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,.2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255,255,255,.1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.advantages {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-alt);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

    .advantages .advantages__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .advantages .advantages__header {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .advantages .advantages__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-alt);
    }

    .advantages .advantages__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .advantages .advantages__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: clamp(24px, 4vw, 40px);
    }

    .advantages .advantages__item {
        text-align: center;
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
    }

    .advantages .advantages__icon {
        font-size: clamp(48px, 8vw, 80px);
        margin: 0 auto clamp(16px, 3vw, 24px);
        display: flex;
        align-items: center;
        justify-content: center;
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        background: var(--bg-accent);
        border-radius: 50%;
    }

    .advantages .advantages__item h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
    }

    .advantages .advantages__item p {
        font-size: clamp(14px, 2vw, 16px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

.about-mission {
        font-family: var(--font-family);
        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .about-mission .about-mission__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-mission .about-mission__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: 1fr 1fr;
    }

    .about-mission p {
        color: var(--neutral-600);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__grid {
            grid-template-columns: 1fr;
        }
    }

.our-story {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-alt);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

    .our-story .our-story__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .our-story .our-story__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(24px, 4vw, 48px);
        align-items: center;
    }

    .our-story .our-story__text h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-alt);
    }

    .our-story .our-story__text p {
        font-size: clamp(16px, 2vw, 18px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0 0 1rem;
    }

    .our-story .our-story__image {
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .our-story .our-story__image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    @media (max-width: 768px) {
        .our-story .our-story__content {
            grid-template-columns: 1fr;
        }
    }

.header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    background: var(--bg-alt);
    color: var(--fg-on-alt);
}

.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-y);
    gap: 4px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--fg-on-surface);
    transition: all var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        padding: var(--space-y);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 40px 0 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section {
    margin-bottom: 30px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #2c5530;
}

address p {
    margin-bottom: 8px;
    color: #555;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2c5530;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #2c5530;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
        color: var(--fg-on-accent);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,.2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255,255,255,.1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.index-features {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-primary);
        padding: clamp(16px, 3vw, 40px);
    }

    .index-features .index-features__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: clamp(18px, 3vw, 32px);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .index-features .index-features__c>*:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .index-features .index-features__row {
        display: grid;
        gap: 24px;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        background: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.4vw, 28px);
        backdrop-filter: blur(8px);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .index-features .index-features__row>*:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .index-features .index-features__row:nth-child(even) {
        grid-auto-flow: dense;
        direction: rtl;
    }

    .index-features .index-features__row:nth-child(even) .index-features__txt {
        direction: ltr;
    }

    .index-features figure img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .index-features h3 {
        margin: 0 0 .4rem;
        font-size: clamp(20px, 3vw, 28px);
        color: var(--bg-primary)
    }

    .index-features p {
        margin: 0;
        color: var(--bg-primary)
    }

    @media (max-width: 767px) {
        .index-features .index-features__row {
            grid-template-columns: 1fr;
        }

        .index-features .index-features__row:nth-child(even) {
            direction: ltr;
        }
    }

.services-process {
        font-family: var(--font-family);
        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .services-process .services-process__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .services-process .services-process__tl {
        position: relative;
        margin-left: 24px;
        display: grid;
        gap: 18px;
    }

    .services-process .services-process__tl::before {
        content: '';
        position: absolute;
        left: -12px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--ring);
    }

    .services-process .services-process__dot {
        display: block;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--bg-primary);
        position: absolute;
        left: -18px;
        margin-top: .9rem;
    }

    .services-process .services-process__box {
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        padding: .8rem 1rem;
        box-shadow: var(--shadow-sm);
    }

    .services-process p {
        margin: .25rem 0 0;
        color: var(--neutral-600);
    }

.header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    background: var(--bg-alt);
    color: var(--fg-on-alt);
}

.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-y);
    gap: 4px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--fg-on-surface);
    transition: all var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        padding: var(--space-y);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 40px 0 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section {
    margin-bottom: 30px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #2c5530;
}

address p {
    margin-bottom: 8px;
    color: #555;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2c5530;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #2c5530;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
        color: var(--fg-on-accent);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,.2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255,255,255,.1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.contact-form {
        font-family: var(--font-family);
        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .contact-form .c {
        max-width: min(720px, var(--max-w));
        margin: 0 auto;
    }

    .contact-form .h h2 {
        margin: 0 0 .25rem;
        font-size: clamp(22px, 4vw, 36px);
        color: black
    }

    .contact-form .h p {
        margin: 1rem 0;
        color: var(--neutral-600);
    }

    .contact-form .f {
        display: grid;
        gap: 12px;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-xl);
        padding: clamp(14px, 2.5vw, 26px);
        box-shadow: var(--shadow-sm);
    }

    .contact-form .row {
        display: grid;
        gap: 6px;
    }

    .contact-form label {
        font-size: .9rem;
        opacity: .85;
    }

    .contact-form input:not([type="checkbox"]), .contact-form textarea {
        width: 100%;
        padding: .85rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        background: #fff;
        transition: box-shadow .2s, transform .15s;
        box-sizing: border-box;
    }

    .contact-form input:focus, .contact-form textarea:focus {
        box-shadow: 0 0 0 3px var(--bg-accent);
        transform: translateY(-1px);
        outline: none;
    }

    .contact-form .agree {
        display: flex;
        align-items: center;
        gap: .5rem;
        font-size: .9rem;
        color: var(--neutral-600);
    }

    .contact-form button {
        padding: .9rem 1.2rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 0;
        cursor: pointer;
        transition: transform .2s;
    }

    .contact-form button:hover {
        transform: translateY(-2px);
    }

.contact-support {
        font-family: var(--font-family);
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .contact-support .c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .contact-support .banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-lg);
    }

    .contact-support .btn {
        background: var(--fg-on-page);
        text-align: center;
        color: var(--bg-page);
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
    }

    .contact-support .txt {
        margin: .8rem 0 0;
        color: var(--fg-on-page);
    }

    @media (max-width: 767px) {
        .contact-support .banner {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
    }

.header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    background: var(--bg-alt);
    color: var(--fg-on-alt);
}

.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-y);
    gap: 4px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--fg-on-surface);
    transition: all var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        padding: var(--space-y);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 40px 0 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section {
    margin-bottom: 30px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #2c5530;
}

address p {
    margin-bottom: 8px;
    color: #555;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2c5530;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #2c5530;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
        color: var(--fg-on-accent);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,.2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255,255,255,.1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.policy-items {
        font-family: var(--font-family);
        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .policy-items__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .policy-items__h {
        text-align: center;
        margin-bottom: 3rem;
    }

    .policy-items__h h1 {
        margin: 0 0 .5rem;
        font-size: clamp(28px, 5vw, 48px);
        color: black;
    }

    .policy-items__h p {
        margin: 0;
        font-size: var(--gap);
        color: var(--neutral-600);
    }

    .policy-items__list {
        display: grid;
        gap: 2rem;
    }

    .policy-items__item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
    }

    .policy-items__num {
        width: 3rem;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: 1.25rem;
        font-weight: 600;
        flex-shrink: 0;
    }

    .policy-items__content h3 {
        margin: 0 0 .75rem;
        font-size: clamp(18px, 3vw, 24px);
        color: var(--fg-on-page);
    }

    .policy-items__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

    @media (max-width: 767px) {
        .policy-items__item {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .policy-items__num {
            width: 2.5rem;
            height: 2.5rem;
            font-size: 1rem;
        }
    }

.policy-contacts {
        font-family: var(--font-family);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(16px, 3vw, 40px);
    }

    .policy-contacts__c {
        max-width: var(--max-w);
        margin: 0 auto;

    }

    .policy-contacts .policy-contacts__banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-xl);
        padding: clamp(12px, 2vw, 20px);
    }

    .policy-contacts .policy-contacts__btn {
        background: var(--fg-on-page);
        color: var(--bg-page);
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
    }

    .policy-contacts .policy-contacts__txt {
        margin: .8rem 0 0;
        opacity: .9;
    }

.header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    background: var(--bg-alt);
    color: var(--fg-on-alt);
}

.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-y);
    gap: 4px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--fg-on-surface);
    transition: all var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        padding: var(--space-y);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 40px 0 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section {
    margin-bottom: 30px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #2c5530;
}

address p {
    margin-bottom: 8px;
    color: #555;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2c5530;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #2c5530;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
        color: var(--fg-on-accent);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,.2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255,255,255,.1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.terms-items {
        font-family: var(--font-family);
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .terms-items__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .terms-items h1 {
        margin: 0 0 2.5rem;
        font-size: clamp(28px, 5vw, 48px);
        color: var(--fg-on-page);
        text-align: center;
    }

    .terms-items__wrapper {
        display: grid;
        gap: 1.25rem;
    }

    .terms-items__item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        padding: 1.75rem;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        align-items: start;
    }

    .terms-items__icon {
        font-size: 2rem;
        flex-shrink: 0;
    }

    .terms-items__content h3 {
        margin: 0 0 .75rem;
        font-size: clamp(20px, 3vw, 24px);
        color: var(--fg-on-primary);
    }

    .terms-items__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--fg-on-primary);
        opacity: .95;
        line-height: 1.7;
    }

    @media (max-width: 767px) {
        .terms-items__item {
            grid-template-columns: 1fr;
            gap: 1rem;
            padding: 1.5rem;
        }
    }

.header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    background: var(--bg-alt);
    color: var(--fg-on-alt);
}

.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-y);
    gap: 4px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--fg-on-surface);
    transition: all var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        padding: var(--space-y);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 40px 0 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section {
    margin-bottom: 30px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #2c5530;
}

address p {
    margin-bottom: 8px;
    color: #555;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2c5530;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #2c5530;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
        color: var(--fg-on-accent);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,.2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255,255,255,.1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.thanks {
        font-family: var(--font-family);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(36px, 7vw, 80px) clamp(16px, 4vw, 56px);
    }

    .thanks__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .thanks__layout {
        display: grid;
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
        gap: clamp(20px, 4vw, 40px);
        align-items: center;
    }

    .thanks__chip {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        border-radius: 999px;
        background: var(--chip-bg);
        color: var(--chip-fg);
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .thanks__content h1 {
        font-size: clamp(26px, 4.5vw, 40px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-primary);
    }

    .thanks__content p {
        margin: 0 0 1.75rem;
        opacity: 0.9;
    }

    .thanks__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .thanks__btn {
        display: inline-block;
        text-decoration: none;
        padding: 0.85rem 1.3rem;
        border-radius: var(--radius-lg);
        font-weight: 500;
        transition: background var(--anim-duration) var(--anim-ease),
        color var(--anim-duration) var(--anim-ease),
        transform var(--anim-duration) var(--anim-ease),
        box-shadow var(--anim-duration) var(--anim-ease);
    }

    .thanks__btn--primary {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: var(--shadow-md);
    }

    .thanks__btn--primary:hover {
        transform: translateY(-2px);
    }

    .thanks__btn--ghost {
        background: transparent;
        color: var(--fg-on-primary);
        border: 1px solid rgba(0,0,0,0.12);
    }

    .thanks__btn--ghost:hover {
        background: rgba(0,0,0,0.04);
        transform: translateY(-2px);
    }

    .thanks__side {
        display: flex;
        justify-content: center;
    }

    .thanks__card {
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        border-radius: var(--radius-xl);
        padding: 1.4rem 1.6rem;
        box-shadow: var(--shadow-lg);
        min-width: 240px;
    }

    .thanks__label {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        margin-bottom: 0.75rem;
        opacity: 0.7;
    }

    .thanks__row {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .thanks__row--muted {
        opacity: 0.8;
        font-size: 0.9rem;
    }

    @media (max-width: 767px) {
        .thanks__layout {
            grid-template-columns: minmax(0, 1fr);
        }

        .thanks__actions {
            flex-direction: column;
        }

        .thanks__btn {
            width: 100%;
            text-align: center;
        }

        .thanks__side {
            order: -1;
        }
    }

.header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    background: var(--bg-alt);
    color: var(--fg-on-alt);
}

.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-y);
    gap: 4px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--fg-on-surface);
    transition: all var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        padding: var(--space-y);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 40px 0 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section {
    margin-bottom: 30px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #2c5530;
}

address p {
    margin-bottom: 8px;
    color: #555;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2c5530;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #2c5530;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
        color: var(--fg-on-accent);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,.2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255,255,255,.1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.error-404 {
        font-family: var(--font-family);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        padding: clamp(36px, 7vw, 80px) clamp(16px, 4vw, 56px);
    }

    .error-404__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .error-404__grid {
        display: grid;
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
        gap: clamp(24px, 4vw, 40px);
        align-items: center;
    }

    .error-404__content h1 {
        font-size: clamp(30px, 5vw, 46px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-accent);
    }

    .error-404__content p {
        margin: 0 0 1.8rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
    }

    .error-404__eyebrow {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        margin-bottom: 0.5rem;
        opacity: 0.85;
    }

    .error-404__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .error-404__btn {
        display: inline-block;
        text-decoration: none;
        padding: 0.85rem 1.3rem;
        border-radius: var(--radius-lg);
        font-weight: 500;
        transition: transform var(--anim-duration) var(--anim-ease),
        box-shadow var(--anim-duration) var(--anim-ease),
        background var(--anim-duration) var(--anim-ease),
        color var(--anim-duration) var(--anim-ease);
    }

    .error-404__btn--primary {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .error-404__btn--primary:hover {
        transform: translateY(-2px);
        background: var(--bg-primary-hover);
    }

    .error-404__btn--ghost {
        background: rgba(255,255,255,0.08);
        color: var(--fg-on-accent);
        border: 1px solid rgba(255,255,255,0.4);
    }

    .error-404__btn--ghost:hover {
        transform: translateY(-2px);
        background: rgba(255,255,255,0.14);
    }

    .error-404__visual {
        display: flex;
        justify-content: center;
    }

    .error-404__bubble {
        position: relative;
        padding: 2.5rem 2rem;
        border-radius: 32px;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        box-shadow: var(--shadow-lg);
        text-align: center;
        min-width: 220px;
    }

    .error-404__code {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        margin-bottom: 0.25rem;
    }

    .error-404__label {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        opacity: 0.8;
    }

    @media (max-width: 767px) {
        .error-404__grid {
            grid-template-columns: minmax(0, 1fr);
        }

        .error-404__actions {
            flex-direction: column;
        }

        .error-404__btn {
            width: 100%;
            text-align: center;
        }

        .error-404__visual {
            order: -1;
        }
    }