:root {
  --font-family: "DM Sans", sans-serif;
  --font-size-base: 14.9px;
  --line-height-base: 1.41;

  --max-w: 1080px;
  --space-x: 0.94rem;
  --space-y: 1.03rem;
  --gap: 0.9rem;

  --radius-xl: 0.91rem;
  --radius-lg: 0.75rem;
  --radius-md: 0.36rem;
  --radius-sm: 0.22rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 8px 14px rgba(0,0,0,0.15);
  --shadow-lg: 0 14px 38px rgba(0,0,0,0.19);

  --overlay: rgba(0, 0, 0, 0.45);
  --anim-duration: 190ms;
  --anim-ease: ease;
  --random-number: 1;

  --brand: #1a56db;
  --brand-contrast: #ffffff;
  --accent: #059669;
  --accent-contrast: #ffffff;

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

  --bg-page: #f1f5f9;
  --fg-on-page: #0f172a;

  --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: #e2e8f0;

  --bg-primary: #1a56db;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1e40af;
  --ring: #3b82f6;

  --bg-accent: #d1fae5;
  --fg-on-accent: #065f46;
  --bg-accent-hover: #10b981;

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

  --gradient-hero: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  --gradient-accent: linear-gradient(135deg, #1a56db 0%, #3b82f6 100%);

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

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }
    .header__logo:hover {
        color: var(--accent);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .burger__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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
    .header__nav {
        display: block;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-lg);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--surface-1);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) * 3);
        }
        .nav__link {
            font-size: calc(var(--font-size-base) * 1.2);
            padding: var(--space-y) var(--space-x);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        border-bottom: 1px solid #ddd;
        padding-bottom: 1.5rem;
    }
    @media (min-width: 768px) {
        .footer-brand {
            grid-column: span 1;
            text-align: left;
            border-bottom: none;
            border-right: 1px solid #ddd;
            padding-right: 2.5rem;
        }
        .footer-container {
            grid-template-columns: 2fr 1fr 1.5fr;
        }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #222;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #666;
        margin-bottom: 1rem;
        font-style: italic;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
    }
    .footer-legal-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-legal-links span {
        color: #ccc;
        margin: 0 0.5rem;
    }
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: #222;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        color: #555;
    }
    .footer-contact a {
        color: #555;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.intro-mosaic-c15 {
        padding: clamp(3.9rem, 9vw, 7rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .intro-mosaic-c15__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .intro-mosaic-c15__hero {
        flex: 1 1 24rem;
    }

    .intro-mosaic-c15__aside {
        flex: 1 1 18rem;
    }

    .intro-mosaic-c15__hero p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .intro-mosaic-c15__hero h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.8rem);
        line-height: 1.01;
    }

    .intro-mosaic-c15__hero span {
        display: block;
        margin-top: .9rem;
        color: rgba(255, 255, 255, .88);
        max-width: 40rem;
    }

    .intro-mosaic-c15__buttons {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-mosaic-c15__btn {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-mosaic-c15__btn--primary {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

    .intro-mosaic-c15__aside img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-mosaic-c15__stats {
        margin-top: .85rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .7rem;
    }

    .intro-mosaic-c15__stats div {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-mosaic-c15__stats strong, .intro-mosaic-c15__stats span {
        display: block;
    }

    .intro-mosaic-c15__stats span {
        margin-top: .25rem;
        color: rgba(255, 255, 255, .82);
    }

.values-papers-l6 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .values-papers-l6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-papers-l6__head {
        margin-bottom: 1.1rem;
    }

    .values-papers-l6__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .values-papers-l6__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .values-papers-l6__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .values-papers-l6__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px dashed var(--border-on-surface-light);
    }

    .values-papers-l6__grid div {
        font-size: 1.25rem;
    }

    .values-papers-l6__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-papers-l6__grid p {
        margin: 0;
        color: var(--neutral-600);
    }

    .values-papers-l6__grid small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.why-choose-alt {
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .why-choose-alt::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: backgroundPulse 4s ease-in-out infinite;
    }

    @keyframes backgroundPulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.1);
        }
    }

    .why-choose-alt .why-choose-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

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

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

    .why-choose-alt .why-choose-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

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

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

    .why-choose-alt .why-choose-alt__item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .why-choose-alt .why-choose-alt__item:hover {
        transform: translateX(8px);
        box-shadow: -8px 8px 24px rgba(0, 0, 0, 0.15);
    }

    .why-choose-alt .why-choose-alt__item:hover::before {
        left: 100%;
    }

    .why-choose-alt .why-choose-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover .why-choose-alt__number {
        transform: rotate(360deg) scale(1.1);
    }

    .why-choose-alt .why-choose-alt__number::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: var(--radius-md);
        border: 2px solid var(--bg-accent);
        animation: numberPulse 2s ease-in-out infinite;
    }

    @keyframes numberPulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            opacity: 0.6;
            transform: scale(1.2);
        }
    }

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

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

    .why-choose-alt .why-choose-alt__item:hover h3 {
        color: var(--bg-accent);
    }

    .why-choose-alt .why-choose-alt__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

