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

  --max-w: 1080px;
  --space-x: 2.14rem;
  --space-y: 1.5rem;
  --gap: 0.92rem;

  --radius-xl: 1.28rem;
  --radius-lg: 0.96rem;
  --radius-md: 0.63rem;
  --radius-sm: 0.4rem;

  --shadow-sm: 0 0px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 16px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 30px rgba(0,0,0,0.06);

  --overlay: rgba(0, 0, 0, 0.85);
  --anim-duration: 550ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 1;

  --brand: #D4AF37;
  --brand-contrast: #000000;
  --accent: #D4AF37;
  --accent-contrast: #000000;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #D4D4D4;
  --neutral-600: #737373;
  --neutral-800: #262626;
  --neutral-900: #0A0A0A;

  --bg-page: #0A0A0A;
  --fg-on-page: #F5F5F5;

  --bg-alt: #111111;
  --fg-on-alt: #E5E5E5;

  --surface-1: #111111;
  --surface-2: #1A1A1A;
  --fg-on-surface: #E5E5E5;
  --border-on-surface: rgba(212, 175, 55, 0.3);

  --surface-light: #1A1A1A;
  --fg-on-surface-light: #D4D4D4;
  --border-on-surface-light: rgba(212, 175, 55, 0.2);

  --bg-primary: #D4AF37;
  --fg-on-primary: #000000;
  --bg-primary-hover: #E6C158;
  --ring: rgba(212, 175, 55, 0.5);

  --bg-accent: rgba(212, 175, 55, 0.1);
  --fg-on-accent: #D4AF37;
  --bg-accent-hover: #E6C158;

  --link: #D4AF37;
  --link-hover: #E6C158;

  --gradient-hero: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.7));
  --gradient-accent: linear-gradient(90deg, #D4AF37 0%, #E6C158 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.68);
  --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);
    border-bottom: 1px solid var(--border-on-surface-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) 0;
}

.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;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
}

.cta-button {
    background-color: var(--brand);
    color: var(--brand-contrast);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-primary-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
    .cta-button {
        margin-left: auto;
        margin-right: var(--space-x);
    }
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 1rem;
    }
    .footer-offer {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        opacity: 0.9;
        flex-grow: 1;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
    }
    .social-links a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s, padding-left 0.3s;
        display: inline-block;
    }
    .footer-nav a:hover {
        color: #f1c40f;
        padding-left: 5px;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: auto;
    }
    .legal-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .legal-links a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .contact-block p {
        margin-bottom: 0.8rem;
        margin-top: 0;
    }
    .contact-block a {
        color: #ecf0f1;
        text-decoration: none;
    }
    .contact-block a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.75rem;
        color: #95a5a6;
        margin-top: 1.5rem;
        border-top: 1px solid #34495e;
        padding-top: 1rem;
        line-height: 1.4;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 2.5rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.85rem;
        color: #bdc3c7;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            align-items: flex-start;
        }
        .social-links {
            justify-content: flex-start;
        }
        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.hero-arc-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .hero-arc-v5 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: calc(var(--gap) * 2);
        align-items: flex-end;
        justify-content: space-between;
    }

    .hero-arc-v5 .content {
        max-width: 66ch;
    }

    .hero-arc-v5 h1 {
        margin: .25rem 0;
        font-size: clamp(2.1rem, 5vw, 4rem);
        line-height: 1.02;
        letter-spacing: -.02em;
        color: var(--brand);
    }

    .hero-arc-v5 .kicker {
        color: var(--neutral-300);
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        border-bottom: 1px solid var(--brand);
        display: inline-block;
        padding-bottom: 0.3rem;
    }

    .hero-arc-v5 .subtitle {
        margin: 0 0 .5rem;
        opacity: .9;
        font-size: 1.05rem;
        color: var(--neutral-100);
    }

    .hero-arc-v5 .desc {
        margin: 0;
        opacity: .8;
        max-width: 58ch;
        color: var(--neutral-300);
    }

    .hero-arc-v5 .aside {
        min-width: 280px;
        max-width: 360px;
        display: grid;
        gap: var(--gap);
    }

    .hero-arc-v5 img {
        width: 100%;
        display: block;
        aspect-ratio: 4/5;
        object-fit: cover;
        border-radius: var(--radius-xl);
        border: 1px solid var(--surface-border);
    }

    .hero-arc-v5 .actions {
        display: grid;
        gap: .7rem;
    }

    .hero-arc-v5 .actions a {
        display: block;
        text-align: center;
        padding: .66rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
        border: 1px solid var(--brand);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .hero-arc-v5 .actions a:hover {
        background: var(--bg-accent-hover);
    }

    .hero-arc-v5 .actions a:nth-child(even) {
        background: transparent;
        color: var(--brand);
        border: 1px solid var(--surface-border);
    }

    .hero-arc-v5 .actions a:nth-child(even):hover {
        background: var(--surface-1);
        border-color: var(--brand);
    }

    .hero-arc-v5 .ticker {
        max-width: var(--max-w);
        margin: calc(var(--space-y) * 1.2) auto 0;
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
        padding-top: var(--space-y);
        border-top: 1px solid var(--neutral-600);
    }

    .hero-arc-v5 .ticker span {
        padding: .45rem .7rem;
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        font-size: .9rem;
        color: var(--brand);
        border: 1px solid var(--surface-border);
    }

    @media (max-width: 940px) {
        .hero-arc-v5 .shell {
            flex-direction: column;
            align-items: stretch;
        }

        .hero-arc-v5 .aside {
            max-width: none;
        }

        .hero-arc-v5 img {
            aspect-ratio: 16/9;
        }
    }

.next-grid-l8 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .next-grid-l8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-grid-l8__copy {
        margin-bottom: 1rem;
        text-align: center;
    }

    .next-grid-l8__copy p {
        margin: 0;
        color: var(--neutral-600);
    }

    .next-grid-l8__copy h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--brand);
    }

    .next-grid-l8__copy span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
    }

    .next-grid-l8__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .next-grid-l8__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        transition: border-color var(--anim-duration) var(--anim-ease);
    }

    .next-grid-l8__grid article:hover {
        border-color: var(--brand);
    }

    .next-grid-l8__grid div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--surface-2);
        color: var(--brand);
        font-size: 1.2rem;
    }

    .next-grid-l8__grid h3 {
        margin: .75rem 0 .35rem;
        color: var(--fg-on-surface);
    }

    .next-grid-l8__grid a {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
    }

    .next-grid-l8__grid a:hover {
        color: var(--link-hover);
    }

    .next-grid-l8__foot {
        margin-top: 2rem;
        text-align: center;
    }

    .next-grid-l8__foot a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1.5rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: 1px solid transparent;
    }

    .next-grid-l8__foot a:hover {
        background: var(--bg-primary-hover);
    }

