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

  --max-w: 1200px;
  --space-x: 2rem;
  --space-y: 1.25rem;
  --gap: 1rem;

  --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: 0.3s;
  --anim-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --random-number: 2;

  --brand: #D4AF37;
  --brand-contrast: #000000;
  --accent: #1A1A1A;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F8F8;
  --neutral-300: #D4D4D4;
  --neutral-600: #6B6B6B;
  --neutral-800: #2A2A2A;
  --neutral-900: #000000;

  --bg-page: #FFFFFF;
  --fg-on-page: #1A1A1A;

  --bg-alt: #F8F8F8;
  --fg-on-alt: #2A2A2A;

  --surface-1: #FFFFFF;
  --surface-2: #F8F8F8;
  --fg-on-surface: #1A1A1A;
  --border-on-surface: #E5E5E5;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #2A2A2A;
  --border-on-surface-light: #D4D4D4;

  --bg-primary: #D4AF37;
  --fg-on-primary: #000000;
  --bg-primary-hover: #C19C2E;
  --ring: #D4AF37;

  --bg-accent: #F5F5F5;
  --fg-on-accent: #1A1A1A;
  --bg-accent-hover: #E5E5E5;

  --link: #1A1A1A;
  --link-hover: #D4AF37;

  --gradient-hero: linear-gradient(135deg, #000000 0%, #2A2A2A 100%);
  --gradient-accent: linear-gradient(90deg, #D4AF37 0%, #F5E6B3 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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-menu span {
    display: block;
    height: 3px;
    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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 80px var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.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: 2.2rem;
        font-weight: 800;
        color: #e74c3c;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #bdc3c7;
        margin-top: 0.5rem;
    }

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

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

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

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

    .footer-contacts a:hover {
        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;
    }

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

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

        .footer-section h3 {
            border-bottom: 1px solid #4a6572;
            display: inline-block;
            margin-left: auto;
            margin-right: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem;
        }

        .footer-logo {
            font-size: 1.8rem;
        }
    }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

    .cookie-ribbon .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

    .cookie-ribbon p {
        margin: 0;
        opacity: .92;
    }

    .cookie-ribbon .actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

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

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

    .intro-cardline .media {
        order: var(--random-number);
    }

    .intro-cardline .copy {
        order: 1;
    }

    .intro-cardline .media img {
        width: 100%;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .intro-cardline .badge {
        margin: 0 0 8px;
        display: inline-block;
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 6px 10px;
        border-radius: var(--radius-md);
        font-size: 0.85rem;
    }

    .intro-cardline h1 {
        margin: 0 0 8px;
        font-size: clamp(32px, 5.2vw, 54px);
        color: var(--neutral-900);
    }

    .intro-cardline .subtitle {
        margin: 0 0 10px;
        color: var(--neutral-600);
        font-size: 1.25rem;
        font-weight: 500;
    }

    .intro-cardline .desc {
        margin: 0 0 12px;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .intro-cardline .question {
        margin: 0 0 16px;
        padding: 10px;
        border-left: 3px solid var(--ring);
        background: var(--surface-2);
        color: var(--fg-on-page);
        font-style: italic;
    }

    .intro-cardline .btn {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: inline-block;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }
    .intro-cardline .btn:hover {
        background: var(--bg-primary-hover);
    }

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

.next-arrow {
        padding: clamp(60px, 9vw, 108px) 16px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

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

    .next-arrow h2 {
        margin: 0;
        font-size: clamp(30px, 4.5vw, 46px);
        color: var(--brand);
    }

    .next-arrow p {
        margin: 10px auto 0;
        max-width: 62ch;
        color: var(--neutral-800);
    }

    .next-arrow .flow {
        margin-top: 16px;
        display: flex;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-arrow .flow a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid var(--chip-bg);
        border-radius: 999px;
        background: var(--chip-bg);
        padding: 9px 13px;
        display: inline-flex;
        gap: 6px;
        align-items: center;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .next-arrow .flow a:hover {
        background-color: var(--bg-primary-hover);
    }

    .next-arrow .flow .final {
        background: var(--brand);
        color: var(--brand-contrast);
        border-color: var(--brand);
        font-weight: bold;
    }

    .next-arrow .flow .final:hover {
        background-color: var(--bg-primary-hover);
    }

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

    .faq-board .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .faq-board .head {
        margin-bottom: 14px;
    }

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

    .faq-board .head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .faq-board .board {
        display: grid;
        gap: 8px;
    }

    .faq-board details {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
    }

    .faq-board summary {
        cursor: pointer;
        font-weight: 600;
    }

    .faq-board details p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

.value-points-radiant {
        background: radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.22), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.2), transparent 50%),
        var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(64px, 8vw, 120px) clamp(20px, 4vw, 56px);
        position: relative;
        overflow: hidden;
    }

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

    .value-points-radiant__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 90px);
        transform: translateY(-20px);
    }

    .value-points-radiant__eyebrow {
        margin: 0 0 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: clamp(14px, 2vw, 18px);
        color: rgba(255, 255, 255, 0.7);
    }

    .value-points-radiant h2 {
        margin: 0;
        font-size: clamp(34px, 5vw, 60px);
        font-weight: 800;
    }

    .value-points-radiant__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .value-points-radiant__card {
        background: rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 36px);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
        transform: translateY(40px);
        position: relative;
        overflow: hidden;
    }

    .value-points-radiant__card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 60%);
        transition: opacity 0.3s ease;
    }

    .value-points-radiant__card:hover::after {
        opacity: 1;
    }

    .value-points-radiant__marker {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        letter-spacing: 0.08em;
        margin-bottom: 1rem;
    }

    .value-points-radiant__card h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(20px, 2.3vw, 26px);
        color: var(--neutral-0);
    }

    .value-points-radiant__card p {
        margin: 0 0 1rem;
        color: rgba(255, 255, 255, 0.78);
    }

    .value-points-radiant__hint {
        display: inline-flex;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.7);
    }