.visual-board-l4 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .visual-board-l4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .visual-board-l4__head {
        margin-bottom: 1rem;
        text-align: center;
    }

    .visual-board-l4__head h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .visual-board-l4__head p {
        margin: .6rem 0 0;
        color: var(--neutral-600);
    }

    .visual-board-l4__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        gap: var(--gap);
    }

    .visual-board-l4__grid figure {
        margin: 0;
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-board-l4__grid figcaption strong {
        color: var(--brand);
    }

    .visual-board-l4__grid h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-board-l4__grid p {
        margin: 0;
        color: var(--neutral-600);
    }

    .visual-board-l4__grid img {
        display: block;
        width: 100%;
        height: 12rem;
        object-fit: cover;
        border-radius: var(--radius-md);
        margin-top: .85rem;
    }

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

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

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

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

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

    }

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

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

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

    .next-signal-c7__button {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

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

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }
    .header__logo:hover {
        color: var(--accent);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .burger__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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
    .header__nav {
        display: block;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-lg);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--surface-1);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) * 3);
        }
        .nav__link {
            font-size: calc(var(--font-size-base) * 1.2);
            padding: var(--space-y) var(--space-x);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        border-bottom: 1px solid #ddd;
        padding-bottom: 1.5rem;
    }
    @media (min-width: 768px) {
        .footer-brand {
            grid-column: span 1;
            text-align: left;
            border-bottom: none;
            border-right: 1px solid #ddd;
            padding-right: 2.5rem;
        }
        .footer-container {
            grid-template-columns: 2fr 1fr 1.5fr;
        }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #222;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #666;
        margin-bottom: 1rem;
        font-style: italic;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
    }
    .footer-legal-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-legal-links span {
        color: #ccc;
        margin: 0 0.5rem;
    }
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: #222;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        color: #555;
    }
    .footer-contact a {
        color: #555;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.product-list--colored-v5 {

    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.product-list__header {
    text-align: center;
    margin-bottom: 24px;
}

.product-list__header h2 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,30px);
    color: var(--brand-contrast);
}

.product-list__header p {
    margin: 0;
    color: var(--neutral-300);
}

.product-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 14px;
}

.product-list__card {
    border-radius: var(--radius-xl);
    padding: var(--space-y);
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
}

.product-list__card--bestseller {
    border-color: var(--accent);
}
.product-list__card--limited {
    border-color: var(--accent);
}
.product-list__card--new {
    border-color: var(--bg-primary);
}

.product-list__name {
    margin: 0 0 4px;
    font-size: 0.95rem;
}

.product-list__price {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 600;
}

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

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }
    .header__logo:hover {
        color: var(--accent);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .burger__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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
    .header__nav {
        display: block;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-lg);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--surface-1);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) * 3);
        }
        .nav__link {
            font-size: calc(var(--font-size-base) * 1.2);
            padding: var(--space-y) var(--space-x);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        border-bottom: 1px solid #ddd;
        padding-bottom: 1.5rem;
    }
    @media (min-width: 768px) {
        .footer-brand {
            grid-column: span 1;
            text-align: left;
            border-bottom: none;
            border-right: 1px solid #ddd;
            padding-right: 2.5rem;
        }
        .footer-container {
            grid-template-columns: 2fr 1fr 1.5fr;
        }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #222;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #666;
        margin-bottom: 1rem;
        font-style: italic;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
    }
    .footer-legal-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-legal-links span {
        color: #ccc;
        margin: 0 0.5rem;
    }
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: #222;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        color: #555;
    }
    .footer-contact a {
        color: #555;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

.product-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.75);
    box-shadow: var(--shadow-lg);
}