.index-recommendations {
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        border-top: 1px solid var(--border-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .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: var(--brand);
    }

    .index-recommendations__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
        font-weight: 300;
    }

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

    .index-recommendations__card {
        border-radius: 0;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: none;
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: none;
        transform: translateY(26px);
        position: relative;
        overflow: hidden;
        transition: border-color var(--anim-duration) var(--anim-ease);
    }

    .index-recommendations__card:hover {
        border-color: var(--brand);
    }

    .index-recommendations__card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), 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: 0;
        background: transparent;
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        flex: 0 0 auto;
        color: var(--brand);
    }

    .index-recommendations__tag {
        padding: 6px 10px;
        border-radius: 0;
        background: transparent;
        border: 1px solid var(--border-on-surface);
        color: var(--brand);
        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: 300;
        color: var(--fg-on-page);
        letter-spacing: -0.01em;
    }

    .index-recommendations__card p {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: var(--neutral-300);
        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: 0;
        background: transparent;
        border: 1px solid var(--border-on-surface);
        color: var(--brand);
        font-weight: 300;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: all var(--anim-duration) var(--anim-ease);
    }

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

    .index-recommendations__cta:hover {
        background: transparent;
        transform: translateY(-2px);
        border-color: var(--brand);
        color: var(--brand);
    }

