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

  --max-w: 1280px;
  --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.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);

  --overlay: rgba(0, 0, 0, 0.75);
  --anim-duration: 300ms;
  --anim-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --random-number: 1;

  --brand: #0ea5e9;
  --brand-contrast: #ffffff;
  --accent: #f59e0b;
  --accent-contrast: #1c1917;

  --neutral-0: #ffffff;
  --neutral-100: #f8fafc;
  --neutral-300: #cbd5e1;
  --neutral-600: #475569;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #0a0f1a;
  --fg-on-page: #e2e8f0;

  --bg-alt: #1a2235;
  --fg-on-alt: #cbd5e1;

  --surface-1: #111827;
  --surface-2: #1e293b;
  --fg-on-surface: #e2e8f0;
  --border-on-surface: #334155;

  --surface-light: #1e293b;
  --fg-on-surface-light: #f1f5f9;
  --border-on-surface-light: #475569;

  --bg-primary: #0ea5e9;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #38bdf8;
  --ring: #0ea5e9;

  --bg-accent: rgba(245, 158, 11, 0.15);
  --fg-on-accent: #f59e0b;
  --bg-accent-hover: #fbbf24;

  --success: #10b981;
  --success-contrast: #ffffff;
  --warning: #f59e0b;
  --warning-contrast: #1c1917;
  --danger: #ef4444;
  --danger-contrast: #ffffff;

  --link: #60a5fa;
  --link-hover: #93c5fd;

  --gradient-hero: linear-gradient(135deg, #0a0f1a 0%, #1a2235 50%, #0f172a 100%);
  --gradient-accent: linear-gradient(90deg, #0ea5e9 0%, #3b82f6 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);}

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover,
.logo:focus {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    cursor: pointer;
    color: var(--fg-on-surface);
    background-color: var(--surface-light);
}

.menu-toggle-icon {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -6px;
}

.menu-toggle-icon::after {
    bottom: -6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
    display: block;
}

.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: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
}

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

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--anim-duration) var(--anim-ease);
    }

    .site-nav[data-state="open"] {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .social-links a:hover {
        background-color: #3498db;
    }

    .footer-nav,
    .legal-links {
        list-style: none;
        padding: 0;
    }

    .footer-nav li,
    .legal-links li {
        margin-bottom: 0.8rem;
    }

    .footer-nav a,
    .legal-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #3498db;
    }

    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #bdc3c7;
        text-decoration: none;
    }

    .contact-info a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        color: #95a5a6;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

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

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

    .cookie-banner__btn {
        padding: 0.5rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all .2s;
        white-space: nowrap;
    }

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.hero--light-v6 {
    font-family: var(--font-family);
    padding: 80px 20px;
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    background-image: url('https://images.pexels.com/photos/76969/cold-front-warm-front-hurricane-felix-76969.jpeg?auto=compress&cs=tinysrgb&w=800');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero--light-v6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 1;
}

.hero__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero__title {
    margin: 0 0 16px;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--neutral-0);
    text-shadow: var(--shadow-md);
}

.hero__subtitle {
    margin: 0 auto 32px;
    color: var(--neutral-300);
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.5;
    max-width: 600px;
}

.hero__actions {
    display: flex;
    gap: var(--gap);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--anim-duration) var(--anim-ease);
    border: 2px solid transparent;
}

.btn--primary {
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-fg);
}