.product-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 8px;
}

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

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

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

.product-item__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.product-item__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--fg-on-accent);
}

.product-item__sku {
    opacity: 0.9;
}

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }
    .header__logo:hover {
        color: var(--accent);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .burger__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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
    .header__nav {
        display: block;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-lg);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--surface-1);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) * 3);
        }
        .nav__link {
            font-size: calc(var(--font-size-base) * 1.2);
            padding: var(--space-y) var(--space-x);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        border-bottom: 1px solid #ddd;
        padding-bottom: 1.5rem;
    }
    @media (min-width: 768px) {
        .footer-brand {
            grid-column: span 1;
            text-align: left;
            border-bottom: none;
            border-right: 1px solid #ddd;
            padding-right: 2.5rem;
        }
        .footer-container {
            grid-template-columns: 2fr 1fr 1.5fr;
        }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #222;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #666;
        margin-bottom: 1rem;
        font-style: italic;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
    }
    .footer-legal-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-legal-links span {
        color: #ccc;
        margin: 0 0.5rem;
    }
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: #222;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        color: #555;
    }
    .footer-contact a {
        color: #555;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }
    .header__logo:hover {
        color: var(--accent);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .burger__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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
    .header__nav {
        display: block;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-lg);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--surface-1);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) * 3);
        }
        .nav__link {
            font-size: calc(var(--font-size-base) * 1.2);
            padding: var(--space-y) var(--space-x);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        border-bottom: 1px solid #ddd;
        padding-bottom: 1.5rem;
    }
    @media (min-width: 768px) {
        .footer-brand {
            grid-column: span 1;
            text-align: left;
            border-bottom: none;
            border-right: 1px solid #ddd;
            padding-right: 2.5rem;
        }
        .footer-container {
            grid-template-columns: 2fr 1fr 1.5fr;
        }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #222;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #666;
        margin-bottom: 1rem;
        font-style: italic;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
    }
    .footer-legal-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-legal-links span {
        color: #ccc;
        margin: 0 0.5rem;
    }
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: #222;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        color: #555;
    }
    .footer-contact a {
        color: #555;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

.product-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.75);
    box-shadow: var(--shadow-lg);
}

.product-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 8px;
}

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

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

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

.product-item__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.product-item__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--fg-on-accent);
}

.product-item__sku {
    opacity: 0.9;
}

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }
    .header__logo:hover {
        color: var(--accent);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .burger__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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
    .header__nav {
        display: block;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-lg);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--surface-1);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) * 3);
        }
        .nav__link {
            font-size: calc(var(--font-size-base) * 1.2);
            padding: var(--space-y) var(--space-x);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        border-bottom: 1px solid #ddd;
        padding-bottom: 1.5rem;
    }
    @media (min-width: 768px) {
        .footer-brand {
            grid-column: span 1;
            text-align: left;
            border-bottom: none;
            border-right: 1px solid #ddd;
            padding-right: 2.5rem;
        }
        .footer-container {
            grid-template-columns: 2fr 1fr 1.5fr;
        }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #222;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #666;
        margin-bottom: 1rem;
        font-style: italic;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
    }
    .footer-legal-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-legal-links span {
        color: #ccc;
        margin: 0 0.5rem;
    }
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: #222;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        color: #555;
    }
    .footer-contact a {
        color: #555;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.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;
        background: white;
        color: black;
        border-radius: var(--radius-xl);
        padding: var(--space-x);
        box-shadow: var(--shadow-md);
    }

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

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

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

    .form-layout-e .dark-card {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
    }

    .form-layout-e label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
        color: var(--neutral-800);
        font-weight: 500;
    }

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

    .form-layout-e input::placeholder,
    .form-layout-e textarea::placeholder {
        color: var(--neutral-600);
    }

    .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;
        color: var(--neutral-600);
        font-size: 0.9em;
    }

    .form-layout-e button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        font-weight: 600;
        cursor: pointer;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .form-layout-e button:hover {
        opacity: 0.9;
    }