.why-choose-light-alt {
        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
    }

    .why-choose-light-alt .why-choose-light-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .why-choose-light-alt .why-choose-light-alt__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);
    }

    .why-choose-light-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-alt);
        position: relative;
        display: inline-block;
    }

    .why-choose-light-alt h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
        0%, 100% {
            opacity: 1;
            transform: scaleX(1);
        }
        50% {
            opacity: 0.4;
            transform: scaleX(0.8);
        }
    }

    .why-choose-light-alt .why-choose-light-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

    .why-choose-light-alt .why-choose-light-alt__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2vw, 24px);
    }

    .why-choose-light-alt .why-choose-light-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        align-items: flex-start;
        position: relative;
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,
        var(--bg-primary) 0%,
        var(--accent) 50%,
        var(--bg-primary) 100%);
        background-size: 200% 100%;
        animation: wave 3s linear infinite;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    @keyframes wave {
        0% {
            background-position: 0% 0%;
        }
        100% {
            background-position: 200% 0%;
        }
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover .why-choose-light-alt__wave {
        opacity: 1;
    }

    .why-choose-light-alt .why-choose-light-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        animation: sparkle 4s ease-in-out infinite;
    }

    @keyframes sparkle {
        0%, 100% {
            box-shadow: 0 0 0 rgba(212, 175, 55, 0);
        }
        10% {
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
        }
        20%, 80% {
            box-shadow: 0 0 0 rgba(212, 175, 55, 0);
        }
        90% {
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
        }
    }

    .why-choose-light-alt .why-choose-light-alt__content {
        flex: 1;
    }

    .why-choose-light-alt .why-choose-light-alt__item h3 {
        font-size: clamp(18px, 2.2vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
        position: relative;
    }

    .why-choose-light-alt .why-choose-light-alt__item h3::before {
        content: '';
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        transition: height var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover h3::before {
        height: 100%;
    }

    .why-choose-light-alt .why-choose-light-alt__item p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.touch-panorama {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--neutral-900);
        color: var(--fg-on-page);
        border-top: 1px solid var(--brand);
        position: relative;
    }
    .touch-panorama::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--brand), transparent);
    }

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

    .touch-panorama h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--brand);
        font-weight: 300;
        letter-spacing: -0.02em;
    }

    .touch-panorama .lead {
        margin: 16px 0 32px;
        color: var(--neutral-300);
        max-width: 700px;
        line-height: var(--line-height-base);
    }

    .touch-panorama .lane {
        display: flex;
        gap: 24px;
        overflow-x: auto;
        padding: 24px 0 32px;
        scroll-snap-type: x mandatory;
        margin-bottom: 40px;
    }.touch-panorama article {
        min-width: 280px;
        background: var(--surface-1);
        padding: 28px;
        scroll-snap-align: start;
        border-left: 1px solid var(--brand);
        transition: border-color var(--anim-duration) var(--anim-ease);
    }
    .touch-panorama article:hover {
        border-left-color: var(--accent-hover);
    }

    .touch-panorama article h3 {
        margin: 0 0 12px;
        color: var(--brand);
        font-size: 1.2rem;
        font-weight: 400;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .touch-panorama article p {
        margin: 0 0 20px;
        color: var(--neutral-300);
        line-height: 1.6;
        font-size: 0.95rem;
    }

    .touch-panorama article a {
        color: var(--brand);
        text-decoration: none;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .touch-panorama article a:hover {
        color: var(--link-hover);
    }

    .contact-form {
        margin-top: 40px;
        padding-top: 40px;
        border-top: 1px solid var(--surface-light-border);
    }
    .form-group {
        display: flex;
        gap: 12px;
        max-width: 500px;
        margin-bottom: 12px;
    }
    .contact-form input {
        flex-grow: 1;
        padding: 14px 20px;
        background: var(--surface-2);
        border: 1px solid var(--surface-light-border);
        color: var(--fg-on-surface);
        font-family: inherit;
        font-size: var(--font-size-base);
        transition: border-color var(--anim-duration) var(--anim-ease);
    }
    .contact-form input:focus {
        outline: none;
        border-color: var(--brand);
    }
    .contact-form input::placeholder {
        color: var(--input-placeholder);
    }
    .contact-form .main {
        display: inline-block;
        text-decoration: none;
        padding: 14px 28px;
        background: var(--brand);
        color: var(--brand-contrast);
        border: none;
        cursor: pointer;
        font-family: inherit;
        font-size: var(--font-size-base);
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .contact-form .main:hover {
        background: var(--primary-hover);
    }
    .form-note {
        color: var(--neutral-600);
        font-size: 0.85rem;
        margin-top: 8px;
    }

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

.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;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
}

.cta-button {
    background-color: var(--brand);
    color: var(--brand-contrast);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-primary-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
    .cta-button {
        margin-left: auto;
        margin-right: var(--space-x);
    }
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 1rem;
    }
    .footer-offer {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        opacity: 0.9;
        flex-grow: 1;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
    }
    .social-links a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s, padding-left 0.3s;
        display: inline-block;
    }
    .footer-nav a:hover {
        color: #f1c40f;
        padding-left: 5px;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: auto;
    }
    .legal-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .legal-links a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .contact-block p {
        margin-bottom: 0.8rem;
        margin-top: 0;
    }
    .contact-block a {
        color: #ecf0f1;
        text-decoration: none;
    }
    .contact-block a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.75rem;
        color: #95a5a6;
        margin-top: 1.5rem;
        border-top: 1px solid #34495e;
        padding-top: 1rem;
        line-height: 1.4;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 2.5rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.85rem;
        color: #bdc3c7;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            align-items: flex-start;
        }
        .social-links {
            justify-content: flex-start;
        }
        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.identity-lv2 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .identity-lv2__head {
        text-align: center;
        margin-bottom: 16px;
    }

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

    .identity-lv2__head h2 {
        margin: 7px 0 0;
        font-size: clamp(28px, 4vw, 44px);
        color: var(--brand);
    }

    .identity-lv2__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .identity-lv2__grid article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        transition: border-color var(--anim-duration) var(--anim-ease);
    }

    .identity-lv2__grid article:hover {
        border-color: var(--brand);
    }

    .identity-lv2__grid h3 {
        margin: 0;
        color: var(--fg-on-surface);
    }

    .identity-lv2__grid strong {
        display: block;
        margin: 6px 0;
        color: var(--brand);
        font-weight: 500;
    }

    .identity-lv2__grid p {
        margin: 0 0 8px;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .identity-lv2__grid blockquote {
        margin: 0;
        padding: 8px 10px;
        border-left: 3px solid var(--brand);
        background: var(--surface-2);
        color: var(--fg-on-surface-light);
        font-style: italic;
        font-size: 0.95em;
    }

.partners {

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

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

    .partners .partners__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--fg-on-page);
        font-weight: 300;
        letter-spacing: 0.02em;
        position: relative;
    }
    .partners .partners__title::after {
        content: '';
        display: block;
        width: 120px;
        height: 1px;
        background: var(--brand);
        margin: 24px auto 0;
    }

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

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

    .partners .partners__card {
        background: var(--surface-1);
        border-radius: 0;
        border: 1px solid var(--border-on-surface);
        text-align: center;
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }
    .partners .partners__card:hover {
        transform: translateY(-4px);
        border-color: var(--brand);
    }

    .partners .partners__logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--neutral-900);
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    .partners .partners__logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        transition: transform var(--anim-duration) var(--anim-ease);
    }
    .partners .partners__card:hover .partners__logo img {
        transform: scale(1.03);
    }

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

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