.visual-highlights-light {

        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(60px, 8vw, 100px) clamp(18px, 4vw, 48px);
        position: relative;
    }

    .visual-highlights-light::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 15% 15%, rgba(0, 86, 179, 0.08), transparent 55%);
        pointer-events: none;
    }

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

    .visual-highlights-light__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

        transform: translateY(-20px);
    }

    .visual-highlights-light h2 {
        margin: 0 0 1rem;
        font-size: clamp(30px, 4.8vw, 48px);
        font-weight: 800;
    }

    .visual-highlights-light__subtitle {
        margin: 0;
        color: var(--neutral-600);
        font-size: clamp(16px, 2vw, 20px);
    }

    .visual-highlights-light__board {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .visual-highlights-light__tile {
        margin: 0;
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        overflow: hidden;
        box-shadow: var(--shadow-md);

        transform: translateY(32px);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .visual-highlights-light__tile:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(0);
    }

    .visual-highlights-light__snapshot {
        position: relative;
        padding-top: 62%;
        overflow: hidden;
    }

    .visual-highlights-light__snapshot img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .visual-highlights-light__tile:hover img {
        transform: scale(1.04);
    }

    .visual-highlights-light__chip {
        position: absolute;
        bottom: 16px;
        left: 16px;
        padding: 6px 14px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 600;
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        box-shadow: 0 6px 14px rgba(255, 107, 53, 0.25);
    }

    .visual-highlights-light__tile figcaption {
        padding: clamp(20px, 3vw, 28px);
    }

    .visual-highlights-light__caption {
        margin: 0 0 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 11px;
        color: var(--neutral-600);
    }

    .visual-highlights-light__tile h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(18px, 2.2vw, 24px);
        color: var(--fg-on-page);
    }

    .visual-highlights-light__tile 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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-menu span {
    display: block;
    height: 3px;
    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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 80px var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.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: 2.2rem;
        font-weight: 800;
        color: #e74c3c;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #bdc3c7;
        margin-top: 0.5rem;
    }

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

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

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

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

    .footer-contacts a:hover {
        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;
    }

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

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

        .footer-section h3 {
            border-bottom: 1px solid #4a6572;
            display: inline-block;
            margin-left: auto;
            margin-right: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem;
        }

        .footer-logo {
            font-size: 1.8rem;
        }
    }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

    .cookie-ribbon .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

    .cookie-ribbon p {
        margin: 0;
        opacity: .92;
    }

    .cookie-ribbon .actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

