:root {
  --font-family: "Epilogue", sans-serif;
  --font-size-base: 15.1px;
  --line-height-base: 1.49;

  --max-w: 1280px;
  --space-x: 1.29rem;
  --space-y: 1.5rem;
  --gap: 0.9rem;

  --radius-xl: 1rem;
  --radius-lg: 0.75rem;
  --radius-md: 0.37rem;
  --radius-sm: 0.29rem;

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.11);
  --shadow-md: 0 5px 10px rgba(0,0,0,0.14);
  --shadow-lg: 0 18px 32px rgba(0,0,0,0.18);

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

  --brand: #2563eb;
  --brand-contrast: #ffffff;
  --accent: #7c3aed;
  --accent-contrast: #ffffff;

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

  --bg-page: #ffffff;
  --fg-on-page: #1e293b;

  --bg-alt: #f8fafc;
  --fg-on-alt: #334155;

  --surface-1: #ffffff;
  --surface-2: #f8fafc;
  --fg-on-surface: #1e293b;
  --border-on-surface: #e2e8f0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #475569;
  --border-on-surface-light: #f1f5f9;

  --bg-primary: #2563eb;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d4ed8;
  --ring: #3b82f6;

  --bg-accent: #f5f3ff;
  --fg-on-accent: #7c3aed;
  --bg-accent-hover: #6d28d9;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  --gradient-accent: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);

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

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

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

.site-nav {
    order: 2;
    width: 100%;
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
}