.story-stream-l7 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .story-stream-l7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        flex-wrap: wrap;
        align-items: start;
    }

    .story-stream-l7__media {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .story-stream-l7__content {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .story-stream-l7__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-stream-l7__content p:first-child {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .story-stream-l7__content h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-stream-l7__content strong {
        display: block;
        margin-top: .75rem;
    }

    .story-stream-l7__copy {
        margin: .75rem 0 0;
        color: var(--neutral-600);
    }

    .story-stream-l7__content a {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

.mission--colored-v5 {
    padding: 64px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
}

.mission__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
}

.mission__eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--brand);
    margin: 0 0 0.5rem;
    font-weight: 500;
}

.mission__title {
    margin: 0 0 8px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.mission__text {
    margin: 0;
    color: var(--neutral-300);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.mission__pillar {
    border-radius: 0;
    padding: 16px 18px;
    border: 1px solid var(--surface-border);
    background: var(--surface-1);
}

.mission__pillar--impact {
    border-color: var(--brand);
}

.mission__pillar--safety {
    border-color: var(--brand);
}

.mission__pillar--focus {
    border-color: var(--brand);
}

.mission__pillar h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--brand);
    font-weight: 500;
}

.mission__pillar p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-300);
    line-height: 1.6;
}

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

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

.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;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
}

