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

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

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

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

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

  --brand: #0056B3;
  --brand-contrast: #FFFFFF;
  --accent: #00A86B;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F9FA;
  --neutral-300: #DEE2E6;
  --neutral-600: #6C757D;
  --neutral-800: #343A40;
  --neutral-900: #212529;

  --bg-page: #FFFFFF;
  --fg-on-page: #212529;

  --bg-alt: #F8F9FA;
  --fg-on-alt: #343A40;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #212529;
  --border-on-surface: #DEE2E6;

  --surface-light: rgba(255, 255, 255, 0.95);
  --fg-on-surface-light: #212529;
  --border-on-surface-light: rgba(222, 226, 230, 0.7);

  --bg-primary: #0056B3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004494;
  --ring: rgba(0, 86, 179, 0.4);

  --bg-accent: rgba(0, 168, 107, 0.1);
  --fg-on-accent: #00A86B;
  --bg-accent-hover: #008F5A;

  --link: #0056B3;
  --link-hover: #004494;

  --gradient-hero: linear-gradient(135deg, #0056B3 0%, #003D82 100%);
  --gradient-accent: linear-gradient(135deg, #00A86B 0%, #008F5A 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.08);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}

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

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

.header-logo .logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header-logo .logo-link:hover {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.nav-link:active {
    background-color: var(--neutral-300);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: calc(var(--space-y) * 3) var(--space-x);
        z-index: 1000;
        overflow-y: auto;
    }

    .header-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }

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

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 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: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        opacity: 0.8;
        margin-top: 0.5rem;
    }

    .footer-section h4 {
        color: #3498db;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

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

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

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

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

    .footer-contacts p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .footer-contacts a {
        color: #bdc3c7;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

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

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

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

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

        .footer-section {
            text-align: center;
        }

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

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

    .cookie-mini p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

.intro-split {
        padding: clamp(60px, 9vw, 120px) clamp(16px, 3vw, 40px);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .intro-split .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 16px;
        align-items: center;
    }

    .intro-split .eyebrow {
        margin: 0 0 8px;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 0.8rem;
    }

    .intro-split h1 {
        margin: 0 0 10px;
        font-size: clamp(34px, 5.6vw, 60px);
    }

    .intro-split .lead {
        margin: 0 0 18px;
        max-width: 60ch;
        opacity: 0.9;
    }

    .intro-split .actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .intro-split .btn {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        border: 1px solid transparent;
        font-weight: 600;
    }

    .intro-split .btn-primary {
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
    }

    .intro-split .btn-ghost {
        background: transparent;
        color: var(--fg-on-primary);
        border-color: var(--fg-on-primary);
    }

    .intro-split .fact {
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--chip-bg);
    }

    .intro-split .label {
        margin: 0;
        opacity: 0.85;
    }

    .intro-split .number {
        margin: 8px 0;
        font-size: clamp(32px, 5vw, 52px);
        font-weight: 700;
    }

    .intro-split .caption {
        margin: 0;
        opacity: 0.9;
    }

    @media (max-width: 860px) {
        .intro-split .wrap {
            grid-template-columns: 1fr;
        }
    }

.next-cardline {
        padding: clamp(60px, 9vw, 108px) clamp(16px, 3vw, 36px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .next-cardline .wrap {
        max-width: 900px;
        margin: 0 auto;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        padding: clamp(18px, 3vw, 28px);
        text-align: center;
    }

    .next-cardline h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
        color: var(--neutral-900);
    }

    .next-cardline p {
        margin: 10px auto 0;
        max-width: 64ch;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .next-cardline .list {
        margin-top: 14px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 8px;
    }

    .next-cardline .item {
        text-decoration: none;
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-2);
        padding: 10px;
        display: grid;
        gap: 4px;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .next-cardline .item:hover {
        background-color: var(--bg-alt);
    }

    .next-cardline .item span {
        font-size: 1.5rem;
    }

    .next-cardline .item strong {
        font-weight: 600;
        color: var(--neutral-800);
    }

    .next-cardline .cta {
        display: inline-block;
        margin-top: 14px;
        text-decoration: none;
        padding: 12px 24px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .next-cardline .cta:hover {
        background-color: var(--bg-primary-hover);
    }

.faq-tiles {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

    .faq-tiles .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .faq-tiles header {
        margin-bottom: 14px;
    }

    .faq-tiles h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .faq-tiles header p {
        margin: 10px 0 0;
        color: rgba(6, 95, 70, .85);
    }

    .faq-tiles .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 10px;
    }

    .faq-tiles .tile {
        border: 1px solid rgba(6, 95, 70, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .75);
        padding: 12px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .faq-tiles .tile:hover {
        transform: translateY(-2px);
    }

    .faq-tiles .meta {
        margin: 0 0 6px;
        font-size: .85rem;
        color: rgba(6, 95, 70, .8);
    }

    .faq-tiles h3 {
        margin: 0 0 8px;
    }

    .faq-tiles .tile p {
        margin: 0;
        color: rgba(6, 95, 70, .88);
    }

.clarifications-l1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

    .clarifications-l1__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .clarifications-l1__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--fg-on-page);
    }

    .clarifications-l1__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .clarifications-l1__grid {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .clarifications-l1__note {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        overflow: hidden;
        animation: l1Float 6s var(--anim-ease) infinite;
    }

    .clarifications-l1__note:nth-child(2n) {
        animation-duration: 7.2s
    }

    .clarifications-l1__note:nth-child(3n) {
        animation-duration: 8.2s
    }

    @keyframes l1Float {
        0%, 100% {
            transform: translateY(0px)
        }
        50% {
            transform: translateY(-6px)
        }
    }

    .clarifications-l1__note::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(240px 120px at 20% 10%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(220px 140px at 85% 30%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
    }

    .clarifications-l1__cap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }

    .clarifications-l1__badge {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 800;
        font-size: 0.9rem;
    }

    .clarifications-l1__spark {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0);
        animation: l1Pulse 2.4s ease-in-out infinite;
    }

    @keyframes l1Pulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0)
        }
        50% {
            transform: scale(1.15);
            box-shadow: 0 0 0 10px rgba(0, 86, 179, 0.12)
        }
    }

    .clarifications-l1__q {
        margin: 0 0 8px;
        position: relative;
        z-index: 1;
        font-size: 1.05rem;
        letter-spacing: -.01em;
    }

    .clarifications-l1__a {
        margin: 0;
        position: relative;
        z-index: 1;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .clarifications-l1__note:hover {
        transform: translateY(-10px) rotate(-0.2deg);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 980px) {
        .clarifications-l1__note {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .clarifications-l1__note {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-l1__note, .clarifications-l1__spark {
            animation: none;
        }
    }

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

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

.header-logo .logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header-logo .logo-link:hover {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.nav-link:active {
    background-color: var(--neutral-300);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: calc(var(--space-y) * 3) var(--space-x);
        z-index: 1000;
        overflow-y: auto;
    }

    .header-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }

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

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 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: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        opacity: 0.8;
        margin-top: 0.5rem;
    }

    .footer-section h4 {
        color: #3498db;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

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

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

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

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

    .footer-contacts p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .footer-contacts a {
        color: #bdc3c7;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

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

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

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

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

        .footer-section {
            text-align: center;
        }

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

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

    .cookie-mini p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

.profile--colored-v5 {
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.profile__inner {
    max-width: 640px;
    margin: 0 auto;
}

.profile__card {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 16px;
    align-items: center;
    border-radius: var(--radius-xl);
    padding: 18px 20px;
    background: rgba(15,23,42,0.98);
    border: 1px solid rgba(148,163,184,0.75);
}

.profile__avatar {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid var(--bg-primary);
}

.profile__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile__info h1 {
    margin: 0 0 4px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

.profile__role {
    margin: 0 0 6px;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.profile__bio {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

.support--light-v6 {
        padding: 56px 20px;
        background:
                linear-gradient(180deg, rgba(248, 250, 252, 1), rgba(255, 255, 255, 1));
        color: var(--fg-on-page);

    }

    .support__inner {
        max-width: 720px;
        margin: 0 auto;
        display: grid;
        gap: 18px;
    }

    .support__header h2 {
        margin: 0 0 6px;
        font-size: clamp(24px, 4vw, 32px);

    }

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

    .support__list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
    }

    .support__item {
        display: grid;
        gap: 6px;
        padding: 14px 16px;
        border-radius: 18px;
        background: #fff;
        border: 1px solid var(--border-on-surface-light);
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

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

    .support__item-label {
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: var(--neutral-500);
    }

    .support__item-value {
        font-size: 1rem;
        color: var(--bg-primary);
        font-weight: 600;
    }
    .support__item-value a {
        color: var(--link);
        text-decoration: none;
    }
    .support__item-value a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

.partners {

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

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

    .partners .partners__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--fg-on-page);
    }

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__content {
        padding: clamp(32px, 5vw, 40px);
    }

    .partners .partners__card {
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        text-align: center;
    }

    .partners .partners__logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partners .partners__logo img {
        width: 100%;
        border-top-left-radius: var(--radius-xl);
        border-top-right-radius: var(--radius-xl);
    }

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

    .partners .partners__content p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

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

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

.header-logo .logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header-logo .logo-link:hover {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.nav-link:active {
    background-color: var(--neutral-300);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: calc(var(--space-y) * 3) var(--space-x);
        z-index: 1000;
        overflow-y: auto;
    }

    .header-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }

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

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 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: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        opacity: 0.8;
        margin-top: 0.5rem;
    }

    .footer-section h4 {
        color: #3498db;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

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

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

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

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

    .footer-contacts p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .footer-contacts a {
        color: #bdc3c7;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

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

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

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

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

        .footer-section {
            text-align: center;
        }

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

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

    .cookie-mini p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

.settings {

        color: var(--fg-on-page);
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-page) 100%);
        padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 40px);
    }

    .settings .settings__c {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .settings .settings__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
    }

    .settings .settings__tabs-wrapper {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 0.5rem;
        margin-bottom: clamp(24px, 4vw, 32px);
        box-shadow: var(--shadow-sm);
    }

    .settings .settings__tabs {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .settings .settings__tabs > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__tab {
        flex: 1;
        padding: 0.875rem 1.5rem;
        border: none;
        background: transparent;
        color: var(--neutral-600);
        font-weight: 600;
        cursor: pointer;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        min-width: 120px;
    }

    .settings .settings__tab:hover {
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .settings .settings__tab.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }

    .settings .settings__content {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
        box-shadow: var(--shadow-md);
    }

    .settings .settings__panel {
        display: none;
    }

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

    .settings .settings__section {
        margin-bottom: clamp(32px, 4vw, 40px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .settings .settings__section:last-of-type {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .settings .settings__section h3 {
        margin: 0 0 clamp(20px, 3vw, 24px);
        font-size: clamp(20px, 2.8vw, 24px);
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .settings .settings__form-row > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

    .settings .settings__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .settings .settings__form-group label {
        font-weight: 600;
        color: var(--fg-on-page);
        font-size: 0.875rem;
    }

    .settings .settings__form-group input {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__form-group input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .settings .settings__avatar-upload {
        display: flex;
        gap: clamp(20px, 3vw, 32px);
        align-items: center;
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .settings .settings__avatar-upload > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 700;
        border: 4px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .settings .settings__upload-controls {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

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

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

    .settings .settings__upload-label:hover {
        background: var(--bg-primary-hover);
    }

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

    .settings .settings__remove:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(239, 68, 68, 0.1);
    }

    .settings .settings__checkboxes {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .settings .settings__checkboxes > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__checkbox-label {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        cursor: pointer;
        font-weight: 500;
        color: var(--fg-on-page);
    }

    .settings .settings__checkbox-label input {
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .settings .settings__actions {
        display: flex;
        gap: 1rem;
        margin-top: clamp(32px, 4vw, 40px);
        padding-top: clamp(24px, 4vw, 32px);
        border-top: 1px solid var(--border-on-surface-light);
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .settings .settings__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__save {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-md);
    }

    .settings .settings__save:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

    .settings .settings__reset {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--ring);
        background: transparent;
        color: var(--fg-on-page);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__reset:hover {
        border-color: var(--bg-primary);
        color: var(--bg-primary);
        background: rgba(37, 99, 235, 0.1);
    }

.about-timeline {

        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
        overflow: auto;
    }

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

    .about-timeline .about-timeline__tbl {
        width: 100%;
        border-collapse: collapse;
    }

    .about-timeline .about-timeline__tbl td {
        border-bottom: 1px solid var(--ring);
        padding: .7rem .8rem;
    }

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

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

.header-logo .logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header-logo .logo-link:hover {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.nav-link:active {
    background-color: var(--neutral-300);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: calc(var(--space-y) * 3) var(--space-x);
        z-index: 1000;
        overflow-y: auto;
    }

    .header-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }

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

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 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: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        opacity: 0.8;
        margin-top: 0.5rem;
    }

    .footer-section h4 {
        color: #3498db;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

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

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

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

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

    .footer-contacts p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .footer-contacts a {
        color: #bdc3c7;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

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

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

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

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

        .footer-section {
            text-align: center;
        }

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

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

    .cookie-mini p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

.activity {

        color: var(--fg-on-page);
        background: var(--bg-page);
        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-page);
    }

    .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(--surface-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-page);
    }

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

.identity-aurora {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(64px, 8vw, 120px) clamp(18px, 4vw, 48px);
        position: relative;
        overflow: hidden;
    }

    .identity-aurora::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.18), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(255, 99, 71, 0.35), transparent 40%);
        opacity: 0.8;
        pointer-events: none;
    }

    .identity-aurora__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .identity-aurora__h {
        text-align: center;
        margin-bottom: clamp(48px, 6vw, 80px);

        transform: translateY(-20px);
    }

    .identity-aurora__eyebrow {
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 0.85rem;
        color: var(--link);
        margin: 0 0 0.75rem;
    }

    .identity-aurora h2 {
        font-size: clamp(36px, 5vw, 60px);
        margin: 0 0 1rem;
    }

    .identity-aurora__lead {
        margin: 0 auto;
        max-width: 720px;
        color: rgba(255, 255, 255, 0.82);
        font-size: clamp(18px, 2.4vw, 22px);
    }

    .identity-aurora__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .identity-aurora__card {
        background: rgba(8, 16, 42, 0.6);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 36px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 50px rgba(3, 6, 26, 0.45);
        backdrop-filter: blur(16px);
        transform: translateY(30px);
    }

    .identity-aurora__card::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 1px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
        
        
        mask-composite: exclude;
        pointer-events: none;
    }

    .identity-aurora__icon {
        width: 64px;
        height: 64px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        margin-bottom: 1.25rem;
    }

    .identity-aurora__meta {
        margin-bottom: 0.75rem;
    }

    .identity-aurora__tag {
        display: inline-flex;
        align-items: center;
        padding: 0.25rem 0.85rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.14);
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.85rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .identity-aurora__card h3 {
        margin: 0.35rem 0 0.75rem;
        font-size: clamp(20px, 2.4vw, 26px);
    }

    .identity-aurora__body {
        margin: 0 0 1.25rem;
        color: rgba(255, 255, 255, 0.78);
    }

    .identity-aurora__foot {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 700;
        color: var(--link);
    }

    .identity-aurora__foot::before {
        content: "";
        width: 36px;
        height: 2px;
        background: linear-gradient(90deg, transparent, currentColor);
    }

.index-feedback-list {
        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .index-feedback-list__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .index-feedback-list__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: var(--neutral-600);
    }

    .index-feedback-list__h h2 {
        margin: 0;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-feedback-list__list {
        display: grid;
        gap: 12px;
    }

    .index-feedback-list__row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-feedback-list__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--fg-on-page);
        font: inherit;
        text-align: left;
    }

    .index-feedback-list__who {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-feedback-list__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-list__name {
        font-weight: 800;
        font-size: 14px;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-list__meta {
        font-size: 12px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-list__rating {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .index-feedback-list__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 13px;
        line-height: 1;
    }

    .index-feedback-list__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--fg-on-page);
    }

    .index-feedback-list__a {
        display: none;
        padding: 0 16px 14px;
        color: var(--neutral-800);
        overflow: hidden;
    }

    .index-feedback-list__a p {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
        color: var(--fg-on-surface-light);
    }

    .index-feedback-list__chip {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
    }

    @media (max-width: 560px) {
        .index-feedback-list__q {
            align-items: flex-start;
        }

        .index-feedback-list__rating {
            margin-top: 2px;
        }

        .index-feedback-list__meta {
            display: none;
        }
    }

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

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

.header-logo .logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header-logo .logo-link:hover {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.nav-link:active {
    background-color: var(--neutral-300);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: calc(var(--space-y) * 3) var(--space-x);
        z-index: 1000;
        overflow-y: auto;
    }

    .header-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }

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

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 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: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        opacity: 0.8;
        margin-top: 0.5rem;
    }

    .footer-section h4 {
        color: #3498db;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

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

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

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

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

    .footer-contacts p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .footer-contacts a {
        color: #bdc3c7;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

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

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

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

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

        .footer-section {
            text-align: center;
        }

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

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

    .cookie-mini p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

.security {

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

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

    .security .security__h {
        margin-bottom: var(--space-y);
    }

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

    .security .security__sections {
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
    }

    .security .security__section {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .security h2 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__form input {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__form input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .security .security__form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
    }

    .security .security__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .security .security__sessions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__session {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: var(--gradient-hero);
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
    }

    .security h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-primary);
    }

    .security .security__session p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .security .security__logout {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__logout:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

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

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

.header-logo .logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header-logo .logo-link:hover {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.nav-link:active {
    background-color: var(--neutral-300);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: calc(var(--space-y) * 3) var(--space-x);
        z-index: 1000;
        overflow-y: auto;
    }

    .header-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }

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

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 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: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        opacity: 0.8;
        margin-top: 0.5rem;
    }

    .footer-section h4 {
        color: #3498db;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

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

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

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

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

    .footer-contacts p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .footer-contacts a {
        color: #bdc3c7;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

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

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

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

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

        .footer-section {
            text-align: center;
        }

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

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

    .cookie-mini p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

.contact-rail {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

    .contact-rail .intro {
        margin-bottom: 14px;
    }

    .contact-rail h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .contact-rail .intro p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .contact-rail .layout {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 12px;
    }

    .contact-rail .info,
    .contact-rail .form {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 14px;
    }

    .contact-rail h3 {
        margin: 0 0 10px;
    }

    .contact-rail .info p {
        margin: 0 0 10px;
        color: var(--neutral-600);
    }

    .contact-rail .social {
        display: flex;
        gap: 8px;
    }

    .contact-rail .social a {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border: 1px solid var(--border-on-surface);
        border-radius: 50%;
        color: var(--fg-on-page);
        text-decoration: none;
    }

    .contact-rail .row {
        display: grid;
        gap: 6px;
        margin-bottom: 9px;
    }

    .contact-rail input,
    .contact-rail textarea,
    .contact-rail select {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-2);
        color: var(--fg-on-page);
        padding: 9px;
        font: inherit;
    }

    .contact-rail button {
        border: 0;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        cursor: pointer;
    }

    @media (max-width: 860px) {
        .contact-rail .layout {
            grid-template-columns: 1fr;
        }
    }

.form-layers {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .form-layers .wrap {
        max-width: 980px;
        margin: 0 auto;
        display: grid;
        gap: var(--space-y);
    }

    .form-layers .intro h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
        color: var(--fg-on-primary);
    }

    .form-layers .intro p {
        margin: 10px 0 0;
        color: var(--fg-on-primary);
        opacity: 0.9;
    }

    .form-layers .layers {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        padding: var(--space-x);
        display: grid;
        gap: var(--space-y);
        color: var(--fg-on-surface-light);
    }

    .form-layers fieldset {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: var(--gap);
        display: grid;
        gap: var(--gap);
        border: none;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--gap);
    }

    @media (max-width: 768px) {
        .form-layers fieldset {
            grid-template-columns: 1fr;
        }
    }

    .form-layers legend {
        padding: 0 6px;
        font-weight: 600;
        color: var(--fg-on-surface-light);
    }

    .form-layers label {
        display: grid;
        gap: 8px;
        font-weight: 500;
        color: var(--fg-on-surface-light);
    }

    .form-layers input:not([type="checkbox"]),
    .form-layers textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        padding: 12px;
        font: inherit;
        transition: border-color var(--anim-duration) var(--anim-ease);
    }

    .form-layers input:not([type="checkbox"]):focus,
    .form-layers textarea:focus {
        outline: none;
        border-color: var(--brand);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .form-layers .agree {
        display: flex;
        gap: var(--gap);
        align-items: center;
        grid-column: 1 / -1;
        margin-top: 8px;
    }

    .form-layers .agree input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }

    .form-layers button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-md);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        padding: 16px 40px;
        margin: 0 auto;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
        grid-column: 1 / -1;
        width: 100%;
        max-width: 300px;
    }

    .form-layers button:hover {
        background: var(--bg-accent-hover);
    }

    .form-layers .notes {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-light);
        padding: var(--gap);
        margin-top: var(--gap);
        font-size: 0.9rem;
        color: var(--fg-on-surface-light);
    }

    .form-layers .notes p {
        margin: 0 0 6px;
    }

.map-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.map-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.map-section__title {
    text-align: center;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
    color: var(--fg-on-page);
}

.map-section__frame {
    margin-top: var(--space-y);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-section__frame iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

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

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

.header-logo .logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header-logo .logo-link:hover {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.nav-link:active {
    background-color: var(--neutral-300);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: calc(var(--space-y) * 3) var(--space-x);
        z-index: 1000;
        overflow-y: auto;
    }

    .header-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }

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

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 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: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        opacity: 0.8;
        margin-top: 0.5rem;
    }

    .footer-section h4 {
        color: #3498db;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

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

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

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

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

    .footer-contacts p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .footer-contacts a {
        color: #bdc3c7;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

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

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

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

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

        .footer-section {
            text-align: center;
        }

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

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

    .cookie-mini p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

.policy-cards {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(180deg, var(--bg-alt), var(--accent));
        color: var(--fg-on-page);
    }

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

    .policy-cards header {
        margin-bottom: 14px;
    }

    .policy-cards h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .policy-cards header p {
        margin: 10px 0 0;
        color: var(--neutral-600);
        max-width: 72ch;
    }

    .policy-cards .grid {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .policy-cards .card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 14px;
    }

    .policy-cards .meta {
        margin: 0;
        font-size: .9rem;
        color: var(--brand);
    }

    .policy-cards h3 {
        margin: 8px 0;
    }

    .policy-cards .card p {
        margin: 0;
        color: var(--neutral-600);
    }

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

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

.header-logo .logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header-logo .logo-link:hover {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.nav-link:active {
    background-color: var(--neutral-300);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: calc(var(--space-y) * 3) var(--space-x);
        z-index: 1000;
        overflow-y: auto;
    }

    .header-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }

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

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 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: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        opacity: 0.8;
        margin-top: 0.5rem;
    }

    .footer-section h4 {
        color: #3498db;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

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

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

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

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

    .footer-contacts p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .footer-contacts a {
        color: #bdc3c7;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

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

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

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

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

        .footer-section {
            text-align: center;
        }

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

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

    .cookie-mini p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

.terms-scroll {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .terms-scroll .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 16px;
    }

    .terms-scroll .sidebar {
        position: sticky;
        top: 16px;
        align-self: start;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        padding: 12px;
    }

    .terms-scroll .sidebar h2 {
        margin: 0;
        font-size: clamp(24px, 3vw, 30px);
    }

    .terms-scroll .sidebar p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .terms-scroll .content {
        display: grid;
        gap: 10px;
    }

    .terms-scroll .block {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
    }

    .terms-scroll h3,
    .terms-scroll h4 {
        margin: 0 0 8px;
    }

    .terms-scroll p,
    .terms-scroll li {
        color: var(--neutral-600);
    }

    @media (max-width: 860px) {
        .terms-scroll .wrap {
            grid-template-columns: 1fr;
        }

        .terms-scroll .sidebar {
            position: static;
        }
    }

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

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

.header-logo .logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header-logo .logo-link:hover {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.nav-link:active {
    background-color: var(--neutral-300);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: calc(var(--space-y) * 3) var(--space-x);
        z-index: 1000;
        overflow-y: auto;
    }

    .header-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }

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

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 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: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        opacity: 0.8;
        margin-top: 0.5rem;
    }

    .footer-section h4 {
        color: #3498db;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

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

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

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

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

    .footer-contacts p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .footer-contacts a {
        color: #bdc3c7;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

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

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

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

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

        .footer-section {
            text-align: center;
        }

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

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

    .cookie-mini p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

.th-core-e {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .th-core-e .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .th-core-e h1 {
        margin: 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .th-core-e p {
        margin: 10px 0 0;
        color: var(--border-on-surface-light);
    }

    .th-core-e a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 12px;
        text-decoration: none;
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
    }

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

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

.header-logo .logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header-logo .logo-link:hover {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.nav-link:active {
    background-color: var(--neutral-300);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: calc(var(--space-y) * 3) var(--space-x);
        z-index: 1000;
        overflow-y: auto;
    }

    .header-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }

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

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 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: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        opacity: 0.8;
        margin-top: 0.5rem;
    }

    .footer-section h4 {
        color: #3498db;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

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

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

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

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

    .footer-contacts p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .footer-contacts a {
        color: #bdc3c7;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

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

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

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

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

        .footer-section {
            text-align: center;
        }

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

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

    .cookie-mini p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

.nf-core-d {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nf-core-d .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        border: 1px dashed var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        padding: clamp(18px, 3vw, 30px);
    }

    .nf-core-d h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
    }

    .nf-core-d p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .nf-core-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-page);
        text-decoration: none;
    }