:root {
  --font-family: "Raleway", sans-serif;
  --font-size-base: 15.3px;
  --line-height-base: 1.43;

  --max-w: 1040px;
  --space-x: 1.17rem;
  --space-y: 1.01rem;
  --gap: 0.93rem;

  --radius-xl: 0.94rem;
  --radius-lg: 0.59rem;
  --radius-md: 0.4rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 2px 3px rgba(0,0,0,0.13);
  --shadow-md: 0 5px 16px rgba(0,0,0,0.16);
  --shadow-lg: 0 18px 42px rgba(0,0,0,0.2);

  --overlay: rgba(0, 0, 0, 0.65);
  --anim-duration: 240ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #2a0a5e;
  --brand-contrast: #ffffff;
  --accent: #00e6cc;
  --accent-contrast: #001a16;

  --neutral-0: #ffffff;
  --neutral-100: #f5f5f7;
  --neutral-300: #d4d4dc;
  --neutral-600: #6b6b7a;
  --neutral-800: #2a2a33;
  --neutral-900: #0a0a0f;

  --bg-page: #0f0b1a;
  --fg-on-page: #e6e6f0;

  --bg-alt: #1a1529;
  --fg-on-alt: #d1d1e6;

  --surface-1: #1e1835;
  --surface-2: #262040;
  --fg-on-surface: #e6e6f0;
  --border-on-surface: rgba(100, 100, 130, 0.25);

  --surface-light: rgba(255, 255, 255, 0.03);
  --fg-on-surface-light: #c2c2d6;
  --border-on-surface-light: rgba(255, 255, 255, 0.08);

  --bg-primary: #3a1b8c;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #4d22b8;
  --ring: #00e6cc;

  --bg-accent: rgba(0, 230, 204, 0.1);
  --fg-on-accent: #00e6cc;
  --bg-accent-hover: #00b8a3;

  --link: #7d5fff;
  --link-hover: #a28bff;

  --gradient-hero: linear-gradient(135deg, #2a0a5e 0%, #1a0a33 100%);
  --gradient-accent: linear-gradient(90deg, #00e6cc 0%, #7d5fff 100%);

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

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

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        background-color: var(--surface-light);
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }

    .header-container {
        position: relative;
    }
}

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

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

    .cookie-lv6__actions button {
        flex: 1;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 10px;
        cursor: pointer;
    }

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

.hero--colored-v5 {
        padding: 96px 20px;
        background: var(--gradient-accent);
        color: var(--brand);
        text-align: center;
    }

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

    .hero__eyebrow {
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        opacity: 0.9;
        margin: 0 0 0.5rem;
        color: var(--brand);
    }

    .hero__title {
        margin: 0 0 8px;
        font-size: clamp(28px, 5vw, 40px);
        color: var(--brand);
    }

    .hero__subtitle {
        margin: 0 0 20px;
        color: var(--brand);
        opacity: 0.9;
    }

    .hero__actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .hero__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 22px;
        border-radius: 999px;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
    }

    .hero__btn {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease),
        box-shadow var(--anim-duration) var(--anim-ease),
        background-color var(--anim-duration) var(--anim-ease);
    }

    .hero__btn:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        background: var(--surface-2);
    }

    .hero__btn--primary {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .hero__btn--ghost {
        background: transparent;
        color: var(--brand);
        border: 1px solid var(--brand);
    }

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

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

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

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

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

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

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

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

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

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

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

        transform: translateY(20px);
    }

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

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

    .why-choose .why-choose__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose .why-choose__item {
        background: var(--fg-on-primary);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        transition: transform var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose .why-choose__item:hover {
        transform: translateY(-4px);
    }

    .why-choose .why-choose__icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

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

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

.plans-lv4 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .plans-lv4__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .plans-lv4__head {
        text-align: center;
        margin-bottom: 14px;
    }

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

    .plans-lv4__head p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .plans-lv4__stack {
        display: grid;
        gap: 10px;
    }

    .plans-lv4__stack article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-light);
        padding: 12px;
    }

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

    .plans-lv4__line h3 {
        margin: 0;
    }

    .plans-lv4__line p {
        margin: 0;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv4__chips {
        margin-top: 8px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .plans-lv4__chips span {
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        padding: 5px 9px;
        font-size: .88rem;
    }

    .plans-lv4__stack button {
        margin-top: 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 11px;
    }

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

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

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        background-color: var(--surface-light);
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }

    .header-container {
        position: relative;
    }
}

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

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

    .cookie-lv6__actions button {
        flex: 1;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 10px;
        cursor: pointer;
    }

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