.cta-button {
    background-color: var(--brand);
    color: var(--brand-contrast);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-primary-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
    .cta-button {
        margin-left: auto;
        margin-right: var(--space-x);
    }
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 1rem;
    }
    .footer-offer {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        opacity: 0.9;
        flex-grow: 1;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
    }
    .social-links a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s, padding-left 0.3s;
        display: inline-block;
    }
    .footer-nav a:hover {
        color: #f1c40f;
        padding-left: 5px;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: auto;
    }
    .legal-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .legal-links a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .contact-block p {
        margin-bottom: 0.8rem;
        margin-top: 0;
    }
    .contact-block a {
        color: #ecf0f1;
        text-decoration: none;
    }
    .contact-block a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.75rem;
        color: #95a5a6;
        margin-top: 1.5rem;
        border-top: 1px solid #34495e;
        padding-top: 1rem;
        line-height: 1.4;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 2.5rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.85rem;
        color: #bdc3c7;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            align-items: flex-start;
        }
        .social-links {
            justify-content: flex-start;
        }
        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.hiw-zigzag-c3 {
        padding: clamp(3.6rem, 8vw, 6.1rem) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
        position: relative;
        overflow: hidden;
    }
    .hiw-zigzag-c3::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://images.pexels.com/photos/5668473/pexels-photo-5668473.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-size: cover;
        background-position: center;
        opacity: 0.15;
        z-index: 0;
    }
    .hiw-zigzag-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    .hiw-zigzag-c3__head {
        max-width: 42rem;
        margin: 0 auto 3.25rem;
        text-align: center;
    }
    .hiw-zigzag-c3__head h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--brand);
        font-weight: 600;
        letter-spacing: -0.02em;
    }
    .hiw-zigzag-c3__head p {
        margin: .55rem 0 0;
        color: var(--neutral-300);
        font-size: 1.1rem;
        line-height: 1.6;
    }
    .hiw-zigzag-c3__grid {
        display: grid;
        gap: 3.5rem;
    }
    .hiw-zigzag-c3__grid article {
        width: min(40rem, 60%);
        padding: 2.5rem;
        background: var(--surface-1);
        border-left: 3px solid var(--brand);
        position: relative;
    }
    .hiw-zigzag-c3__grid article::after {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        background: var(--brand);
        top: 2.8rem;
        left: -9.5px;
        border-radius: 0;
        transform: rotate(45deg);
    }
    .hiw-zigzag-c3__grid article:nth-child(odd) {
        margin-right: auto;
    }
    .hiw-zigzag-c3__grid article:nth-child(even) {
        margin-left: auto;
        border-left: none;
        border-right: 3px solid var(--brand);
    }
    .hiw-zigzag-c3__grid article:nth-child(even)::after {
        left: auto;
        right: -9.5px;
    }
    .hiw-zigzag-c3__num {
        display: inline-flex;
        min-width: 2.6rem;
        height: 2.6rem;
        align-items: center;
        justify-content: center;
        background: var(--brand);
        color: var(--brand-contrast);
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 1rem;
        border-radius: 0;
    }
    .hiw-zigzag-c3__grid h3 {
        margin: .75rem 0 .35rem;
        color: var(--fg-on-surface);
        font-size: 1.5rem;
        font-weight: 500;
    }
    .hiw-zigzag-c3__grid p {
        margin: 0;
        color: var(--neutral-300);
        line-height: 1.7;
    }

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

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

    .index-feedback-summary__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);
        transform: translateY(-18px);
    }

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

    .index-feedback-summary__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .index-feedback-summary__layout {
        display: grid;
        grid-template-columns: minmax(260px, 340px) 1fr;
        gap: clamp(16px, 3vw, 28px);
        align-items: start;
    }

    .index-feedback-summary__panel {
        border-radius: var(--radius-xl);
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        padding: clamp(18px, 3vw, 26px);
        box-shadow: var(--shadow-md);

        transform: translateY(22px);
        position: sticky;
        top: 16px;
    }

    .index-feedback-summary__kpi {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 14px;
    }

    .index-feedback-summary__avg {
        width: 72px;
        height: 72px;
        border-radius: 22px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 22px;
        color: var(--brand);
        box-shadow: var(--shadow-sm);
    }

    .index-feedback-summary__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 14px;
        line-height: 1;
        margin-bottom: 6px;
    }

    .index-feedback-summary__count {
        font-size: 12px;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .index-feedback-summary__note {
        color: var(--fg-on-accent);
        font-size: 14px;
    }

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

    .index-feedback-summary__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        padding: 18px 18px 16px;

        transform: translateY(22px);
    }

    .index-feedback-summary__head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

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

    .index-feedback-summary__avatar {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        color: var(--brand);
    }

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

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

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

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

    @media (max-width: 860px) {
        .index-feedback-summary__layout {
            grid-template-columns: 1fr;
        }

        .index-feedback-summary__panel {
            position: relative;
            top: 0;
        }
    }