.profile {

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

    .profile .profile__c {
        max-width: 800px;
        margin: 0 auto;
    }

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

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

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

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

    .profile .profile__avatar-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: clamp(32px, 4vw, 40px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .profile .profile__upload-btn {
        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;
        border: 2px solid var(--bg-primary);
    }

    .profile .profile__upload-btn input {
        display: none;
    }

    .profile .profile__upload-btn:hover {
        background: var(--bg-primary-hover);
    }

    .profile .profile__form {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 24px);
    }

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

    .profile .profile__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .profile .profile__form-group input,
    .profile .profile__form-group textarea {
        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);
    }

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

    .profile .profile__form-group input:focus,
    .profile .profile__form-group textarea:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .profile .profile__form-group input[type="checkbox"] {
        margin-right: 0.5rem;
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .profile .profile__submit {
        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);
        align-self: flex-start;
        box-shadow: var(--shadow-md);
    }

    .profile .profile__submit {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

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

.contact-support--colored-v2 {
        position: relative;
        padding: 60px 20px;
        background:
                radial-gradient(120% 120% at 10% 10%, rgba(56, 189, 248, 0.5), transparent 60%),
                radial-gradient(120% 120% at 100% 0%, rgba(251, 146, 60, 0.6), transparent 55%),
                #0b1120;
        color: var(--neutral-0);

        overflow: hidden;
    }

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

    .contact-support__banner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 20px 24px;
        border-radius: 24px;
        background: rgba(15, 23, 42, 0.7);
        border: 1px solid rgba(148, 163, 184, 0.45);
        box-shadow: 0 20px 45px rgba(3, 7, 18, 0.45);
        backdrop-filter: blur(10px);
    }

    .contact-support__banner h3 {
        margin: 0 0 6px;
        font-size: clamp(22px, 4vw, 32px);
    }

    .contact-support__banner p {
        margin: 0;
        color: rgba(226, 232, 240, 0.8);
        font-size: 0.95rem;
    }

    .contact-support__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.85rem 1.4rem;
        border-radius: 999px;
        background: var(--brand-contrast);
        color: #0b1120;
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

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

    @media (max-width: 768px) {
        .contact-support__banner {
            flex-direction: column;
            align-items: flex-start;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-menu span {
    display: block;
    height: 3px;
    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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 80px var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.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: 2.2rem;
        font-weight: 800;
        color: #e74c3c;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #bdc3c7;
        margin-top: 0.5rem;
    }

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

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

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

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

    .footer-contacts a:hover {
        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;
    }

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

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

        .footer-section h3 {
            border-bottom: 1px solid #4a6572;
            display: inline-block;
            margin-left: auto;
            margin-right: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem;
        }

        .footer-logo {
            font-size: 1.8rem;
        }
    }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

    .cookie-ribbon .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

    .cookie-ribbon p {
        margin: 0;
        opacity: .92;
    }

    .cookie-ribbon .actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

.settings {

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

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

    .settings .settings__tabs {
        display: flex;
        gap: 0.5rem;
        margin-bottom: var(--space-y);
        border-bottom: 1px solid var(--ring);
    }

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

    .settings .settings__tab {
        padding: 0.875rem 1.5rem;
        border: none;
        background: transparent;
        color: var(--neutral-600);
        font-weight: 600;
        cursor: pointer;
        border-bottom: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__tab:hover {
        color: var(--bg-primary);
    }

    .settings .settings__tab.active {
        color: var(--bg-primary);
        border-color: var(--bg-primary);
    }

    .settings .settings__form {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

    .settings .settings__group label {
        font-weight: 600;
        color: var(--fg-on-page);
    }

    .settings .settings__group input[type="text"],
    .settings .settings__group input[type="email"],
    .settings .settings__group input[type="file"],
    .settings .settings__group input[type="password"],
    .settings .settings__group select {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--neutral-0);
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

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

    .settings .settings__group input[type="checkbox"] {
        margin-right: 0.5rem;
    }

    .settings .settings__submit {
        padding: 1rem 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;
    }

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

.index-recommendations {
        background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 70%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .index-recommendations__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .index-recommendations__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-recommendations__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .index-recommendations__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations__card {
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(58, 46, 61, 0.12);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: blur(10px);

        transform: translateY(26px);
        position: relative;
        overflow: hidden;
    }

    .index-recommendations__card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 55%);
        opacity: 0.65;
        pointer-events: none;
    }

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

    .index-recommendations__icon {
        width: 52px;
        height: 52px;
        border-radius: 18px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        flex: 0 0 auto;
    }

    .index-recommendations__tag {
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-accent);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .index-recommendations__card h3 {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        font-size: 18px;
        font-weight: 900;
        color: var(--fg-on-page);
        letter-spacing: -0.01em;
    }

    .index-recommendations__card p {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .index-recommendations__cta::after {
        content: '->';
        font-size: 12px;
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-menu span {
    display: block;
    height: 3px;
    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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 80px var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.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: 2.2rem;
        font-weight: 800;
        color: #e74c3c;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #bdc3c7;
        margin-top: 0.5rem;
    }

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

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

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

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

    .footer-contacts a:hover {
        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;
    }

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

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

        .footer-section h3 {
            border-bottom: 1px solid #4a6572;
            display: inline-block;
            margin-left: auto;
            margin-right: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem;
        }

        .footer-logo {
            font-size: 1.8rem;
        }
    }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

    .cookie-ribbon .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

    .cookie-ribbon p {
        margin: 0;
        opacity: .92;
    }

    .cookie-ribbon .actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

.activity {

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

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

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

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

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

    .activity .activity__timeline::before {
        content: '';
        position: absolute;
        left: 13px;
        top: 8px;
        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-300);
        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-surface-light);
    }

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

.messages--light-v6 {
    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

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

.messages__inner h2 {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
    color: var(--neutral-900);
}

.messages__list {
    display: grid;
    gap: 10px;
}

.messages__row {
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: 10px 12px;
    border: 1px solid var(--border-on-surface-light);
}

.messages__row-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fg-on-page);
}

.messages__row-text {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-menu span {
    display: block;
    height: 3px;
    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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 80px var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.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: 2.2rem;
        font-weight: 800;
        color: #e74c3c;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #bdc3c7;
        margin-top: 0.5rem;
    }

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

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

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

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

    .footer-contacts a:hover {
        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;
    }

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

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

        .footer-section h3 {
            border-bottom: 1px solid #4a6572;
            display: inline-block;
            margin-left: auto;
            margin-right: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem;
        }

        .footer-logo {
            font-size: 1.8rem;
        }
    }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

    .cookie-ribbon .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

    .cookie-ribbon p {
        margin: 0;
        opacity: .92;
    }

    .cookie-ribbon .actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

.security--light-v6 {
    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

.security__inner {
    max-width: 720px;
    margin: 0 auto;
}

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

.security__inner p {
    margin: 0 0 10px;
    color: var(--neutral-700);
}

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

.security__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: var(--radius-lg);
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
}

.security__bullet {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
}

.security__label {
    font-size: 0.9rem;
    color: var(--neutral-800);
}

.our-story {

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-menu span {
    display: block;
    height: 3px;
    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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 80px var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.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: 2.2rem;
        font-weight: 800;
        color: #e74c3c;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #bdc3c7;
        margin-top: 0.5rem;
    }

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

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

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

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

    .footer-contacts a:hover {
        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;
    }

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

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

        .footer-section h3 {
            border-bottom: 1px solid #4a6572;
            display: inline-block;
            margin-left: auto;
            margin-right: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem;
        }

        .footer-logo {
            font-size: 1.8rem;
        }
    }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

    .cookie-ribbon .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

    .cookie-ribbon p {
        margin: 0;
        opacity: .92;
    }

    .cookie-ribbon .actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

.form-split {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(150deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .form-split .wrap {
        max-width: 980px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 12px;
    }

    .form-split .left,
    .form-split .right {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 14px;
    }

    .form-split h2 {
        margin: 0;
        font-size: clamp(26px, 3.8vw, 38px);
    }

    .form-split .left p {
        margin: 8px 0 0;
        opacity: .9;
    }

    .form-split label {
        display: grid;
        gap: 6px;
        margin-bottom: 8px;
    }

    .form-split input:not([type="checkbox"]),
    .form-split textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .form-split .agree {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .form-split button {
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--accent);
        color: var(--accent-contrast);
        padding: 9px 12px;
    }

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

.contact-stack {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        position: relative;
        overflow: hidden;
    }

    .contact-stack::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 18% 18%, rgba(0, 86, 179, 0.08), transparent 55%);
        pointer-events: none;
    }

    .contact-stack .wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 16px;
        position: relative;
        z-index: 1;
    }

    .contact-stack h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        letter-spacing: -0.02em;
    }

    .contact-stack .lead {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .contact-stack .cards {
        display: grid;
        grid-template-columns: minmax(280px, 1fr) minmax(200px, 320px);
        gap: 12px;
    }

    .contact-stack .card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

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

    .contact-stack .rows {
        display: grid;
        gap: 10px;
    }

    .contact-stack .row {
        padding: 10px 12px;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .contact-stack .label {
        display: block;
        font-size: 12px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--neutral-600);
        margin-bottom: 6px;
    }

    .contact-stack .value {
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .contact-stack .value a {
        color: var(--link);
        text-decoration: none;
    }

    .contact-stack .value a:hover {
        color: var(--link-hover);
    }

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

    .contact-stack .social a {
        width: 32px;
        height: 32px;
        display: grid;
        place-items: center;
        border: 1px solid var(--border-on-surface);
        border-radius: 50%;
        color: var(--fg-on-page);
        text-decoration: none;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .contact-stack .social a:hover {
        transform: translateY(-2px);
        border-color: var(--brand);
        color: var(--brand);
    }

    .contact-stack .social-card {
        background: var(--surface-2);
    }

    .contact-stack .social-title {
        margin: 0 0 10px;
        font-weight: 600;
    }

    @media (max-width: 820px) {
        .contact-stack .cards {
            grid-template-columns: 1fr;
        }
    }

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

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

    .touch-panorama h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--neutral-900);
    }

    .touch-panorama .lead {
        margin: 10px 0 14px;
        color: var(--neutral-800);
    }

    .touch-panorama .lane {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
    }

    .touch-panorama article {
        min-width: 250px;
        border: 1px solid var(--chip-bg);
        border-radius: 14px;
        background: var(--chip-bg);
        padding: 12px;
        scroll-snap-align: start;
    }

    .touch-panorama article h3 {
        margin: 0 0 8px;
        color: var(--neutral-900);
    }

    .touch-panorama article p {
        margin: 0 0 8px;
        color: var(--neutral-800);
    }

    .touch-panorama article a {
        color: var(--brand);
        text-decoration: underline;
    }

    .touch-panorama .main {
        display: inline-block;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 10px;
        background: var(--neutral-900);
        color: var(--neutral-0);
        font-weight: bold;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }
    .touch-panorama .main:hover {
        background: var(--neutral-800);
    }
    .subscribe-form input::placeholder {
        color: var(--input-placeholder);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-menu span {
    display: block;
    height: 3px;
    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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 80px var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.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: 2.2rem;
        font-weight: 800;
        color: #e74c3c;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #bdc3c7;
        margin-top: 0.5rem;
    }

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

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

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

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

    .footer-contacts a:hover {
        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;
    }

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

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

        .footer-section h3 {
            border-bottom: 1px solid #4a6572;
            display: inline-block;
            margin-left: auto;
            margin-right: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem;
        }

        .footer-logo {
            font-size: 1.8rem;
        }
    }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

    .cookie-ribbon .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

    .cookie-ribbon p {
        margin: 0;
        opacity: .92;
    }

    .cookie-ribbon .actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

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

    .policy-zigzag .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

    .policy-zigzag .lead {
        margin: 10px 0 14px;
    }

    .policy-zigzag .list {
        display: grid;
        gap: 10px;
    }

    .policy-zigzag article {
        border: 1px solid var(--chip-bg);
        border-radius: 14px;
        background: var(--chip-bg);
        padding: 12px;
    }

    .policy-zigzag article:nth-child(even) {
        margin-left: 24px;
    }

    .policy-zigzag article:nth-child(odd) {
        margin-right: 24px;
    }

    .policy-zigzag .meta {
        margin: 0;
        font-size: .85rem;
        color: var(--neutral-300);
    }

    .policy-zigzag h3 {
        margin: 6px 0;
    }

    .policy-zigzag article p {
        margin: 0;
    }

    @media (max-width: 680px) {
        .policy-zigzag article:nth-child(even),
        .policy-zigzag article:nth-child(odd) {
            margin: 0;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-menu span {
    display: block;
    height: 3px;
    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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 80px var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.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: 2.2rem;
        font-weight: 800;
        color: #e74c3c;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #bdc3c7;
        margin-top: 0.5rem;
    }

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

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

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

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

    .footer-contacts a:hover {
        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;
    }

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

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

        .footer-section h3 {
            border-bottom: 1px solid #4a6572;
            display: inline-block;
            margin-left: auto;
            margin-right: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem;
        }

        .footer-logo {
            font-size: 1.8rem;
        }
    }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

    .cookie-ribbon .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

    .cookie-ribbon p {
        margin: 0;
        opacity: .92;
    }

    .cookie-ribbon .actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

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

    .terms-panels .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .terms-panels header {
        margin-bottom: 16px;
    }

    .terms-panels h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--neutral-900);
    }

    .terms-panels header p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .terms-panels .panel {
        margin-bottom: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .9);
        padding: 14px;
    }

    .terms-panels h3, .terms-panels h4 {
        margin: 0 0 8px;
        color: var(--neutral-800);
    }

    .terms-panels h3 {
        color: var(--brand);
    }

    .terms-panels p, .terms-panels li {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .terms-panels a {
        color: var(--link);
        text-decoration: underline;
    }

    .terms-panels a:hover {
        color: var(--link-hover);
    }

    .terms-panels ul {
        padding-left: 20px;
    }

    .terms-panels li {
        margin-bottom: 4px;
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-menu span {
    display: block;
    height: 3px;
    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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 80px var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.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: 2.2rem;
        font-weight: 800;
        color: #e74c3c;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #bdc3c7;
        margin-top: 0.5rem;
    }

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

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

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

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

    .footer-contacts a:hover {
        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;
    }

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

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

        .footer-section h3 {
            border-bottom: 1px solid #4a6572;
            display: inline-block;
            margin-left: auto;
            margin-right: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem;
        }

        .footer-logo {
            font-size: 1.8rem;
        }
    }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

    .cookie-ribbon .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

    .cookie-ribbon p {
        margin: 0;
        opacity: .92;
    }

    .cookie-ribbon .actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

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

    .th-core-f .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        background: var(--neutral-0);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--space-x);
        padding: clamp(18px, 3vw, 30px);
    }

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

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

    .th-core-f a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--space-x);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-menu span {
    display: block;
    height: 3px;
    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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 80px var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.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: 2.2rem;
        font-weight: 800;
        color: #e74c3c;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #bdc3c7;
        margin-top: 0.5rem;
    }

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

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

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

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

    .footer-contacts a:hover {
        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;
    }

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

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

        .footer-section h3 {
            border-bottom: 1px solid #4a6572;
            display: inline-block;
            margin-left: auto;
            margin-right: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem;
        }

        .footer-logo {
            font-size: 1.8rem;
        }
    }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

    .cookie-ribbon .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

    .cookie-ribbon p {
        margin: 0;
        opacity: .92;
    }

    .cookie-ribbon .actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

.nf-core-a {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

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

    .nf-core-a p {
        margin: 10px 0 0;
        opacity: .92;
    }

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