.nav-item {
    margin: 0;
}

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

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

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: static;
    }

    .site-nav {
        order: 4;
        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);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
    }

    .site-nav.is-open {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-y) var(--space-x);
        gap: calc(var(--gap) / 2);
    }

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact p {
        margin: 0.4rem 0;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #dee2e6;
        padding-top: 1.5rem;
        grid-column: 1 / -1;
    }
    .footer-links {
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #495057;
        text-decoration: underline;
    }
    .footer-copyright {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 3rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

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

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.intro-focus {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(60px, 10vw, 120px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .intro-focus::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: floatOrb 20s ease-in-out infinite;
    }

    @keyframes floatOrb {
        0%, 100% {
            transform: translate(0, 0) scale(1);
        }
        33% {
            transform: translate(-30px, 40px) scale(1.1);
        }
        66% {
            transform: translate(20px, -30px) scale(0.9);
        }
    }

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

    .intro-focus .intro-focus__content {
        max-width: 800px;
        display: flex;
        flex-direction: column;
    }

    .intro-focus .intro-focus__badge {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        border-radius: var(--radius-xl);
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 1.5rem;

        transform: translateY(20px);
    }

    .intro-focus .intro-focus__title {
        font-size: clamp(36px, 7vw, 64px);
        font-weight: 800;
        margin: 0 0 1.5rem;
        line-height: 1.1;

        transform: translateY(30px);
    }

    .intro-focus .intro-focus__subtitle {
        font-size: clamp(18px, 2.5vw, 24px);
        margin: 0 0 2rem;
        opacity: 0.95;
        line-height: var(--line-height-base);

        transform: translateY(30px);
    }

    .intro-focus .intro-focus__heading {
        padding-top: 1rem;
        order: 2;
    }

    .intro-focus .intro-focus__highlight {
        order: var(--random-number);
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 2rem 3rem;
        background: var(--surface-light);
        border-radius: var(--radius-lg);
        border: 2px solid rgba(255, 255, 255, 0.2);

        transform: scale(0.9);
    }

    .intro-focus .intro-focus__number {
        color: var(--fg-on-surface-light);
        font-size: clamp(48px, 8vw, 72px);
        font-weight: 900;
        line-height: 1;
    }

    .intro-focus .intro-focus__label {
        font-size: clamp(14px, 1.5vw, 18px);
        color: var(--fg-on-surface-light);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

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

    .next-check .wrap {
        max-width: 780px;
        margin: 0 auto;
        background: var(--neutral-0);
        border: 1px solid var(--border-on-surface-light);
        border-radius: 18px;
        padding: clamp(18px, 3vw, 28px);
    }

    .next-check .k {
        margin: 0;
        color: var(--bg-primary);
        font-weight: 600;
    }

    .next-check h2 {
        margin: 8px 0;
        font-size: clamp(30px, 4.2vw, 44px);
    }

    .next-check .text {
        margin: 0;
        color: var(--fg-on-accent);
    }

    .next-check ul {
        margin: 14px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .next-check li a {
        text-decoration: none;
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface-light);
        background: var(--surface-2);
        border-radius: 10px;
        padding: 9px 12px;
        display: flex;
        justify-content: space-between;
        gap: 8px;
    }

    .next-check .cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 10px 14px;
    }

.value-grid {
        padding: clamp(60px, 8vw, 110px) clamp(16px, 3vw, 40px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .value-grid .header {
        text-align: center;
        margin-bottom: 14px;
    }

    .value-grid h2 {
        margin: 0;
        font-size: clamp(30px, 4.8vw, 52px);
        color: var(--fg-on-surface);
    }

    .value-grid .header p {
        margin: 10px 0 0;
        opacity: 0.9;
        color: var(--fg-on-surface);
    }

    .value-grid .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 12px;
    }

    .value-grid article {
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        padding: var(--space-y) var(--space-x);
    }

    .value-grid .icon {
        margin: 0 0 8px;
        font-size: 1.5rem;
    }

    .value-grid h3 {
        margin: 0 0 6px;
        color: var(--fg-on-surface);
    }

    .value-grid article p {
        margin: 0 0 6px;
        opacity: 0.9;
        color: var(--fg-on-surface);
    }

    .value-grid article span {
        font-size: .85rem;
        opacity: 0.8;
        color: var(--fg-on-surface);
    }

.social-l2 {

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

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

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

    .social-l2__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

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

    .social-l2__wrap {
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-l2__quoteBox {
        padding: 18px;
        border-bottom: 1px solid var(--border-on-surface);
        position: relative;
    }

    .social-l2__quote {
        display: none;
    }

    .social-l2__quote.is-on {
        display: block;
    }

    .social-l2__q {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
    }

    .social-l2__m {
        margin-top: 12px;
        color: var(--neutral-600);
        font-weight: 800;
    }

    .social-l2__badges {
        overflow: hidden;
        background: var(--bg-alt);
    }

    .social-l2__badgeTrack {
        display: flex;
        gap: 10px;
        padding: 12px;
        width: max-content;
        animation: socialL2Badges 16s linear infinite;
    }

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

    .social-l2__badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        white-space: nowrap;
    }

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

.capabilities-spectrum {

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

    .capabilities-spectrum::before,
    .capabilities-spectrum::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 55%);
        
        opacity: 0.6;
    }

    .capabilities-spectrum::after {
        background: radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.12), transparent 50%);
    }

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

    .capabilities-spectrum__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 88px);

        transform: translateY(-20px);
    }

    .capabilities-spectrum__eyebrow {
        font-size: clamp(14px, 2vw, 18px);
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--accent, #ff9d5c);
        margin: 0 0 0.75rem;
    }

    .capabilities-spectrum h2 {
        font-size: clamp(34px, 5vw, 60px);
        font-weight: 800;
        line-height: 1.1;
        margin: 0;
        color: var(--neutral-900);
    }

    .capabilities-spectrum__mosaic {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(20px, 3vw, 32px);
        position: relative;
    }

    .capabilities-spectrum__mosaic::before {
        content: '';
        position: absolute;
        inset: 10%;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-xxl, 32px);
        pointer-events: none;
    }

    .capabilities-spectrum__tile {
        background: var(--surface-1, rgba(14, 16, 32, 0.8));
        backdrop-filter: blur(14px);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 36px);
        position: relative;
        overflow: hidden;
        isolation: isolate;
        border: 1px solid rgba(255, 255, 255, 0.08);

        transform: translateY(40px) scale(0.97);
    }

    .capabilities-spectrum__halo {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 65%);

        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .capabilities-spectrum__tile:hover .capabilities-spectrum__halo {
        opacity: 1;
    }

    .capabilities-spectrum__meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1.5rem;
    }

    .capabilities-spectrum__step {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        font-weight: 700;
        font-size: 18px;
        color: var(--accent-contrast, #0c0a0f);
        background: var(--accent, #ff9d5c);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    }

    .capabilities-spectrum__icon {
        font-size: 42px;
        color: var(--fg-on-primary);
        filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.7));
    }

    .capabilities-spectrum__tile h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(20px, 2.5vw, 26px);
        font-weight: 700;
        color: var(--fg-on-surface-light, #f5f5ff);
    }

    .capabilities-spectrum__tile p {
        margin: 0;
        color: var(--neutral-300, rgba(255, 255, 255, 0.78));
        line-height: var(--line-height-base, 1.6);
    }

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

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

.site-nav {
    order: 2;
    width: 100%;
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
}

.nav-item {
    margin: 0;
}

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

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

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: static;
    }

    .site-nav {
        order: 4;
        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);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
    }

    .site-nav.is-open {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-y) var(--space-x);
        gap: calc(var(--gap) / 2);
    }

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact p {
        margin: 0.4rem 0;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #dee2e6;
        padding-top: 1.5rem;
        grid-column: 1 / -1;
    }
    .footer-links {
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #495057;
        text-decoration: underline;
    }
    .footer-copyright {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 3rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

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

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.product-list {

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

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

    .product-list .product-list__header-wrapper {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: clamp(24px, 4vw, 48px);
        align-items: start;
        margin-bottom: clamp(32px, 5vw, 56px);
    }

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

    @media (max-width: 1023px) {
        .product-list .product-list__header-wrapper {
            grid-template-columns: 1fr;
        }
    }

    .product-list .product-list__h {
        text-align: left;
    }

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

    .product-list .product-list__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
        line-height: 1.6;
    }

    .product-list .product-list__filters {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        min-width: 200px;
    }

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

    @media (max-width: 1023px) {
        .product-list .product-list__filters {
            flex-direction: row;
            flex-wrap: wrap;
            min-width: auto;
        }
    }

    .product-list .product-list__filter {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 500;
        text-align: left;
    }

    @media (max-width: 1023px) {
        .product-list .product-list__filter {
            text-align: center;
        }
    }

    .product-list .product-list__filter:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        transform: translateX(4px);
    }

    .product-list .product-list__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2.5vw, 24px);
    }

    .product-list .product-list__card {
        background: var(--surface-light);
        border: 2px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(20px, 3vw, 32px);
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        display: grid;
        grid-template-columns: 50% 1fr auto;
        gap: clamp(20px, 3vw, 32px);
        align-items: center;
    }

    .product-list .product-list__card:hover {
        border-color: var(--bg-primary);
        box-shadow: var(--shadow-lg);
        transform: translateX(8px);
    }

    .product-list .product-list__image {
        width: 100%;
        height: 180px;
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .product-list .product-list__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__image img {
        transform: scale(1.05);
    }

    .product-list .product-list__info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        flex: 1;
    }

    .product-list .product-list__main {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .product-list h3 {
        margin: 0;
        font-size: clamp(20px, 2.8vw, 24px);
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .product-list .product-list__description {
        color: var(--neutral-600);
        line-height: 1.6;
        margin: 0;
        font-size: 0.95rem;
    }

    .product-list .product-list__meta {
        display: flex;
        gap: 0.5rem;
        align-items: center;
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

    .product-list .product-list__rating {
        font-weight: 600;
        color: var(--accent);
    }

    .product-list .product-list__actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-end;
        min-width: 180px;
    }

    .product-list .product-list__price {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0;
        text-align: right;
    }

    .product-list .product-list__btn {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        width: 100%;
        text-align: center;
    }

    .product-list .product-list__btn:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .product-list__image img {
        width: 100%;
    }
    @media (max-width: 1023px) {
        .product-list .product-list__card {
            grid-template-columns: 1fr;
        }

        .product-list .product-list__image {
            height: 240px;
        }

        .product-list .product-list__actions {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            min-width: auto;
        }

        .product-list .product-list__price {
            text-align: left;
        }

        .product-list .product-list__btn {
            width: auto;
        }
    }

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

    .touch-gridline .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .touch-gridline .list {
        display: grid;
        gap: 8px;
    }

    .touch-gridline .row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .touch-gridline .title {
        margin: 0 0 4px;
        font-weight: 600;
    }

    .touch-gridline .text {
        margin: 0;
        color: var(--neutral-600);
    }

    .touch-gridline .row a {
        color: var(--link);
        text-decoration: none;
    }

    .touch-gridline .cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        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: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

.site-nav {
    order: 2;
    width: 100%;
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
}

.nav-item {
    margin: 0;
}

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

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

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: static;
    }

    .site-nav {
        order: 4;
        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);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
    }

    .site-nav.is-open {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-y) var(--space-x);
        gap: calc(var(--gap) / 2);
    }

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact p {
        margin: 0.4rem 0;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #dee2e6;
        padding-top: 1.5rem;
        grid-column: 1 / -1;
    }
    .footer-links {
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #495057;
        text-decoration: underline;
    }
    .footer-copyright {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 3rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

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

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.product-item {

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

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

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

    .product-item .product-item__main-image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

    .product-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

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

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

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

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

.site-nav {
    order: 2;
    width: 100%;
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
}

.nav-item {
    margin: 0;
}

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

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

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: static;
    }

    .site-nav {
        order: 4;
        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);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
    }

    .site-nav.is-open {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-y) var(--space-x);
        gap: calc(var(--gap) / 2);
    }

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact p {
        margin: 0.4rem 0;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #dee2e6;
        padding-top: 1.5rem;
        grid-column: 1 / -1;
    }
    .footer-links {
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #495057;
        text-decoration: underline;
    }
    .footer-copyright {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 3rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

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

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.product-item {

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

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

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

    .product-item .product-item__main-image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

    .product-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

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

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

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

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

.site-nav {
    order: 2;
    width: 100%;
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
}

.nav-item {
    margin: 0;
}

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

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

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: static;
    }

    .site-nav {
        order: 4;
        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);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
    }

    .site-nav.is-open {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-y) var(--space-x);
        gap: calc(var(--gap) / 2);
    }

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact p {
        margin: 0.4rem 0;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #dee2e6;
        padding-top: 1.5rem;
        grid-column: 1 / -1;
    }
    .footer-links {
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #495057;
        text-decoration: underline;
    }
    .footer-copyright {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 3rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

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

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

.product-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(22px,3.5vw,28px);
}