.social-c1 {
        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-page);
        color: var(--fg-on-page);
        overflow: hidden;
        border-top: 1px solid var(--brand);
        border-bottom: 1px solid var(--brand);
    }

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

    .social-c1__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
        text-align: center;
    }

    .social-c1__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--brand);
    }

    .social-c1__sub {
        margin: 10px auto 0;
        max-width: 70ch;
        color: var(--neutral-300);
    }

    .social-c1__band {
        margin-top: 18px;
        border-radius: 0;
        border: 1px solid var(--brand);
        background: rgba(212, 175, 55, 0.05);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        position: relative;
    }

    .social-c1__band::before,
    .social-c1__band::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 90px;
        pointer-events: none;
        z-index: 1;
    }

    .social-c1__band::before {
        left: 0;
        background: linear-gradient(90deg, var(--bg-page), transparent);
    }

    .social-c1__band::after {
        right: 0;
        background: linear-gradient(270deg, var(--bg-page), transparent);
    }

    .social-c1__track {
        display: flex;
        gap: 18px;
        padding: var(--space-y) var(--space-x);
        width: max-content;
        animation: socialC1Marquee 18s linear infinite;
    }

    @keyframes socialC1Marquee {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-c1__logo {
        width: 140px;
        height: 86px;
        border-radius: 0;
        background: var(--surface-1);
        border: 1px solid var(--brand);
        display: grid;
        place-items: center;
        flex: 0 0 auto;
    }

    .social-c1__logo img {
        max-width: 78%;
        max-height: 70%;
        opacity: .92;
        filter: brightness(1.1) contrast(1.1);
    }

    .social-c1__stats {
        margin-top: 18px;
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 12px;
    }

    .social-c1__stat {
        grid-column: span 4;
        border-radius: 0;
        background: var(--surface-1);
        border: 1px solid var(--brand);
        box-shadow: var(--shadow-md);
        padding: 14px 16px;
        text-align: center;
    }

    .social-c1__num {
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
        color: var(--brand);
    }

    .social-c1__lbl {
        margin-top: 6px;
        color: var(--neutral-300);
    }

    @media (max-width: 900px) {
        .social-c1__stat {
            grid-column: span 6;
        }
    }

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

    @media (prefers-reduced-motion: reduce) {
        .social-c1__track {
            animation: none;
            transform: none;
        }
    }

.features-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

    .features-struct-v2 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .features-struct-v2 h2, .features-struct-v2 h3, .features-struct-v2 p {
        margin: 0
    }

    .features-struct-v2 .head {
        display: grid;
        gap: calc(var(--gap) * .35)
    }

    .features-struct-v2 .grid {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .features-struct-v2 article {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .9rem;
        display: grid;
        gap: .5rem
    }

    .features-struct-v2 .icon {
        min-height: 2rem;
        min-width: 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-1);
        border-radius: var(--radius-sm)
    }

    .features-struct-v2 a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .features-struct-v2 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

    .features-struct-v2 .chips {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem
    }

    .features-struct-v2 .chips span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        color: var(--brand);
        font-size: 0.9em;
    }

    .features-struct-v2 .list {
        display: grid;
        gap: .6rem
    }

    .features-struct-v2 .list div {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-left: 3px solid var(--brand);
    }

    .features-struct-v2 .list h3 {
        color: var(--brand);
    }

    .features-struct-v2 .timeline {
        display: grid;
        gap: .7rem
    }

    .features-struct-v2 .timeline article {
        position: relative;
        padding-left: 1.2rem
    }

    .features-struct-v2 .timeline article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .5rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .features-struct-v2 .side img, .features-struct-v2 .media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .features-struct-v2 .table {
        display: grid;
        gap: .45rem
    }

    .features-struct-v2 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .5rem;
        padding: .65rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v2 .cards {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v2 .cta {
        display: flex;
        justify-content: flex-start
    }

    .features-struct-v2 .split {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v2 details {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .features-struct-v2 .grid, .features-struct-v2 .cards {
            grid-template-columns:1fr 1fr
        }

        .features-struct-v2 .layout, .features-struct-v2 .split {
            grid-template-columns:1fr
        }
    }

    @media (max-width: 680px) {
        .features-struct-v2 .grid, .features-struct-v2 .cards, .features-struct-v2 .row {
            grid-template-columns:1fr
        }
    }

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

.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;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
}

.cta-button {
    background-color: var(--brand);
    color: var(--brand-contrast);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-primary-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
    .cta-button {
        margin-left: auto;
        margin-right: var(--space-x);
    }
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 1rem;
    }
    .footer-offer {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        opacity: 0.9;
        flex-grow: 1;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
    }
    .social-links a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s, padding-left 0.3s;
        display: inline-block;
    }
    .footer-nav a:hover {
        color: #f1c40f;
        padding-left: 5px;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: auto;
    }
    .legal-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .legal-links a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .contact-block p {
        margin-bottom: 0.8rem;
        margin-top: 0;
    }
    .contact-block a {
        color: #ecf0f1;
        text-decoration: none;
    }
    .contact-block a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.75rem;
        color: #95a5a6;
        margin-top: 1.5rem;
        border-top: 1px solid #34495e;
        padding-top: 1rem;
        line-height: 1.4;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 2.5rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.85rem;
        color: #bdc3c7;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            align-items: flex-start;
        }
        .social-links {
            justify-content: flex-start;
        }
        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.form-fresh-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .form-fresh-v5 .shell {
        max-width: 760px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .form-fresh-v5 .head p {
        margin: .35rem 0 0;
        opacity: .82;
    }

    .form-fresh-v5 .panel {
        display: grid;
        gap: .7rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .form-fresh-v5 label {
        display: grid;
        gap: .3rem;
    }

    .form-fresh-v5 span {
        font-size: .82rem;
        opacity: .85;
    }

    .form-fresh-v5 input {
        padding: .65rem .75rem;
        border: 1px solid var(--btn-ghost-bg-hover);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        font: inherit;
    }

    .form-fresh-v5 button {
        padding: .72rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
    }

.contacts-fresh-v2 {
        padding: calc(var(--space-y) * 2.2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .contacts-fresh-v2 .shell {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v2 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.2vw, 2.5rem);
        color: var(--brand);
    }

    .contacts-fresh-v2 .subtitle {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v2 .list {
        display: grid;
        gap: .75rem;
    }

    .contacts-fresh-v2 article {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .contacts-fresh-v2 .label {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: .9rem;
    }

    .contacts-fresh-v2 .value {
        margin: .2rem 0 0;
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .contacts-fresh-v2 a {
        padding: .5rem .8rem;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }
    .contacts-fresh-v2 a:hover {
        background: var(--bg-primary-hover);
    }

    @media (max-width: 700px) {
        .contacts-fresh-v2 article {
            flex-direction: column;
            align-items: flex-start;
        }
    }

.map-poster-c7 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .map-poster-c7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.25rem;
        flex-wrap: wrap;
        align-items: start;
    }

    .map-poster-c7__copy {
        flex: 1 1 18rem;
    }

    .map-poster-c7__embed {
        flex: 1 1 24rem;
    }

    .map-poster-c7__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .map-poster-c7__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .map-poster-c7__details {
        margin-top: 1rem;
        display: grid;
        gap: .75rem;
    }

    .map-poster-c7__details div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-poster-c7__details span {
        display: block;
        margin-top: .35rem;
        color: rgba(255, 255, 255, .84);
    }

    .map-poster-c7__embed iframe {
        display: block;
        width: 100%;
        min-height: 24rem;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-lg);
    }

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

.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;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
}

.cta-button {
    background-color: var(--brand);
    color: var(--brand-contrast);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-primary-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
    .cta-button {
        margin-left: auto;
        margin-right: var(--space-x);
    }
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 1rem;
    }
    .footer-offer {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        opacity: 0.9;
        flex-grow: 1;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
    }
    .social-links a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s, padding-left 0.3s;
        display: inline-block;
    }
    .footer-nav a:hover {
        color: #f1c40f;
        padding-left: 5px;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: auto;
    }
    .legal-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .legal-links a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .contact-block p {
        margin-bottom: 0.8rem;
        margin-top: 0;
    }
    .contact-block a {
        color: #ecf0f1;
        text-decoration: none;
    }
    .contact-block a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.75rem;
        color: #95a5a6;
        margin-top: 1.5rem;
        border-top: 1px solid #34495e;
        padding-top: 1rem;
        line-height: 1.4;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 2.5rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.85rem;
        color: #bdc3c7;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            align-items: flex-start;
        }
        .social-links {
            justify-content: flex-start;
        }
        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.terms-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--bg-accent), var(--surface-1));
        color: var(--fg-on-page);
    }

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

    .terms-layout-c .section-head {
        margin-bottom: 14px;
    }

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

    .terms-layout-c .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .terms-layout-c details {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        margin-bottom: 10px;
    }

    .terms-layout-c summary {
        cursor: pointer;
        color: var(--brand);
        font-weight: 700;
    }

    .terms-layout-c h4 {
        margin: 10px 0 6px;
    }

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

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