.product-list {

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

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

    .product-list .product-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .product-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .product-list .product-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .product-list .product-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

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

    .product-list .product-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .product-list .product-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .product-list .product-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .product-list .product-list__card {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

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

    .product-list .product-list__image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .product-list .product-list__content {
        padding: clamp(16px, 2vw, 24px);
    }

    .product-list h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 20px);
        color: var(--fg-on-page);
    }

    .product-list .product-list__price {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0.5rem 0 1rem;
    }

    .product-list .product-list__btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

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

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        background-color: var(--surface-light);
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }

    .header-container {
        position: relative;
    }
}

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

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

    .cookie-lv6__actions button {
        flex: 1;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 10px;
        cursor: pointer;
    }

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

.product-item {

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

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

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

        /* Se randomNumber for par (2) - o primeiro filho recebe order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

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

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

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

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

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

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

    .product-item .product-item__description ul {
        padding-left: 1.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__description li {
        margin-bottom: 0.5rem;
    }

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

    /* Se randomNumber for par (2) - o primeiro filho recebe order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

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

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        background-color: var(--surface-light);
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }

    .header-container {
        position: relative;
    }
}

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

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

    .cookie-lv6__actions button {
        flex: 1;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-lv6__actions button[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);
    color: var(--fg-on-page);
}

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

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

.mission--colored-v5 {
    padding: 64px 20px;
    background: radial-gradient(circle at top left, rgba(16,185,129,0.35), transparent),
                radial-gradient(circle at bottom right, rgba(59,130,246,0.4), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

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

.mission__eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(209,250,229,0.9);
    margin: 0 0 0.5rem;
}

.mission__title {
    margin: 0 0 8px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

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

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

.mission__pillar {
    border-radius: var(--radius-lg);
    padding: 10px 12px;
    border: 1px solid rgba(148,163,184,0.6);
    background: rgba(15,23,42,0.96);
}

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

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

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

.mission__pillar h3 {
    margin: 0 0 4px;
    font-size: 0.95rem;
    color: var(--brand-contrast);
}

.mission__pillar p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-200);
}

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

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

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        background-color: var(--surface-light);
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }

    .header-container {
        position: relative;
    }
}

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

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

    .cookie-lv6__actions button {
        flex: 1;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-lv6__actions button[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);
    color: var(--fg-on-page);
}

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

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

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

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        background-color: var(--surface-light);
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }

    .header-container {
        position: relative;
    }
}

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

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

    .cookie-lv6__actions button {
        flex: 1;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 10px;
        cursor: pointer;
    }

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

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

    .contact-layout-e .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .contact-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .contact-layout-e .rail {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 16px;
    }

    .contact-layout-e aside {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: 16px;
    }

    .contact-layout-e aside h3 {
        margin: 0 0 10px;
    }

    .contact-layout-e aside p {
        margin: 0 0 10px;
        opacity: .9;
    }

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

    .contact-layout-e .social a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .16);
        padding: 6px 10px;
        border-radius: var(--radius-sm);
    }

    .contact-layout-e .content {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        display: grid;
        gap: 10px;
    }

    .contact-layout-e .row {
        display: grid;
        gap: 3px;
        padding-bottom: 10px;
        border-bottom: 1px dashed var(--neutral-300);
    }

    .contact-layout-e .row:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    @media (max-width: 760px) {
        .contact-layout-e .rail {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

    .form-layout-c .steps {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
    }

    .form-layout-c .row {
        display: grid;
        gap: 10px;
    }

    .form-layout-c .row.two {
        grid-template-columns: 1fr 1fr;
    }

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

    .form-layout-c input:not([type="checkbox"]), .form-layout-c textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

    .form-layout-c .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 2px;
    }

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

    @media (max-width: 760px) {
        .form-layout-c .row.two {
            grid-template-columns: 1fr;
        }
    }

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

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

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

    .faq-layout-d h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--fg-on-page);
    }

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

    .faq-layout-d .cards {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    }

    .faq-layout-d .card {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        padding: var(--space-y) var(--space-x);
        transition: box-shadow var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-d .card:hover {
        box-shadow: var(--shadow-md);
    }

    .faq-layout-d .card h3 {
        margin: 0;
        font-size: 1.05rem;
        color: var(--accent);
    }

    .faq-layout-d .card p {
        margin: 9px 0 0;
        color: var(--neutral-300);
    }

.index-recommendations-board {
        background: radial-gradient(circle at 18% 20%, rgba(248, 225, 231, 0.35), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 165, 0.35), transparent 55%),
        linear-gradient(135deg, rgba(58, 46, 61, 0.98), rgba(58, 46, 61, 0.88));
        color: var(--neutral-0);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

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

        transform: translateY(-18px);
    }

    .index-recommendations-board__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.72);
    }

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

    .index-recommendations-board__mosaic {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations-board__tile {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
        padding: 18px 18px 16px;

        transform: translateY(26px);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(12px);
    }

    .index-recommendations-board__tile:nth-child(1),
    .index-recommendations-board__tile:nth-child(2) {
        grid-column: span 6;
    }

    .index-recommendations-board__tile::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(248, 225, 231, 0.25), transparent 60%);
        opacity: 0.9;
        pointer-events: none;
    }

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

    .index-recommendations-board__badge {
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        letter-spacing: 0.16em;
        text-transform: uppercase;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.78);
        white-space: nowrap;
    }

    .index-recommendations-board__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex: 0 0 auto;
    }

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

    .index-recommendations-board__why {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        color: rgba(255, 255, 255, 0.72);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .index-recommendations-board__desc {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: rgba(255, 255, 255, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-board__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(--gradient-accent);
        color: var(--brand-contrast);
        font-weight: 900;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .index-recommendations-board__cta::after {
        content: '->';
    }

    .index-recommendations-board__cta:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 960px) {
        .index-recommendations-board__tile {
            grid-column: span 6;
        }
    }

    @media (max-width: 620px) {
        .index-recommendations-board__tile {
            grid-column: span 12;
        }
    }

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

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

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        background-color: var(--surface-light);
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }

    .header-container {
        position: relative;
    }
}

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

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

    .cookie-lv6__actions button {
        flex: 1;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

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

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        background-color: var(--surface-light);
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }

    .header-container {
        position: relative;
    }
}

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

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

    .cookie-lv6__actions button {
        flex: 1;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 10px;
        cursor: pointer;
    }

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

.policy-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .policy-layout-d .section-head {
        margin-bottom: 14px;
    }

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

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

    .policy-layout-d .timeline {
        border-left: 3px solid var(--brand);
        padding-left: 14px;
        display: grid;
        gap: 12px;
    }

    .policy-layout-d article {
        position: relative;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
    }

    .policy-layout-d .meta {
        margin: 0;
        color: var(--brand);
        font-size: .9rem;
        font-weight: 600;
    }

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

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

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

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        background-color: var(--surface-light);
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }

    .header-container {
        position: relative;
    }
}

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

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

    .cookie-lv6__actions button {
        flex: 1;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 10px;
        cursor: pointer;
    }

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

.thank-mode-b {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .thank-mode-b .card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: var(--surface-1);
        box-shadow: var(--shadow-lg);
    }

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

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

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

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

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        background-color: var(--surface-light);
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }

    .header-container {
        position: relative;
    }
}

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

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

    .cookie-lv6__actions button {
        flex: 1;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-lv6__actions button[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);
        color: var(--fg-on-surface);
    }

    .err-slab-c p {
        margin: 12px 0 0;
        color: var(--fg-on-surface-light);
    }

    .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;
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }
    .err-slab-c a:hover {
        background-color: var(--bg-primary-hover);
    }