.contacts-fresh-v3 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .contacts-fresh-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: calc(var(--gap) * 2);
    }

    .contacts-fresh-v3 .left h2 {
        margin: .3rem 0;
        font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    }

    .contacts-fresh-v3 .left p {
        max-width: 46ch;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v3 .right {
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v3 .row {
        padding: 1rem 1.1rem;
        border-left: 4px solid var(--bg-primary);
        background: var(--surface-2);
        border-radius: var(--radius-sm);
    }

    .contacts-fresh-v3 h3 {
        margin: 0 0 .3rem;
    }

    .contacts-fresh-v3 p {
        margin: 0;
        font-weight: 700;
    }

    .contacts-fresh-v3 small {
        color: var(--fg-on-surface-light);
    }

    @media (max-width: 900px) {
        .contacts-fresh-v3 .shell {
            grid-template-columns:1fr;
        }
    }

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .connect__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: 20px;
        align-items: center;
    }

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

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

    .connect__chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .connect__chip {
        padding: 6px 12px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

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

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

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

        .connect__chips {
            justify-content: flex-start;
        }
    }

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }
    .header__logo:hover {
        color: var(--accent);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .burger__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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
    .header__nav {
        display: block;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-lg);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--surface-1);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) * 3);
        }
        .nav__link {
            font-size: calc(var(--font-size-base) * 1.2);
            padding: var(--space-y) var(--space-x);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        border-bottom: 1px solid #ddd;
        padding-bottom: 1.5rem;
    }
    @media (min-width: 768px) {
        .footer-brand {
            grid-column: span 1;
            text-align: left;
            border-bottom: none;
            border-right: 1px solid #ddd;
            padding-right: 2.5rem;
        }
        .footer-container {
            grid-template-columns: 2fr 1fr 1.5fr;
        }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #222;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #666;
        margin-bottom: 1rem;
        font-style: italic;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
    }
    .footer-legal-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-legal-links span {
        color: #ccc;
        margin: 0 0.5rem;
    }
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: #222;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        color: #555;
    }
    .footer-contact a {
        color: #555;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

    .terms-layout-a article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        margin-bottom: 12px;
    }

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

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

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }
    .header__logo:hover {
        color: var(--accent);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .burger__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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
    .header__nav {
        display: block;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-lg);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--surface-1);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) * 3);
        }
        .nav__link {
            font-size: calc(var(--font-size-base) * 1.2);
            padding: var(--space-y) var(--space-x);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        border-bottom: 1px solid #ddd;
        padding-bottom: 1.5rem;
    }
    @media (min-width: 768px) {
        .footer-brand {
            grid-column: span 1;
            text-align: left;
            border-bottom: none;
            border-right: 1px solid #ddd;
            padding-right: 2.5rem;
        }
        .footer-container {
            grid-template-columns: 2fr 1fr 1.5fr;
        }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #222;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #666;
        margin-bottom: 1rem;
        font-style: italic;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
    }
    .footer-legal-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-legal-links span {
        color: #ccc;
        margin: 0 0.5rem;
    }
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: #222;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        color: #555;
    }
    .footer-contact a {
        color: #555;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.thank-mode-c {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: linear-gradient(180deg, var(--fg-on-page), var(--bg-page));
        color: var(--fg-on-page);
    }

    .thank-mode-c .panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 44px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

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

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

    .thank-mode-c a {
        display: inline-block;
        margin-top: 17px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        z-index: 1001;
    }
    .header__logo:hover {
        color: var(--accent);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .burger__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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
    .header__nav {
        display: block;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-lg);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--surface-1);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) * 3);
        }
        .nav__link {
            font-size: calc(var(--font-size-base) * 1.2);
            padding: var(--space-y) var(--space-x);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        border-bottom: 1px solid #ddd;
        padding-bottom: 1.5rem;
    }
    @media (min-width: 768px) {
        .footer-brand {
            grid-column: span 1;
            text-align: left;
            border-bottom: none;
            border-right: 1px solid #ddd;
            padding-right: 2.5rem;
        }
        .footer-container {
            grid-template-columns: 2fr 1fr 1.5fr;
        }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #222;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #666;
        margin-bottom: 1rem;
        font-style: italic;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
    }
    .footer-legal-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-legal-links span {
        color: #ccc;
        margin: 0 0.5rem;
    }
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: #222;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        color: #555;
    }
    .footer-contact a {
        color: #555;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.err-slab-c {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: linear-gradient(180deg, var(--bg-accent), var(--bg-page));
        color: var(--fg-on-page);
    }

    .err-slab-c .tile {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 44px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        border-top: 8px solid var(--accent);
    }

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

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

    .err-slab-c a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: 999px;
        border: 1px solid var(--neutral-300);
        color: var(--fg-on-page);
        text-decoration: none;
    }