.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;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
}

.cta-button {
    background-color: var(--brand);
    color: var(--brand-contrast);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-primary-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
    .cta-button {
        margin-left: auto;
        margin-right: var(--space-x);
    }
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 1rem;
    }
    .footer-offer {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        opacity: 0.9;
        flex-grow: 1;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
    }
    .social-links a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s, padding-left 0.3s;
        display: inline-block;
    }
    .footer-nav a:hover {
        color: #f1c40f;
        padding-left: 5px;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: auto;
    }
    .legal-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .legal-links a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .contact-block p {
        margin-bottom: 0.8rem;
        margin-top: 0;
    }
    .contact-block a {
        color: #ecf0f1;
        text-decoration: none;
    }
    .contact-block a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.75rem;
        color: #95a5a6;
        margin-top: 1.5rem;
        border-top: 1px solid #34495e;
        padding-top: 1rem;
        line-height: 1.4;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 2.5rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.85rem;
        color: #bdc3c7;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            align-items: flex-start;
        }
        .social-links {
            justify-content: flex-start;
        }
        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

    .policy-layout-a .section-head {
        margin-bottom: 16px;
    }

    .policy-layout-a h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--brand);
    }

    .policy-layout-a .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-300);
        max-width: 72ch;
    }

    .policy-layout-a .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .policy-layout-a article {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        border-left: 3px solid var(--brand);
    }

    .policy-layout-a .meta {
        margin: 0;
        color: var(--brand);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .policy-layout-a h3 {
        margin: 8px 0;
        color: var(--fg-on-surface);
    }

    .policy-layout-a article p {
        margin: 0;
        color: var(--neutral-600);
    }

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

.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;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
}