.btn--primary:hover {
    background-color: var(--btn-primary-bg-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--ghost {
    background-color: var(--btn-ghost-bg);
    color: var(--btn-ghost-fg);
    border-color: var(--border-on-surface-light);
}

.btn--ghost:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--neutral-300);
    transform: translateY(-2px);
}

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

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

    .index-cta .index-cta__cta {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 20px;
        align-items: center;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: clamp(16px, 3vw, 28px);
        box-shadow: var(--shadow-md);
    }

    .index-cta .index-cta__btn {
        display: inline-block;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        padding: .9rem 1.2rem;
        border-radius: var(--radius-lg);
        font-weight: 500;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .index-cta .index-cta__btn:hover {
        background: var(--bg-primary-hover);
    }

    .index-cta h3 {
        margin: 0 0 .25rem;
        font-size: clamp(1.5rem, 2.5vw, 2rem);
        color: var(--fg-on-surface);
    }

    .index-cta p {
        margin: 0;
        color: var(--neutral-300);
        font-size: 1.1rem;
        line-height: var(--line-height-base);
    }

    @media (max-width: 767px) {
        .index-cta .index-cta__cta {
            grid-template-columns: 1fr;
            text-align: center;
            gap: var(--space-y);
        }
    }

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

    .index-features h2 {
        color: var(--bg-primary)
    }

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

    .index-features .index-features__grid {
        display: grid;
        gap: var(--space-x);
    }

    .index-features .index-features__feat {
        border: 1px dashed var(--ring);
        border-radius: var(--radius-md);
        padding: clamp(12px, 2vw, 20px);
        background: var(--bg-page);
    }

    .index-features .index-features__badge {
        background: var(--bg-accent);
        color: var(--neutral-600);
        border-radius: 999px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .index-features h3 {
        margin: .25rem 0 .35rem;
    }

    .index-features p {
        color: var(--neutral-600);
    }

    @media (max-width: 767px) {
        .index-features .index-features__grid {
            grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover,
.logo:focus {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    cursor: pointer;
    color: var(--fg-on-surface);
    background-color: var(--surface-light);
}

.menu-toggle-icon {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -6px;
}

.menu-toggle-icon::after {
    bottom: -6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
    display: block;
}

.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: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
}

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

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--anim-duration) var(--anim-ease);
    }

    .site-nav[data-state="open"] {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .social-links a:hover {
        background-color: #3498db;
    }

    .footer-nav,
    .legal-links {
        list-style: none;
        padding: 0;
    }

    .footer-nav li,
    .legal-links li {
        margin-bottom: 0.8rem;
    }

    .footer-nav a,
    .legal-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #3498db;
    }

    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #bdc3c7;
        text-decoration: none;
    }

    .contact-info a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        color: #95a5a6;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

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

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

    .cookie-banner__btn {
        padding: 0.5rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all .2s;
        white-space: nowrap;
    }

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.settings {
        font-family: var(--font-family);
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .settings .settings__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 64px);
    }

    .settings h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .settings .settings__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        opacity: 0.9;
        margin: 0;
    }

    .settings .settings__layout {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: clamp(32px, 5vw, 48px);
        align-items: start;
    }

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

    @media (max-width: 1023px) {
        .settings .settings__layout {
            grid-template-columns: 1fr;
        }
    }

    .settings .settings__sidebar {
        position: sticky;
        top: 20px;
    }

    .settings .settings__nav {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-lg);
        padding: clamp(16px, 2.5vw, 24px);
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .settings .settings__nav-link {
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 500;
    }

    .settings .settings__nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .settings .settings__nav-link.active {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
    }

    .settings .settings__nav-icon {
        font-size: 1.25rem;
        width: 24px;
        text-align: center;
    }

    .settings .settings__main {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
    }

    .settings .settings__panel {
        display: none;
    }

    .settings .settings__panel.active {
        display: block;
    }

    .settings .settings__panel h2 {
        margin: 0 0 clamp(24px, 4vw, 32px);
        font-size: clamp(24px, 3.5vw, 28px);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .settings .settings__avatar-section {
        display: flex;
        gap: clamp(20px, 3vw, 32px);
        align-items: center;
        margin-bottom: clamp(24px, 4vw, 32px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

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

    .settings .settings__avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: 700;
        border: 4px solid rgba(255, 255, 255, 0.3);
    }

    .settings .settings__avatar-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .settings .settings__upload-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.2);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        text-align: center;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .settings .settings__upload-btn input {
        display: none;
    }

    .settings .settings__upload-btn:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .settings .settings__remove-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: transparent;
        color: var(--fg-on-primary);
        border: 2px solid rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .settings .settings__remove-btn:hover {
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.1);
    }

    .settings .settings__form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 28px);
        margin-bottom: clamp(20px, 3vw, 28px);
    }

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

    @media (max-width: 767px) {
        .settings .settings__form-grid {
            grid-template-columns: 1fr;
        }
    }

    .settings .settings__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: clamp(20px, 3vw, 28px);
    }