.product-item__price {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-primary);
}

.product-item__desc {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-600);
}

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

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

.site-nav {
    order: 2;
    width: 100%;
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
}

.nav-item {
    margin: 0;
}

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

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

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: static;
    }

    .site-nav {
        order: 4;
        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);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
    }

    .site-nav.is-open {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-y) var(--space-x);
        gap: calc(var(--gap) / 2);
    }

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact p {
        margin: 0.4rem 0;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #dee2e6;
        padding-top: 1.5rem;
        grid-column: 1 / -1;
    }
    .footer-links {
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #495057;
        text-decoration: underline;
    }
    .footer-copyright {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 3rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

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

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

    .contact-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .contact-layout-c .section-head {
        margin-bottom: 18px;
        text-align: center;
    }

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

    .contact-layout-c .section-head p {
        margin: 10px auto 0;
        max-width: 74ch;
        color: var(--neutral-600);
    }

    .contact-layout-c .stack {
        border-left: 3px solid var(--brand);
        padding-left: 16px;
        display: grid;
        gap: 12px;
    }

    .contact-layout-c .line h3 {
        margin: 0;
        font-size: 1rem;
        color: var(--brand);
    }

    .contact-layout-c .line p {
        margin: 4px 0 0;
    }

    .contact-layout-c .social-bar {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .contact-layout-c .social-bar a {
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .contact-layout-c .social-bar a:hover {
        transform: translateY(-2px);
    }

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

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

    .faq-layout-f .section-head {
        margin-bottom: 16px;
        text-align: center;
    }

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

    .faq-layout-f .section-head p {
        margin: 10px auto 0;
        color: var(--neutral-600);
        max-width: 68ch;
    }

    .faq-layout-f .table {
        display: grid;
        gap: 10px;
    }

    .faq-layout-f .line {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 12px;
        padding: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
    }

    .faq-layout-f .q {
        font-weight: 600;
        color: var(--brand);
    }

    .faq-layout-f .a {
        color: var(--neutral-600);
    }

    @media (max-width: 780px) {
        .faq-layout-f .line {
            grid-template-columns: 1fr;
        }
    }

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

    .form-layout-e .wrap {
        max-width: 820px;
        margin: 0 auto;
    }

    .form-layout-e .section-head {
        margin-bottom: 14px;
        text-align: center;
    }

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

    .form-layout-e .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        color: var(--neutral-100);
    }

    .form-layout-e .dark-card {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: rgba(255, 255, 255, .04);
    }

    .form-layout-e label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
    }

    .form-layout-e input:not([type="checkbox"]), .form-layout-e textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .07);
        color: var(--neutral-0);
        padding: 9px;
        font: inherit;
    }

    .form-layout-e .end {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 8px;
    }

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

    .form-layout-e button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

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

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

        transform: translateY(-18px);
    }

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

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

    .index-recommendations-steps__steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(16px, 3vw, 26px);
    }

    .index-recommendations-steps__step {
        position: relative;

        transform: translateY(26px);
    }

    .index-recommendations-steps__num {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        position: absolute;
        top: 18px;
        left: 50px;
        font-size: 12px;
        box-shadow: var(--shadow-md);
    }

    .index-recommendations-steps__box {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: 26px 18px 18px;
        height: 100%;
    }

    .index-recommendations-steps__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

    .index-recommendations-steps__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: var(--fg-on-accent);
        flex: 0 0 auto;
    }

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

    .index-recommendations-steps__box h3 {
        margin: 0 0 10px;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-surface-light);
    }

    .index-recommendations-steps__why {
        margin: 0 0 10px;
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--fg-on-surface-light);
        opacity: 0.75;
    }

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

    .index-recommendations-steps__cta {
        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-steps__cta::after {
        content: '->';
    }

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

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

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

.site-nav {
    order: 2;
    width: 100%;
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
}

.nav-item {
    margin: 0;
}

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

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

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: static;
    }

    .site-nav {
        order: 4;
        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);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
    }

    .site-nav.is-open {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-y) var(--space-x);
        gap: calc(var(--gap) / 2);
    }

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact p {
        margin: 0.4rem 0;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #dee2e6;
        padding-top: 1.5rem;
        grid-column: 1 / -1;
    }
    .footer-links {
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #495057;
        text-decoration: underline;
    }
    .footer-copyright {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 3rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

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

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.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: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

.site-nav {
    order: 2;
    width: 100%;
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
}

.nav-item {
    margin: 0;
}

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

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

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: static;
    }

    .site-nav {
        order: 4;
        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);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
    }

    .site-nav.is-open {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-y) var(--space-x);
        gap: calc(var(--gap) / 2);
    }

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact p {
        margin: 0.4rem 0;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #dee2e6;
        padding-top: 1.5rem;
        grid-column: 1 / -1;
    }
    .footer-links {
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #495057;
        text-decoration: underline;
    }
    .footer-copyright {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 3rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

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

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.thank-mode-d {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .thank-mode-d .core {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .24);
    }

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

    .thank-mode-d p {
        margin: 12px 0 0;
        opacity: .9;
    }

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

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

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

.site-nav {
    order: 2;
    width: 100%;
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
}

.nav-item {
    margin: 0;
}

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

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

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: static;
    }

    .site-nav {
        order: 4;
        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);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
    }

    .site-nav.is-open {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-y) var(--space-x);
        gap: calc(var(--gap) / 2);
    }

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact p {
        margin: 0.4rem 0;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #dee2e6;
        padding-top: 1.5rem;
        grid-column: 1 / -1;
    }
    .footer-links {
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #495057;
        text-decoration: underline;
    }
    .footer-copyright {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 3rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

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

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.err-slab-b {
    padding: clamp(56px, 10vw, 112px) 20px;
    background: var(--bg-alt);
    color: var(--fg-on-page);
}

.err-slab-b .frame {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(28px, 4vw, 46px);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-xl);
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
}

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

.err-slab-b p {
    margin: 10px 0 0;
    color: var(--neutral-600);
}

.err-slab-b a {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 17px;
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    text-decoration: none;
}