.cta-button {
    background-color: var(--brand);
    color: var(--brand-contrast);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-primary-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
    .cta-button {
        margin-left: auto;
        margin-right: var(--space-x);
    }
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 1rem;
    }
    .footer-offer {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        opacity: 0.9;
        flex-grow: 1;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
    }
    .social-links a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s, padding-left 0.3s;
        display: inline-block;
    }
    .footer-nav a:hover {
        color: #f1c40f;
        padding-left: 5px;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: auto;
    }
    .legal-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .legal-links a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .contact-block p {
        margin-bottom: 0.8rem;
        margin-top: 0;
    }
    .contact-block a {
        color: #ecf0f1;
        text-decoration: none;
    }
    .contact-block a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.75rem;
        color: #95a5a6;
        margin-top: 1.5rem;
        border-top: 1px solid #34495e;
        padding-top: 1rem;
        line-height: 1.4;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 2.5rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.85rem;
        color: #bdc3c7;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            align-items: flex-start;
        }
        .social-links {
            justify-content: flex-start;
        }
        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.thank-mode-a {
        padding: clamp(56px, 10vw, 110px) 18px;
        background: var(--bg-page);
        color: var(--fg-on-page);
        position: relative;
        overflow: hidden;
    }
    .thank-mode-a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--brand), transparent);
    }
    .thank-mode-a .box {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
    }
    .thank-mode-a h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
        color: var(--brand);
        font-weight: 400;
        letter-spacing: -0.02em;
    }
    .thank-mode-a p {
        margin: 12px 0 0;
        opacity: .92;
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--neutral-300);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .thank-mode-a a {
        display: inline-block;
        margin-top: 32px;
        padding: 14px 32px;
        border-radius: 0;
        text-decoration: none;
        background: transparent;
        color: var(--brand);
        border: 1px solid var(--brand);
        font-weight: 500;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        font-size: 0.9rem;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .thank-mode-a a:hover {
        background: var(--brand);
        color: var(--brand-contrast);
    }

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

.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;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
}

.cta-button {
    background-color: var(--brand);
    color: var(--brand-contrast);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-primary-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
    .cta-button {
        margin-left: auto;
        margin-right: var(--space-x);
    }
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 1rem;
    }
    .footer-offer {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        opacity: 0.9;
        flex-grow: 1;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
    }
    .social-links a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s, padding-left 0.3s;
        display: inline-block;
    }
    .footer-nav a:hover {
        color: #f1c40f;
        padding-left: 5px;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: auto;
    }
    .legal-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .legal-links a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .contact-block p {
        margin-bottom: 0.8rem;
        margin-top: 0;
    }
    .contact-block a {
        color: #ecf0f1;
        text-decoration: none;
    }
    .contact-block a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.75rem;
        color: #95a5a6;
        margin-top: 1.5rem;
        border-top: 1px solid #34495e;
        padding-top: 1rem;
        line-height: 1.4;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 2.5rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.85rem;
        color: #bdc3c7;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            align-items: flex-start;
        }
        .social-links {
            justify-content: flex-start;
        }
        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.err-slab-a {
    padding: clamp(56px, 10vw, 110px) 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

.err-slab-a .box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.err-slab-a h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 58px);
    color: var(--brand);
}

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
    color: var(--fg-on-page);
}

.err-slab-a a {
    display: inline-block;
    margin-top: 18px;
    padding: 11px 18px;
    border-radius: var(--radius-md);
    background: var(--surface-1);
    color: var(--brand);
    text-decoration: none;
    border: 1px solid var(--border-on-surface);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.err-slab-a a:hover {
    background: var(--brand);
    color: var(--brand-contrast);
}