.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;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover,
.logo:focus {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    cursor: pointer;
    color: var(--fg-on-surface);
    background-color: var(--surface-light);
}

.menu-toggle-icon {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -6px;
}

.menu-toggle-icon::after {
    bottom: -6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
    display: block;
}

.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: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
}

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

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--anim-duration) var(--anim-ease);
    }

    .site-nav[data-state="open"] {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .social-links a:hover {
        background-color: #3498db;
    }

    .footer-nav,
    .legal-links {
        list-style: none;
        padding: 0;
    }

    .footer-nav li,
    .legal-links li {
        margin-bottom: 0.8rem;
    }

    .footer-nav a,
    .legal-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #3498db;
    }

    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #bdc3c7;
        text-decoration: none;
    }

    .contact-info a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        color: #95a5a6;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

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

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

    .cookie-banner__btn {
        padding: 0.5rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all .2s;
        white-space: nowrap;
    }

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

    .activity .activity__h {
        margin-bottom: var(--space-y);
    }

    .activity h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0;
        color: var(--fg-on-primary);
    }

    .activity .activity__timeline {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        position: relative;
        padding-left: 2rem;
    }

    .activity .activity__timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--ring);
    }

    .activity .activity__item {
        position: relative;
        padding-left: 2rem;
    }

    .activity .activity__item::before {
        content: '';
        position: absolute;
        left: -1.625rem;
        top: 0.5rem;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--bg-primary);
        border: 2px solid var(--bg-page);
    }

    .activity .activity__date {
        color: var(--neutral-600);
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .activity .activity__content {
        background: var(--card-bg-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .activity h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 20px);
        color: var(--fg-on-primary);
    }

    .activity p {
        margin: 0;
        color: var(--neutral-600);
    }

.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;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover,
.logo:focus {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    cursor: pointer;
    color: var(--fg-on-surface);
    background-color: var(--surface-light);
}

.menu-toggle-icon {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -6px;
}

.menu-toggle-icon::after {
    bottom: -6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
    display: block;
}

.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: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
}

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

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--anim-duration) var(--anim-ease);
    }

    .site-nav[data-state="open"] {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .social-links a:hover {
        background-color: #3498db;
    }

    .footer-nav,
    .legal-links {
        list-style: none;
        padding: 0;
    }

    .footer-nav li,
    .legal-links li {
        margin-bottom: 0.8rem;
    }

    .footer-nav a,
    .legal-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #3498db;
    }

    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #bdc3c7;
        text-decoration: none;
    }

    .contact-info a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        color: #95a5a6;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

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

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

    .cookie-banner__btn {
        padding: 0.5rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all .2s;
        white-space: nowrap;
    }

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.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;
        }
    }

.form--light-v6 {
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.form__inner {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.form__title {
    margin: 0 0 6px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--fg-on-page);
}

.form__text {
    margin: 0 0 32px;
    color: var(--neutral-300);
    line-height: var(--line-height-base);
}

.contact-form {
    text-align: left;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: var(--space-y);
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--fg-on-page);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--surface-1);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    transition: border-color var(--anim-duration) var(--anim-ease);
    box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--neutral-600);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--ring);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-fg);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.form-submit-btn:hover {
    background-color: var(--btn-primary-bg-hover);
}

.form-footer {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-on-surface);
    color: var(--neutral-300);
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-footer-text {
    margin: 8px 0;
}

.form-footer-text a {
    color: var(--link);
    text-decoration: none;
}

