:root {
  --font-family: "Lato", sans-serif;
  --font-size-base: 15.7px;
  --line-height-base: 1.4;

  --max-w: 1040px;
  --space-x: 1.09rem;
  --space-y: 1.14rem;
  --gap: 0.81rem;

  --radius-xl: 0.86rem;
  --radius-lg: 0.69rem;
  --radius-md: 0.44rem;
  --radius-sm: 0.22rem;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.09);
  --shadow-md: 0 5px 18px rgba(0,0,0,0.12);
  --shadow-lg: 0 18px 34px rgba(0,0,0,0.14);

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

  --brand: #0056b3;
  --brand-contrast: #ffffff;
  --accent: #e63946;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8f9fa;
  --neutral-300: #dee2e6;
  --neutral-600: #6c757d;
  --neutral-800: #343a40;
  --neutral-900: #212529;

  --bg-page: #ffffff;
  --fg-on-page: #212529;

  --bg-alt: #f8f9fa;
  --fg-on-alt: #495057;

  --surface-1: #ffffff;
  --surface-2: #f8f9fa;
  --fg-on-surface: #212529;
  --border-on-surface: #dee2e6;

  --surface-light: rgba(0, 86, 179, 0.05);
  --fg-on-surface-light: #0056b3;
  --border-on-surface-light: rgba(0, 86, 179, 0.15);

  --bg-primary: #0056b3;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #004494;
  --ring: rgba(0, 86, 179, 0.4);

  --bg-accent: #ffeaea;
  --fg-on-accent: #a3151a;
  --bg-accent-hover: #ff6b6b;

  --link: #0056b3;
  --link-hover: #004494;

  --gradient-hero: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
  --gradient-accent: linear-gradient(135deg, #e63946 0%, #c1121f 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: 100;
    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);
}

