:root {
  --font-family: "Montserrat", sans-serif;
  --font-size-base: 15px;
  --line-height-base: 1.79;

  --max-w: 900px;
  --space-x: 1.68rem;
  --space-y: 1.5rem;
  --gap: 0.93rem;

  --radius-xl: 1.4rem;
  --radius-lg: 1rem;
  --radius-md: 0.7rem;
  --radius-sm: 0.3rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 10px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 32px rgba(0,0,0,0.1);

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

  --brand: #0052CC;
  --brand-contrast: #FFFFFF;
  --accent: #00B8D9;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D9E6;
  --neutral-600: #6B778C;
  --neutral-800: #253858;
  --neutral-900: #091E42;

  --bg-page: #FFFFFF;
  --fg-on-page: #091E42;

  --bg-alt: #F5F7FA;
  --fg-on-alt: #253858;

  --surface-1: #FFFFFF;
  --surface-2: #F5F7FA;
  --fg-on-surface: #253858;
  --border-on-surface: #D1D9E6;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #091E42;
  --border-on-surface-light: #D1D9E6;

  --bg-primary: #0052CC;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #0747A6;
  --ring: #0052CC;

  --bg-accent: #E6F7FF;
  --fg-on-accent: #003366;
  --bg-accent-hover: #0091B8;

  --link: #0052CC;
  --link-hover: #0747A6;

  --gradient-hero: linear-gradient(135deg, #0052CC 0%, #00B8D9 100%);
  --gradient-accent: linear-gradient(90deg, #E6F7FF 0%, #F0F9FF 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);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: relative;
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    width: 100%;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
    flex: 1;
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    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 {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.3;
}
.contact-phone {
    font-weight: 600;
    color: var(--fg-on-surface);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-phone:hover {
    color: var(--link-hover);
}
.contact-hours {
    font-size: calc(var(--font-size-base) * 0.85);
    color: var(--neutral-600);
}
.btn-action {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    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);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-action:hover {
    background-color: var(--bg-primary-hover);
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
    }
    .header-left {
        flex: 1 1 auto;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
    .header-right {
        display: none;
        width: 100%;
        order: 3;
        margin-top: var(--space-y);
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .header-right.active {
        display: flex;
    }
    .contact-block {
        align-items: center;
        margin-bottom: var(--space-y);
    }
    .burger-btn {
        display: flex;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer__top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer__logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
    }
    .footer__menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.8rem;
    }
    .footer__menu a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer__menu a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__middle {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer__contacts ul {
        list-style: none;
        margin: 0;
        padding: 0;
        line-height: 1.8;
    }
    .footer__contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer__contacts a:hover {
        text-decoration: underline;
    }
    .footer__bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
        line-height: 1.6;
    }
    .footer__legal {
        margin: 0.7rem 0;
    }
    .footer__legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer__legal a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .footer__disclaimer {
        margin-top: 1rem;
        font-size: 0.8rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer__top {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer__menu {
            flex-direction: column;
            gap: 1rem;
        }
        .footer__contacts ul {
            padding-left: 0;
        }
    }

.nfcookie-v8 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nfcookie-v8__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v8__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.intro-slab-l2 {
        padding: clamp(3.6rem, 8vw, 6.8rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .intro-slab-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        gap: 1rem;
    }

    .intro-slab-l2__main {
        padding: 1.2rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
    }

    .intro-slab-l2__main p {
        margin: 0;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .intro-slab-l2__main h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.3rem, 5vw, 4rem);
        line-height: 1.03;
    }

    .intro-slab-l2__main strong {
        display: block;
        margin-top: .8rem;
        color: var(--brand);
    }

    .intro-slab-l2__fact {
        margin-top: 1rem;
        padding: .85rem .95rem;
        border-left: 3px solid var(--bg-primary);
        background: var(--surface-1);
    }

    .intro-slab-l2__side {
        padding: 1.2rem;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        display: grid;
        align-content: center;
    }

    .intro-slab-l2__side span {
        color: var(--brand);
        font-weight: 700;
    }

    .intro-slab-l2__side p {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .intro-slab-l2__actions {
        margin-top: 1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-slab-l2__actions a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
        background: var(--surface-1);
    }

    .intro-slab-l2__actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

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

.next-signal-c7 {
        padding: clamp(3.7rem, 8vw, 6.3rem) var(--space-x);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .next-signal-c7__wrap {
        max-width: 60rem;
        margin: 0 auto;
        display: grid;
        grid-template-columns: .95fr 1.05fr;
        gap: 1rem;
        align-items: center;
    }

    .next-signal-c7__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
    }

    .next-signal-c7__copy h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3.1rem);
    }

    .next-signal-c7__copy span {
        display: block;
        margin-top: .85rem;

    }

    .next-signal-c7__stack {
        display: grid;
        gap: .7rem;
    }

    .next-signal-c7__stack a {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        padding: .9rem 1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .next-signal-c7__stack span {
        color: rgba(255, 255, 255, .8);
    }

    .next-signal-c7__button {
        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(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

    @media (max-width: 820px) {
        .next-signal-c7__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

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

    .index-recommendations-light__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 15%, rgba(248, 225, 231, 0.45), transparent 55%);
        pointer-events: none;
    }

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

    .index-recommendations-light__card p {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .touch-panorama .contact-form {
        margin-top: 24px;
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
        align-items: center;
    }

    .touch-panorama .contact-form input {
        flex-grow: 1;
        min-width: 200px;
        padding: 10px 14px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        font-family: var(--font-family);
        font-size: var(--font-size-base);
    }

    .touch-panorama .contact-form input::placeholder {
        color: var(--input-placeholder);
    }

    .touch-panorama .main {
        display: inline-block;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: none;
        cursor: pointer;
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .touch-panorama .main:hover {
        background: var(--bg-primary-hover);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: relative;
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    width: 100%;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
    flex: 1;
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    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 {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.3;
}
.contact-phone {
    font-weight: 600;
    color: var(--fg-on-surface);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-phone:hover {
    color: var(--link-hover);
}
.contact-hours {
    font-size: calc(var(--font-size-base) * 0.85);
    color: var(--neutral-600);
}
.btn-action {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    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);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-action:hover {
    background-color: var(--bg-primary-hover);
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
    }
    .header-left {
        flex: 1 1 auto;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
    .header-right {
        display: none;
        width: 100%;
        order: 3;
        margin-top: var(--space-y);
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .header-right.active {
        display: flex;
    }
    .contact-block {
        align-items: center;
        margin-bottom: var(--space-y);
    }
    .burger-btn {
        display: flex;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer__top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer__logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
    }
    .footer__menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.8rem;
    }
    .footer__menu a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer__menu a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__middle {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer__contacts ul {
        list-style: none;
        margin: 0;
        padding: 0;
        line-height: 1.8;
    }
    .footer__contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer__contacts a:hover {
        text-decoration: underline;
    }
    .footer__bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
        line-height: 1.6;
    }
    .footer__legal {
        margin: 0.7rem 0;
    }
    .footer__legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer__legal a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .footer__disclaimer {
        margin-top: 1rem;
        font-size: 0.8rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer__top {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer__menu {
            flex-direction: column;
            gap: 1rem;
        }
        .footer__contacts ul {
            padding-left: 0;
        }
    }

.nfcookie-v8 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nfcookie-v8__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v8__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

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

    .faq-layout-c .section-head {
        margin-bottom: 16px;
    }

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

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

    .faq-layout-c .faq-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
        counter-reset: faq;
    }

    .faq-layout-c .row {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .faq-layout-c .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        cursor: pointer;
    }

    .faq-layout-c .q span {
        display: inline-block;
        min-width: 50px;
        color: var(--brand);
        font-weight: 700;
    }

    .faq-layout-c .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-c .a p {
        margin: 0;
        padding: 0 12px 12px;
        color: var(--neutral-600);
    }

    .faq-layout-c .row.open .a {
        max-height: 240px;
    }

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

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

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

.gallery__strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery__thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    min-width: 120px;
}

.gallery__thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.identity-nv9 {
        padding: clamp(54px, 8vw, 98px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
    }

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

    .identity-nv9__head {
        margin-bottom: 16px;
    }

    .identity-nv9__head span {
        display: inline-flex;
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.2);
    }

    .identity-nv9__head h2 {
        margin: 8px 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .identity-nv9__head p {
        margin: 0;
        max-width: 70ch;
        opacity: .92;
    }

    .identity-nv9__list {
        display: grid;
        gap: 10px;
    }

    .identity-nv9__list article {
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 12px;
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .identity-nv9__list b {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: rgba(15, 23, 42, 0.45);
        color: var(--neutral-0);
        align-self: start;
    }

    .identity-nv9__list h3 {
        margin: 0;
    }

    .identity-nv9__list em {
        display: block;
        margin-top: 4px;
        font-style: normal;
        opacity: .95;
    }

    .identity-nv9__list p {
        margin: 7px 0 0;
        opacity: .9;
    }

    @media (max-width: 640px) {
        .identity-nv9__list article {
            grid-template-columns: 1fr;
        }
    }

.about-mission {

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: relative;
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    width: 100%;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
    flex: 1;
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    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 {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.3;
}
.contact-phone {
    font-weight: 600;
    color: var(--fg-on-surface);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-phone:hover {
    color: var(--link-hover);
}
.contact-hours {
    font-size: calc(var(--font-size-base) * 0.85);
    color: var(--neutral-600);
}
.btn-action {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    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);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-action:hover {
    background-color: var(--bg-primary-hover);
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
    }
    .header-left {
        flex: 1 1 auto;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
    .header-right {
        display: none;
        width: 100%;
        order: 3;
        margin-top: var(--space-y);
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .header-right.active {
        display: flex;
    }
    .contact-block {
        align-items: center;
        margin-bottom: var(--space-y);
    }
    .burger-btn {
        display: flex;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer__top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer__logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
    }
    .footer__menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.8rem;
    }
    .footer__menu a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer__menu a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__middle {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer__contacts ul {
        list-style: none;
        margin: 0;
        padding: 0;
        line-height: 1.8;
    }
    .footer__contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer__contacts a:hover {
        text-decoration: underline;
    }
    .footer__bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
        line-height: 1.6;
    }
    .footer__legal {
        margin: 0.7rem 0;
    }
    .footer__legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer__legal a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .footer__disclaimer {
        margin-top: 1rem;
        font-size: 0.8rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer__top {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer__menu {
            flex-direction: column;
            gap: 1rem;
        }
        .footer__contacts ul {
            padding-left: 0;
        }
    }

.nfcookie-v8 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nfcookie-v8__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v8__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.features {
    padding: clamp(48px, 8vw, 80px) 0;
    background-color: var(--bg-page);
    color: var(--fg-on-page);
}

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

.features__title {
    text-align: left;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: calc(var(--gap) * 1.5);
}

.features__card {
    background-color: var(--surface-2);
    padding: clamp(16px, 3vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: left;
    border: 1px solid var(--border-on-surface);
}

.features__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.features__icon {
    font-size: 2.2rem;
    color: var(--brand);
    margin-bottom: var(--space-y);
}

.features__icon--chip {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.features__card h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-surface);
}

.features__card p {
    color: var(--fg-on-surface-light);
    margin: 0 auto;
}

.plans-cv2 {
        padding: clamp(54px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .plans-cv2__head {
        margin-bottom: 16px;
    }

    .plans-cv2__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv2__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .plans-cv2__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .plans-cv2__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: var(--space-y) var(--space-x);
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .plans-cv2__card.is-active {
        transform: translateY(-4px);
        border-color: var(--bg-accent);
    }

    .plans-cv2__line {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        align-items: center;
    }

    .plans-cv2__line h3 {
        margin: 0;
    }

    .plans-cv2__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .plans-cv2__price {
        margin: 10px 0 8px;
        font-size: 1.45rem;
        font-weight: 800;
    }

    .plans-cv2__list p {
        margin: 0 0 6px;
        opacity: .92;
    }

    .plans-cv2__card button {
        width: 100%;
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.hiw-canvas-l8 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .hiw-canvas-l8__media {
        flex: 1 1 18rem;
        order: calc(3 - var(--random-number));
    }

    .hiw-canvas-l8__content {
        flex: 1 1 22rem;
        order: var(--random-number);
    }

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

    .hiw-canvas-l8__content p:first-child {
        margin: 0;
        color: var(--neutral-600);
    }

    .hiw-canvas-l8__content h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hiw-canvas-l8__stack p {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .hiw-canvas-l8__notes {
        margin-top: 1rem;
        display: flex;
        gap: .65rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .hiw-canvas-l8__notes strong {
        color: var(--brand);
        margin-right: .25rem;
    }

    .hiw-canvas-l8__notes span {
        display: inline-flex;
        padding: .55rem .8rem;
        border-radius: 999px;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

.about-struct-v3 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

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

    .about-struct-v3 h2, .about-struct-v3 h3, .about-struct-v3 p {
        margin: 0
    }

    .about-struct-v3 .split, .about-struct-v3 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v3 .split img, .about-struct-v3 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v3 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v3 .split div {
        display: grid;
        gap: .5rem
    }

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

    .about-struct-v3 article, .about-struct-v3 .values div, .about-struct-v3 .facts div, .about-struct-v3 .quote, .about-struct-v3 .statement {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v3 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v3 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .about-struct-v3 .values, .about-struct-v3 .facts {
        display: grid;
        gap: .6rem
    }

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

    .about-struct-v3 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v3 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v3 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

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

    @media (max-width: 900px) {
        .about-struct-v3 .split, .about-struct-v3 .duo, .about-struct-v3 .cards, .about-struct-v3 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v3 .split, .about-struct-v3 .duo, .about-struct-v3 .cards, .about-struct-v3 .gallery {
            grid-template-columns:1fr
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: relative;
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    width: 100%;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
    flex: 1;
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    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 {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.3;
}
.contact-phone {
    font-weight: 600;
    color: var(--fg-on-surface);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-phone:hover {
    color: var(--link-hover);
}
.contact-hours {
    font-size: calc(var(--font-size-base) * 0.85);
    color: var(--neutral-600);
}
.btn-action {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    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);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-action:hover {
    background-color: var(--bg-primary-hover);
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
    }
    .header-left {
        flex: 1 1 auto;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
    .header-right {
        display: none;
        width: 100%;
        order: 3;
        margin-top: var(--space-y);
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .header-right.active {
        display: flex;
    }
    .contact-block {
        align-items: center;
        margin-bottom: var(--space-y);
    }
    .burger-btn {
        display: flex;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer__top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer__logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
    }
    .footer__menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.8rem;
    }
    .footer__menu a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer__menu a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__middle {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer__contacts ul {
        list-style: none;
        margin: 0;
        padding: 0;
        line-height: 1.8;
    }
    .footer__contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer__contacts a:hover {
        text-decoration: underline;
    }
    .footer__bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
        line-height: 1.6;
    }
    .footer__legal {
        margin: 0.7rem 0;
    }
    .footer__legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer__legal a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .footer__disclaimer {
        margin-top: 1rem;
        font-size: 0.8rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer__top {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer__menu {
            flex-direction: column;
            gap: 1rem;
        }
        .footer__contacts ul {
            padding-left: 0;
        }
    }

.nfcookie-v8 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nfcookie-v8__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v8__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.connect {
        color: var(--accent-contrast);
        background: var(--accent);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .connect .connect__header {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 56px);
    }

    .connect .connect__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

    .connect .connect__header p {
        font-size: clamp(16px, 2vw, 18px);
        margin: 0;
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: clamp(20px, 3vw, 28px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .connect .connect__item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .connect .connect__icon {
        font-size: clamp(40px, 7vw, 64px);
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

    .connect .connect__name {
        font-size: clamp(16px, 2.5vw, 18px);
        font-weight: 600;
        color: var(--fg-on-page);
    }

.nfcontacts-v8 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .nfcontacts-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

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

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

    .nfcontacts-v8__intro span {
        color: var(--neutral-600);
    }

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

    .nfcontacts-v8__cards article {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        padding: 14px;
    }

    .nfcontacts-v8__cards h3 {
        margin: 0 0 6px;
    }

    .nfcontacts-v8__cards p {
        margin: 0;
        font-weight: 700;
    }

    .nfcontacts-v8__cards small {
        display: block;
        margin-top: 5px;
        color: var(--neutral-600);
    }

    .nfcontacts-v8__cards a {
        display: inline-block;
        margin-top: 8px;
        color: var(--link);
        text-decoration: none;
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: relative;
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    width: 100%;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
    flex: 1;
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    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 {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.3;
}
.contact-phone {
    font-weight: 600;
    color: var(--fg-on-surface);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-phone:hover {
    color: var(--link-hover);
}
.contact-hours {
    font-size: calc(var(--font-size-base) * 0.85);
    color: var(--neutral-600);
}
.btn-action {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    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);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-action:hover {
    background-color: var(--bg-primary-hover);
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
    }
    .header-left {
        flex: 1 1 auto;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
    .header-right {
        display: none;
        width: 100%;
        order: 3;
        margin-top: var(--space-y);
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .header-right.active {
        display: flex;
    }
    .contact-block {
        align-items: center;
        margin-bottom: var(--space-y);
    }
    .burger-btn {
        display: flex;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer__top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer__logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
    }
    .footer__menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.8rem;
    }
    .footer__menu a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer__menu a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__middle {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer__contacts ul {
        list-style: none;
        margin: 0;
        padding: 0;
        line-height: 1.8;
    }
    .footer__contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer__contacts a:hover {
        text-decoration: underline;
    }
    .footer__bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
        line-height: 1.6;
    }
    .footer__legal {
        margin: 0.7rem 0;
    }
    .footer__legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer__legal a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .footer__disclaimer {
        margin-top: 1rem;
        font-size: 0.8rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer__top {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer__menu {
            flex-direction: column;
            gap: 1rem;
        }
        .footer__contacts ul {
            padding-left: 0;
        }
    }

.nfcookie-v8 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nfcookie-v8__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v8__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

    .terms-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .terms-layout-f .section-head {
        margin-bottom: 16px;
    }

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

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

    .terms-layout-f .list {
        display: grid;
        gap: 14px;
    }

    .terms-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        padding: var(--space-y) var(--space-x);
    }

    .terms-layout-f h3 {
        margin: 0 0 8px;
        color: var(--brand);
    }

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: relative;
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    width: 100%;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
    flex: 1;
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    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 {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.3;
}
.contact-phone {
    font-weight: 600;
    color: var(--fg-on-surface);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-phone:hover {
    color: var(--link-hover);
}
.contact-hours {
    font-size: calc(var(--font-size-base) * 0.85);
    color: var(--neutral-600);
}
.btn-action {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    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);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-action:hover {
    background-color: var(--bg-primary-hover);
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
    }
    .header-left {
        flex: 1 1 auto;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
    .header-right {
        display: none;
        width: 100%;
        order: 3;
        margin-top: var(--space-y);
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .header-right.active {
        display: flex;
    }
    .contact-block {
        align-items: center;
        margin-bottom: var(--space-y);
    }
    .burger-btn {
        display: flex;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer__top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer__logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
    }
    .footer__menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.8rem;
    }
    .footer__menu a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer__menu a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__middle {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer__contacts ul {
        list-style: none;
        margin: 0;
        padding: 0;
        line-height: 1.8;
    }
    .footer__contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer__contacts a:hover {
        text-decoration: underline;
    }
    .footer__bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
        line-height: 1.6;
    }
    .footer__legal {
        margin: 0.7rem 0;
    }
    .footer__legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer__legal a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .footer__disclaimer {
        margin-top: 1rem;
        font-size: 0.8rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer__top {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer__menu {
            flex-direction: column;
            gap: 1rem;
        }
        .footer__contacts ul {
            padding-left: 0;
        }
    }

.nfcookie-v8 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nfcookie-v8__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v8__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.terms-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

    .terms-layout-d .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .terms-layout-d .section-head {
        margin-bottom: 16px;
    }

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

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

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: relative;
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    width: 100%;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
    flex: 1;
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    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 {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.3;
}
.contact-phone {
    font-weight: 600;
    color: var(--fg-on-surface);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-phone:hover {
    color: var(--link-hover);
}
.contact-hours {
    font-size: calc(var(--font-size-base) * 0.85);
    color: var(--neutral-600);
}
.btn-action {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    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);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-action:hover {
    background-color: var(--bg-primary-hover);
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
    }
    .header-left {
        flex: 1 1 auto;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
    .header-right {
        display: none;
        width: 100%;
        order: 3;
        margin-top: var(--space-y);
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .header-right.active {
        display: flex;
    }
    .contact-block {
        align-items: center;
        margin-bottom: var(--space-y);
    }
    .burger-btn {
        display: flex;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer__top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer__logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
    }
    .footer__menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.8rem;
    }
    .footer__menu a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer__menu a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__middle {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer__contacts ul {
        list-style: none;
        margin: 0;
        padding: 0;
        line-height: 1.8;
    }
    .footer__contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer__contacts a:hover {
        text-decoration: underline;
    }
    .footer__bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
        line-height: 1.6;
    }
    .footer__legal {
        margin: 0.7rem 0;
    }
    .footer__legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer__legal a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .footer__disclaimer {
        margin-top: 1rem;
        font-size: 0.8rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer__top {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer__menu {
            flex-direction: column;
            gap: 1rem;
        }
        .footer__contacts ul {
            padding-left: 0;
        }
    }

.nfcookie-v8 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nfcookie-v8__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v8__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.thank-mode-f {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .thank-mode-f .shell {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        border: 1px solid var(--border-on-surface-light);
    }

    .thank-mode-f h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
        color: var(--brand);
    }

    .thank-mode-f p {
        margin: 12px 0 0;
        color: var(--neutral-600);
    }

    .thank-mode-f a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: relative;
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    width: 100%;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
    flex: 1;
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    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 {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.3;
}
.contact-phone {
    font-weight: 600;
    color: var(--fg-on-surface);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-phone:hover {
    color: var(--link-hover);
}
.contact-hours {
    font-size: calc(var(--font-size-base) * 0.85);
    color: var(--neutral-600);
}
.btn-action {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    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);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-action:hover {
    background-color: var(--bg-primary-hover);
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
    }
    .header-left {
        flex: 1 1 auto;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
    .header-right {
        display: none;
        width: 100%;
        order: 3;
        margin-top: var(--space-y);
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .header-right.active {
        display: flex;
    }
    .contact-block {
        align-items: center;
        margin-bottom: var(--space-y);
    }
    .burger-btn {
        display: flex;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer__top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer__logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
    }
    .footer__menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.8rem;
    }
    .footer__menu a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer__menu a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__middle {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer__contacts ul {
        list-style: none;
        margin: 0;
        padding: 0;
        line-height: 1.8;
    }
    .footer__contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer__contacts a:hover {
        text-decoration: underline;
    }
    .footer__bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
        line-height: 1.6;
    }
    .footer__legal {
        margin: 0.7rem 0;
    }
    .footer__legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer__legal a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .footer__disclaimer {
        margin-top: 1rem;
        font-size: 0.8rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer__top {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer__menu {
            flex-direction: column;
            gap: 1rem;
        }
        .footer__contacts ul {
            padding-left: 0;
        }
    }

.nfcookie-v8 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nfcookie-v8__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v8__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.err-slab-d {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: var(--accent);
        color: var(--neutral-0);
    }

    .err-slab-d .plate {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 50px);
        border-radius: var(--radius-xl);
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .err-slab-d p {
        margin: 12px 0 0;
        color: var(--neutral-100);
    }

    .err-slab-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
        text-decoration: none;
    }