.form-footer-text a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

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

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

    .contact-map .header-section {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .contact-map .header-section h2 {
        margin: 0 0 .5rem;
        font-size: clamp(24px, 4vw, 40px);
        color: var(--fg-on-page);
    }

    .contact-map .header-section p {
        margin: 0;
        color: var(--neutral-300);
    }

    .contact-map .map-section {
        margin-bottom: 2.5rem;
    }

    .contact-map .map-wrapper {
        width: 100%;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        border: 3px solid var(--surface-2);
    }

    .contact-map .map-wrapper iframe {
        display: block;
        width: 100%;
        height: 480px;
        border: 0;
    }

    .contact-map .contacts-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .contact-map .contact-card {
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-lg);
        padding: clamp(14px, 2vw, 20px);
        text-align: center;
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease);
        border: 1px solid var(--border-on-surface);
    }

    .contact-map .contact-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: var(--brand);
    }

    .contact-map .contact-card .icon {
        font-size: 2rem;
        margin-bottom: .75rem;
    }

    .contact-map .contact-card h4 {
        margin: 0 0 .5rem;
        font-size: .95rem;
        opacity: .9;
        color: var(--neutral-300);
    }

    .contact-map .contact-card p {
        margin: 0;
        font-size: .9rem;
        color: var(--fg-on-surface);
        line-height: 1.5;
    }

    @media (max-width: 1023px) {
        .contact-map .contacts-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 767px) {
        .contact-map .contacts-grid {
            grid-template-columns: 1fr;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover,
.logo:focus {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    cursor: pointer;
    color: var(--fg-on-surface);
    background-color: var(--surface-light);
}

.menu-toggle-icon {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -6px;
}

.menu-toggle-icon::after {
    bottom: -6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
    display: block;
}

.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: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
}

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

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--anim-duration) var(--anim-ease);
    }

    .site-nav[data-state="open"] {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .social-links a:hover {
        background-color: #3498db;
    }

    .footer-nav,
    .legal-links {
        list-style: none;
        padding: 0;
    }

    .footer-nav li,
    .legal-links li {
        margin-bottom: 0.8rem;
    }

    .footer-nav a,
    .legal-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #3498db;
    }

    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #bdc3c7;
        text-decoration: none;
    }

    .contact-info a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        color: #95a5a6;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

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

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

    .cookie-banner__btn {
        padding: 0.5rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all .2s;
        white-space: nowrap;
    }

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

    .policy-items__grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }

    .policy-items__card {
        padding: 1.75rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .policy-items__card h3 {
        margin: 0 0 1rem;
        font-size: clamp(18px, 2.5vw, 22px);
        color: var(--fg-on-page);
    }

    .policy-items__text {
        font-size: .95rem;
        color: var(--neutral-300);
        line-height: 1.7;
    }

    @media (min-width: 768px) {
        .policy-items__grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .policy-items__grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover,
.logo:focus {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    cursor: pointer;
    color: var(--fg-on-surface);
    background-color: var(--surface-light);
}

.menu-toggle-icon {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -6px;
}

.menu-toggle-icon::after {
    bottom: -6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
    display: block;
}

.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: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
}

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

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--anim-duration) var(--anim-ease);
    }

    .site-nav[data-state="open"] {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .social-links a:hover {
        background-color: #3498db;
    }

    .footer-nav,
    .legal-links {
        list-style: none;
        padding: 0;
    }

    .footer-nav li,
    .legal-links li {
        margin-bottom: 0.8rem;
    }

    .footer-nav a,
    .legal-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #3498db;
    }

    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #bdc3c7;
        text-decoration: none;
    }

    .contact-info a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        color: #95a5a6;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

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

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

    .cookie-banner__btn {
        padding: 0.5rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all .2s;
        white-space: nowrap;
    }

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .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;
        }
    }

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

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

    }

    .policy-contacts__grid {
        display: grid;
        gap: var(--space-y);
    }

    .policy-contacts .policy-contacts__card {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-md);
    }

    .policy-contacts .policy-contacts__card h4 {
        color: var(--brand);
        margin-top: 0;
        margin-bottom: var(--gap);
        font-size: 1.5rem;
    }

    .policy-contacts .policy-contacts__card p {
        color: var(--fg-on-surface);
        line-height: var(--line-height-base);
        margin: 0;
    }

    .policy-contacts .policy-contacts__list {
        list-style: none;
        padding: 0;
        display: grid;
        gap: 1rem;
        margin: 1rem 0;
        color: var(--fg-on-alt);
        background: var(--surface-2);
        border-radius: var(--radius-md);
        padding: clamp(16px, 2vw, 24px);
        border: 1px solid var(--border-on-surface);
    }

    .policy-contacts .policy-contacts__list div {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        align-items: baseline;
    }

    .policy-contacts .policy-contacts__list strong {
        color: var(--neutral-300);
        min-width: 100px;
    }

    .policy-contacts .policy-contacts__list a {
        color: var(--link);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .policy-contacts .policy-contacts__list a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    .policy-contacts .policy-contacts__list {
        position: relative;
    }

    .policy-contacts .policy-contacts__list::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: var(--gradient-accent);
        transform-origin: left;
        transform: scaleX(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .policy-contacts .policy-contacts__list:hover::after {
        transform: scaleX(1);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover,
.logo:focus {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    cursor: pointer;
    color: var(--fg-on-surface);
    background-color: var(--surface-light);
}

.menu-toggle-icon {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -6px;
}

.menu-toggle-icon::after {
    bottom: -6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
    display: block;
}

.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: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
}

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

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--anim-duration) var(--anim-ease);
    }

    .site-nav[data-state="open"] {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .social-links a:hover {
        background-color: #3498db;
    }

    .footer-nav,
    .legal-links {
        list-style: none;
        padding: 0;
    }

    .footer-nav li,
    .legal-links li {
        margin-bottom: 0.8rem;
    }

    .footer-nav a,
    .legal-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #3498db;
    }

    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #bdc3c7;
        text-decoration: none;
    }

    .contact-info a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        color: #95a5a6;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

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

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

    .cookie-banner__btn {
        padding: 0.5rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all .2s;
        white-space: nowrap;
    }

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.thanks {
        font-family: var(--font-family);
        background: var(--gradient-accent);
        color: var(--bg-accent);
        padding: clamp(40px, 8vw, 96px) clamp(16px, 4vw, 56px);
    }

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

    .thanks__icon {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        margin: 0 auto 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
        font-size: 1.8rem;
    }

    .thanks h1 {
        font-size: clamp(28px, 5vw, 44px);
        margin: 0 0 0.75rem;
        color: var(--bg-accent);
    }

    .thanks p {
        margin: 0 0 1rem;
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.9;
    }

    .thanks__meta {
        font-size: 0.9rem;
        opacity: 0.8;
        margin-bottom: 2.25rem;
    }

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

    .thanks__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);
    }

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

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

    .thanks__btn--ghost {
        background: transparent;
        color: var(--bg-accent);
        border: 1px solid rgba(255,255,255,0.6);
    }

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover,
.logo:focus {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    cursor: pointer;
    color: var(--fg-on-surface);
    background-color: var(--surface-light);
}