.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-line {
    display: block;
    height: 2px;
    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: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .main-nav.is-active {
        right: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(2) {
        opacity: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        width: 100%;
        text-align: left;
    }
    .nav-link:hover {
        background-color: var(--surface-light);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: center;
    flex-grow: 1;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    margin: 0.5rem 0 0 0;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-block;
    color: #555;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    color: #000;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
    }
    .footer-legal {
      order: 3;
      width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.intro-cardline {
        padding: clamp(60px, 9vw, 120px) clamp(16px, 3vw, 40px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .intro-cardline .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 16px;
        align-items: center;
    }

    .intro-cardline .media {
        order: var(--random-number);
    }

    .intro-cardline .copy {
        order: 1;
    }

    .intro-cardline .media img {
        width: 100%;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .intro-cardline .badge {
        margin: 0 0 8px;
        display: inline-block;
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 6px 10px;
        border-radius: var(--radius-md);
        font-size: 0.85rem;
    }

    .intro-cardline h1 {
        margin: 0 0 8px;
        font-size: clamp(32px, 5.2vw, 54px);
    }

    .intro-cardline .subtitle {
        margin: 0 0 10px;
        color: var(--neutral-600);
    }

    .intro-cardline .desc {
        margin: 0 0 12px;
        color: var(--neutral-600);
    }

    .intro-cardline .question {
        margin: 0 0 16px;
        padding: 10px;
        border-left: 3px solid var(--ring);
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .intro-cardline .btn {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 900px) {
        .intro-cardline .wrap {
            grid-template-columns: 1fr;
        }
    }

.next-stages {
        padding: clamp(60px, 9vw, 108px) clamp(16px, 3vw, 36px);
        background: linear-gradient(150deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

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

    .next-stages .intro {
        max-width: 66ch;
        margin: 0 auto 14px;
        text-align: center;
    }

    .next-stages .intro p {
        margin: 8px 0 0;
        opacity: .9;
    }

    .next-stages h2 {
        margin: 8px 0;
        font-size: clamp(30px, 4.4vw, 46px);
    }

    .next-stages .stages {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }

    .next-stages article {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: stageIn 420ms ease both;
    }

    .next-stages article:nth-child(2) {
        animation-delay: 80ms;
    }

    .next-stages article:nth-child(3) {
        animation-delay: 160ms;
    }

    .next-stages article:nth-child(4) {
        animation-delay: 240ms;
    }

    .next-stages .icon {
        margin: 0 0 6px;
        opacity: .92;
    }

    .next-stages h3 {
        margin: 0 0 8px;
        font-size: 1rem;
    }

    .next-stages a {
        color: var(--fg-on-primary);
        text-decoration: underline;
    }

    @keyframes stageIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

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

.social-l2 {

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

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

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

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

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

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

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

    .social-l2__quote {
        display: none;
    }

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

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

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

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

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

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

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

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

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

.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-line {
    display: block;
    height: 2px;
    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: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .main-nav.is-active {
        right: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(2) {
        opacity: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        width: 100%;
        text-align: left;
    }
    .nav-link:hover {
        background-color: var(--surface-light);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: center;
    flex-grow: 1;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    margin: 0.5rem 0 0 0;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-block;
    color: #555;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    color: #000;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
    }
    .footer-legal {
      order: 3;
      width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.product-list {

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

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

    .product-list .product-list__h {
        text-align: center;
        margin-bottom: clamp(24px, 4vw, 40px);
    }

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

    .product-list .product-list__h p {
        font-size: clamp(16px, 2.2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .product-list .product-list__toolbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: clamp(24px, 4vw, 40px);
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .product-list .product-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        flex: 1;
    }

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

    .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);
        font-size: 0.875rem;
    }

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

    .product-list .product-list__view-toggle {
        display: flex;
        gap: 0.5rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        padding: 0.25rem;
        background: var(--bg-page);
    }

    .product-list .product-list__view-btn {
        padding: 0.5rem 0.75rem;
        border: none;
        background: transparent;
        color: var(--neutral-600);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        border-radius: var(--radius-sm);
        font-size: 1.125rem;
    }

    .product-list .product-list__view-btn.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .product-list .product-list__container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: clamp(16px, 2.5vw, 24px);
    }

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

    .product-list .product-list__card {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        flex-direction: column;
    }

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

    .product-list .product-list__image-container {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
        background: var(--bg-alt);
    }

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

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

    .product-list .product-list__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__overlay {
        opacity: 1;
    }

    .product-list .product-list__quick-view {
        padding: 0.75rem 1.5rem;
        background: var(--bg-page);
        color: var(--fg-on-page);
        text-decoration: none;
        border-radius: var(--radius-md);
        font-weight: 600;
        transform: translateY(10px);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__quick-view {
        transform: translateY(0);
    }

    .product-list .product-list__content {
        padding: clamp(16px, 2vw, 20px);
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
    }

    .product-list .product-list__header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .product-list h3 {
        margin: 0;
        font-size: clamp(16px, 2vw, 18px);
        color: var(--fg-on-page);
        font-weight: 600;
        flex: 1;
        line-height: 1.4;
    }

    .product-list .product-list__wishlist {
        width: 32px;
        height: 32px;
        border: 1px solid var(--ring);
        border-radius: 50%;
        background: var(--bg-page);
        color: var(--neutral-600);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .product-list .product-list__wishlist:hover {
        border-color: var(--bg-primary);
        color: var(--bg-primary);
        transform: scale(1.1);
    }

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

    .product-list .product-list__footer {
        display: flex;
        gap: 0.5rem;
        margin-top: auto;
    }

    .product-list .product-list__btn {
        flex: 1;
        padding: 0.625rem 1rem;
        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);
        font-weight: 600;
        font-size: 0.875rem;
        text-align: center;
    }

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

    .product-list .product-list__cart-btn {
        width: 40px;
        height: 40px;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-size: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-list .product-list__cart-btn:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        transform: scale(1.1);
    }

    @media (max-width: 767px) {
        .product-list .product-list__container {
            grid-template-columns: repeat(2, 1fr);
            gap: clamp(12px, 2vw, 16px);
        }

        .product-list .product-list__image-container {
            height: 160px;
        }
    }

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

.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-line {
    display: block;
    height: 2px;
    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: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .main-nav.is-active {
        right: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(2) {
        opacity: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        width: 100%;
        text-align: left;
    }
    .nav-link:hover {
        background-color: var(--surface-light);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: center;
    flex-grow: 1;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    margin: 0.5rem 0 0 0;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-block;
    color: #555;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    color: #000;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
    }
    .footer-legal {
      order: 3;
      width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

        /* Si randomNumber es par (2) - el primer hijo obtiene 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__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Si randomNumber es par (2) - el primer hijo obtiene 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-page);
        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);
    }

.gallery--colored-v5 {
    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

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

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

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
}

.gallery__item--featured {
    border-color: var(--accent);
}

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

.gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    font-size: 0.85rem;
}

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

.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-line {
    display: block;
    height: 2px;
    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: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .main-nav.is-active {
        right: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(2) {
        opacity: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        width: 100%;
        text-align: left;
    }
    .nav-link:hover {
        background-color: var(--surface-light);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: center;
    flex-grow: 1;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    margin: 0.5rem 0 0 0;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-block;
    color: #555;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    color: #000;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
    }
    .footer-legal {
      order: 3;
      width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

        /* Si randomNumber es par (2) - el primer hijo obtiene 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-600);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

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

    /* Si randomNumber es par (2) - el primer hijo obtiene 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: 100;
    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);
}

.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-line {
    display: block;
    height: 2px;
    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: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .main-nav.is-active {
        right: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(2) {
        opacity: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        width: 100%;
        text-align: left;
    }
    .nav-link:hover {
        background-color: var(--surface-light);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: center;
    flex-grow: 1;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    margin: 0.5rem 0 0 0;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-block;
    color: #555;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    color: #000;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
    }
    .footer-legal {
      order: 3;
      width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

        /* Si randomNumber es par (2) - el primer hijo obtiene 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__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Si randomNumber es par (2) - el primer hijo obtiene 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-page) fff;
        box-shadow: var(--shadow-md);
    }

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

    .product-item .product-item__wishlist {
        background: var(--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: 100;
    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);
}

.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-line {
    display: block;
    height: 2px;
    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: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .main-nav.is-active {
        right: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(2) {
        opacity: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        width: 100%;
        text-align: left;
    }
    .nav-link:hover {
        background-color: var(--surface-light);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: center;
    flex-grow: 1;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    margin: 0.5rem 0 0 0;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-block;
    color: #555;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    color: #000;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
    }
    .footer-legal {
      order: 3;
      width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

    .contact-layout-f .capsule {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .contact-layout-f .capsule article {
        border-radius: 12px;
        border: 1px solid var(--border-on-surface-light);
        padding: 14px 16px;
        background: var(--surface-1);
    }

    .contact-layout-f .capsule h3 {
        margin: 0;
        font-size: .96rem;
        color: var(--brand);
    }

    .contact-layout-f .capsule p {
        margin: 5px 0 0;
    }

    .contact-layout-f .social-strip {
        margin-top: 18px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .contact-layout-f .social-strip a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: 7px 11px;
        border-radius: var(--radius-sm);
    }

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .form-layout-f .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-f .boxed {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .form-layout-f .group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

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

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

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

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

    @media (max-width: 760px) {
        .form-layout-f .group {
            grid-template-columns: 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: 100;
    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);
}

.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-line {
    display: block;
    height: 2px;
    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: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .main-nav.is-active {
        right: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(2) {
        opacity: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        width: 100%;
        text-align: left;
    }
    .nav-link:hover {
        background-color: var(--surface-light);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: center;
    flex-grow: 1;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    margin: 0.5rem 0 0 0;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-block;
    color: #555;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    color: #000;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
    }
    .footer-legal {
      order: 3;
      width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

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

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

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

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

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

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    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);
}

.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-line {
    display: block;
    height: 2px;
    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: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .main-nav.is-active {
        right: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(2) {
        opacity: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        width: 100%;
        text-align: left;
    }
    .nav-link:hover {
        background-color: var(--surface-light);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: center;
    flex-grow: 1;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    margin: 0.5rem 0 0 0;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-block;
    color: #555;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    color: #000;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
    }
    .footer-legal {
      order: 3;
      width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

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

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

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

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

.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-line {
    display: block;
    height: 2px;
    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: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .main-nav.is-active {
        right: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(2) {
        opacity: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        width: 100%;
        text-align: left;
    }
    .nav-link:hover {
        background-color: var(--surface-light);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: center;
    flex-grow: 1;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    margin: 0.5rem 0 0 0;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-block;
    color: #555;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    color: #000;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
    }
    .footer-legal {
      order: 3;
      width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

.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-line {
    display: block;
    height: 2px;
    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: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .main-nav.is-active {
        right: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(2) {
        opacity: 0;
    }
    .main-nav.is-active ~ .burger-btn .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        width: 100%;
        text-align: left;
    }
    .nav-link:hover {
        background-color: var(--surface-light);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-contact address ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-legal {
    text-align: center;
    flex-grow: 1;
  }
  .footer-legal a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    margin: 0.5rem 0 0 0;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-block;
    color: #555;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    color: #000;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
    }
    .footer-legal {
      order: 3;
      width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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