.menu-toggle-icon {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -6px;
}

.menu-toggle-icon::after {
    bottom: -6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
    display: block;
}

.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: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
}

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

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--anim-duration) var(--anim-ease);
    }

    .site-nav[data-state="open"] {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .social-links a:hover {
        background-color: #3498db;
    }

    .footer-nav,
    .legal-links {
        list-style: none;
        padding: 0;
    }

    .footer-nav li,
    .legal-links li {
        margin-bottom: 0.8rem;
    }

    .footer-nav a,
    .legal-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #3498db;
    }

    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #bdc3c7;
        text-decoration: none;
    }

    .contact-info a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        color: #95a5a6;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

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

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

    .cookie-banner__btn {
        padding: 0.5rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all .2s;
        white-space: nowrap;
    }

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.error-404 {
        font-family: var(--font-family);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(40px, 8vw, 96px) clamp(16px, 4vw, 56px);
    }

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

    .error-404__badge {
        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: 1rem;
    }

    .error-404 h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.5rem;
    }

    .error-404__subtitle {
        margin: 0 0 2rem;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        color: var(--neutral-100);
    }

    .error-404__code {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-xl);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 600;
        letter-spacing: 0.1em;
        margin-bottom: 2.5rem;
        box-shadow: var(--shadow-md);
    }

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

    .error-404__btn {
        display: inline-block;
        text-decoration: none;
        padding: 0.9rem 1.4rem;
        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(--fg-on-accent);
        color: var(--bg-accent);
        box-shadow: var(--shadow-lg);
    }

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

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

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

    @media (max-width: 767px) {
        .error-404__actions {
            flex-direction: column;
        }

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