:root {
  --font-family: "Open Sans", sans-serif;
  --font-size-base: 15.1px;
  --line-height-base: 1.97;

  --max-w: 1180px;
  --space-x: 1.44rem;
  --space-y: 1.5rem;
  --gap: 0.93rem;

  --radius-xl: 1.32rem;
  --radius-lg: 1rem;
  --radius-md: 0.65rem;
  --radius-sm: 0.33rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.05);
  --shadow-md: 0 5px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 20px rgba(0,0,0,0.08);

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

  --brand: #2C5F2D;
  --brand-contrast: #FFFFFF;
  --accent: #D4A017;
  --accent-contrast: #1A1A1A;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #D1D1D1;
  --neutral-600: #6B6B6B;
  --neutral-800: #2E2E2E;
  --neutral-900: #1A1A1A;

  --bg-page: #F9F9F9;
  --fg-on-page: #1A1A1A;

  --bg-alt: #2C5F2D;
  --fg-on-alt: #FFFFFF;

  --surface-1: #FFFFFF;
  --surface-2: #F0F0F0;
  --fg-on-surface: #1A1A1A;
  --border-on-surface: #D1D1D1;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #1A1A1A;
  --border-on-surface-light: #E0E0E0;

  --bg-primary: #2C5F2D;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1F4220;
  --ring: #2C5F2D;

  --bg-accent: #D4A017;
  --fg-on-accent: #1A1A1A;
  --bg-accent-hover: #B8860B;

  --link: #2C5F2D;
  --link-hover: #1F4220;

  --gradient-hero: linear-gradient(135deg, #2C5F2D 0%, #1F4220 100%);
  --gradient-accent: linear-gradient(135deg, #D4A017 0%, #B8860B 100%);

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

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }

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

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

  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease);
    z-index: 110;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

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

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
      z-index: 105;
    }

    .nav.open {
      opacity: 1;
      pointer-events: auto;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .nav-list a {
      font-size: 1.5rem;
      padding: 0.5rem 1rem;
      border-radius: var(--radius-lg);
    }

    .header-inner {
      justify-content: space-between;
    }

    .logo {
      order: 1;
      margin: 0 auto;
    }

    .burger {
      order: 0;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      position: static !important;
      background: none !important;
      backdrop-filter: none !important;
      width: auto !important;
      height: auto !important;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #f39c12;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    opacity: 0.8;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f39c12;
  }
  .footer-contact {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .footer-contact p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85em;
    opacity: 0.7;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-links {
      flex-direction: column;
      gap: 10px;
    }
  }

.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-band {
        padding: clamp(60px, 9vw, 120px) clamp(16px, 3vw, 40px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .intro-band .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .intro-band .eyebrow {
        margin: 0 0 8px;
        opacity: 0.9;
    }

    .intro-band h1 {
        margin: 0 0 10px;
        font-size: clamp(34px, 5.6vw, 60px);
    }

    .intro-band .lead {
        margin: 0 0 16px;
        max-width: 70ch;
        opacity: 0.9;
    }

    .intro-band .row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .intro-band .fact {
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        padding: 12px;
    }

    .intro-band .label {
        margin: 0;
        opacity: 0.85;
    }

    .intro-band .number {
        margin: 6px 0 0;
        font-size: clamp(24px, 4vw, 36px);
        font-weight: 600;
    }

    .intro-band .actions {
        margin-top: 16px;
    }

    .intro-band .actions a {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
    }

.values-flare-c9 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .15), transparent 25%), var(--gradient-accent);
        color: var(--gradient-accent);
    }

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

    .values-flare-c9__head {
        margin-bottom: 1.1rem;
    }

    .values-flare-c9__head p {
        margin: 0;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

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

    .values-flare-c9__head span {
        display: block;
        margin-top: .8rem;

    }

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

    .values-flare-c9__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-flare-c9__meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .values-flare-c9__meta span {
        color: var(--bg-accent);
    }

    .values-flare-c9__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-flare-c9__grid p {
        margin: 0;

    }

    .values-flare-c9__grid small {
        display: block;
        margin-top: .55rem;
    }

.next-c-1 {
        padding: clamp(3.3rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .next-c-1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-c-1__mast {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1.1rem;
    }

    .next-c-1__mast p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__mast h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-c-1__mast a {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

    .next-c-1__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .next-c-1__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .next-c-1__list i {
        font-style: normal;
        display: inline-flex;
        width: 2.3rem;
        height: 2.3rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
    }

    .next-c-1__list h3 {
        margin: .8rem 0 .35rem;
        font-size: 1.04rem;
    }

    .next-c-1__list p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__list a {
        display: inline-block;
        margin-top: .75rem;
        color: var(--bg-accent);
        text-decoration: none;
        font-weight: 600;
    }

    /* macro-bg:next-c-1__wrap */
    .next-c-1 {
        overflow: hidden;
    }

    .next-c-1__wrap {
        background-image: linear-gradient(rgba(0, 0, 0, .88), rgba(17, 24, 39, .88)), url('https://images.pexels.com/photos/236698/pexels-photo-236698.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--space-y);
    }

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

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

    .plans-lv2__head {
        margin-bottom: 14px;
    }

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

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

    .plans-lv2__range {
        margin-bottom: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
        display: grid;
        gap: 8px;
    }

    .plans-lv2__range label {
        font-weight: 700;
    }

    .plans-lv2__range input {
        width: 100%;
        accent-color: var(--bg-primary);
    }

    .plans-lv2__range span {
        color: var(--neutral-600);
    }

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

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

    .plans-lv2__grid h3 {
        margin: 0;
    }

    .plans-lv2__tier {
        margin: 5px 0 7px;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv2__price {
        margin: 0 0 6px;
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--fg-on-page);
    }

    .plans-lv2__desc {
        margin: 0;
        color: var(--neutral-600);
    }

    .plans-lv2__grid ul {
        margin: 10px 0 0;
        padding-left: 18px;
        display: grid;
        gap: 5px;
        color: var(--neutral-800);
    }

    .plans-lv2__grid button {
        width: 100%;
        margin-top: 10px;
        border: 1px solid var(--bg-primary);
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 9px 12px;
    }

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }

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

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

  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease);
    z-index: 110;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

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

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
      z-index: 105;
    }

    .nav.open {
      opacity: 1;
      pointer-events: auto;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .nav-list a {
      font-size: 1.5rem;
      padding: 0.5rem 1rem;
      border-radius: var(--radius-lg);
    }

    .header-inner {
      justify-content: space-between;
    }

    .logo {
      order: 1;
      margin: 0 auto;
    }

    .burger {
      order: 0;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      position: static !important;
      background: none !important;
      backdrop-filter: none !important;
      width: auto !important;
      height: auto !important;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #f39c12;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    opacity: 0.8;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f39c12;
  }
  .footer-contact {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .footer-contact p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85em;
    opacity: 0.7;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-links {
      flex-direction: column;
      gap: 10px;
    }
  }

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

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

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

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

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

.features-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

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

    .features-struct-v2 h2, .features-struct-v2 h3, .features-struct-v2 p {
        margin: 0
    }

    .features-struct-v2 .head {
        display: grid;
        gap: calc(var(--gap) * .35)
    }

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

    .features-struct-v2 article {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .9rem;
        display: grid;
        gap: .5rem
    }

    .features-struct-v2 .icon {
        min-height: 2rem;
        min-width: 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-1);
        border-radius: var(--radius-sm)
    }

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

    .features-struct-v2 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

    .features-struct-v2 .chips {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem
    }

    .features-struct-v2 .chips span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v2 .list {
        display: grid;
        gap: .6rem
    }

    .features-struct-v2 .list div {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v2 .timeline {
        display: grid;
        gap: .7rem
    }

    .features-struct-v2 .timeline article {
        position: relative;
        padding-left: 1.2rem
    }

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

    .features-struct-v2 .side img, .features-struct-v2 .media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .features-struct-v2 .table {
        display: grid;
        gap: .45rem
    }

    .features-struct-v2 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .5rem;
        padding: .65rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v2 .cards {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v2 .cta {
        display: flex;
        justify-content: flex-start
    }

    .features-struct-v2 .split {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v2 details {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .features-struct-v2 .grid, .features-struct-v2 .cards {
            grid-template-columns:1fr 1fr
        }

        .features-struct-v2 .layout, .features-struct-v2 .split {
            grid-template-columns:1fr
        }
    }

    @media (max-width: 680px) {
        .features-struct-v2 .grid, .features-struct-v2 .cards, .features-struct-v2 .row {
            grid-template-columns:1fr
        }
    }

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }

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

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

  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease);
    z-index: 110;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

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

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
      z-index: 105;
    }

    .nav.open {
      opacity: 1;
      pointer-events: auto;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .nav-list a {
      font-size: 1.5rem;
      padding: 0.5rem 1rem;
      border-radius: var(--radius-lg);
    }

    .header-inner {
      justify-content: space-between;
    }

    .logo {
      order: 1;
      margin: 0 auto;
    }

    .burger {
      order: 0;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      position: static !important;
      background: none !important;
      backdrop-filter: none !important;
      width: auto !important;
      height: auto !important;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #f39c12;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    opacity: 0.8;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f39c12;
  }
  .footer-contact {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .footer-contact p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85em;
    opacity: 0.7;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-links {
      flex-direction: column;
      gap: 10px;
    }
  }

.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--light-v6 {

    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

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

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

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

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }

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

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

  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease);
    z-index: 110;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

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

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
      z-index: 105;
    }

    .nav.open {
      opacity: 1;
      pointer-events: auto;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .nav-list a {
      font-size: 1.5rem;
      padding: 0.5rem 1rem;
      border-radius: var(--radius-lg);
    }

    .header-inner {
      justify-content: space-between;
    }

    .logo {
      order: 1;
      margin: 0 auto;
    }

    .burger {
      order: 0;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      position: static !important;
      background: none !important;
      backdrop-filter: none !important;
      width: auto !important;
      height: auto !important;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #f39c12;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    opacity: 0.8;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f39c12;
  }
  .footer-contact {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .footer-contact p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85em;
    opacity: 0.7;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-links {
      flex-direction: column;
      gap: 10px;
    }
  }

.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--light-v6 {
        padding: 40px 20px;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }
    .product-item__inner {
        max-width: 640px;
        margin: 0 auto;
    }
    .product-item__inner h1 {
        margin: 0 0 4px;
        font-size: clamp(22px,3.5vw,28px);
    }
    .product-item__price {
        margin: 0 0 8px;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--bg-primary);
    }
    .product-item__desc {
        margin: 0;
        font-size: 0.95rem;
        color: var(--neutral-700);
    }

.values-flare-c9 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .15), transparent 25%), var(--gradient-accent);
        color: var(--gradient-accent);
    }

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

    .values-flare-c9__head {
        margin-bottom: 1.1rem;
    }

    .values-flare-c9__head p {
        margin: 0;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

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

    .values-flare-c9__head span {
        display: block;
        margin-top: .8rem;

    }

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

    .values-flare-c9__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-flare-c9__meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .values-flare-c9__meta span {
        color: var(--bg-accent);
    }

    .values-flare-c9__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-flare-c9__grid p {
        margin: 0;

    }

    .values-flare-c9__grid small {
        display: block;
        margin-top: .55rem;
    }

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }

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

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

  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease);
    z-index: 110;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

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

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
      z-index: 105;
    }

    .nav.open {
      opacity: 1;
      pointer-events: auto;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .nav-list a {
      font-size: 1.5rem;
      padding: 0.5rem 1rem;
      border-radius: var(--radius-lg);
    }

    .header-inner {
      justify-content: space-between;
    }

    .logo {
      order: 1;
      margin: 0 auto;
    }

    .burger {
      order: 0;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      position: static !important;
      background: none !important;
      backdrop-filter: none !important;
      width: auto !important;
      height: auto !important;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #f39c12;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    opacity: 0.8;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f39c12;
  }
  .footer-contact {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .footer-contact p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85em;
    opacity: 0.7;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-links {
      flex-direction: column;
      gap: 10px;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .contact-layout-b .item-card {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

    .contact-layout-b .item-card h3 {
        margin: 0;
        color: var(--brand);
    }

    .contact-layout-b .item-card p {
        margin: 8px 0 0;
        color: var(--neutral-700, var(--neutral-600));
    }

    .contact-layout-b footer {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

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

    .contact-layout-b .social a {
        text-decoration: none;
        color: var(--link);
        padding: 6px 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
    }

.nfform-v7 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .nfform-v7__form {
        max-width: 760px;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v7 p {
        margin: 0 0 2px;
        opacity: .92;
    }

    .nfform-v7 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v7 input:not([type='checkbox']),
    .nfform-v7 textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .nfform-v7__agree {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nfform-v7 button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }

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

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

  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease);
    z-index: 110;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

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

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
      z-index: 105;
    }

    .nav.open {
      opacity: 1;
      pointer-events: auto;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .nav-list a {
      font-size: 1.5rem;
      padding: 0.5rem 1rem;
      border-radius: var(--radius-lg);
    }

    .header-inner {
      justify-content: space-between;
    }

    .logo {
      order: 1;
      margin: 0 auto;
    }

    .burger {
      order: 0;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      position: static !important;
      background: none !important;
      backdrop-filter: none !important;
      width: auto !important;
      height: auto !important;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #f39c12;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    opacity: 0.8;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f39c12;
  }
  .footer-contact {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .footer-contact p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85em;
    opacity: 0.7;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-links {
      flex-direction: column;
      gap: 10px;
    }
  }

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

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

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

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

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

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

    .policy-layout-a .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

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

    .policy-layout-a .meta {
        margin: 0;
        color: var(--brand);
        font-weight: 600;
    }

    .policy-layout-a h3 {
        margin: 8px 0;
    }

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

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }

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

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

  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease);
    z-index: 110;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

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

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
      z-index: 105;
    }

    .nav.open {
      opacity: 1;
      pointer-events: auto;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .nav-list a {
      font-size: 1.5rem;
      padding: 0.5rem 1rem;
      border-radius: var(--radius-lg);
    }

    .header-inner {
      justify-content: space-between;
    }

    .logo {
      order: 1;
      margin: 0 auto;
    }

    .burger {
      order: 0;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      position: static !important;
      background: none !important;
      backdrop-filter: none !important;
      width: auto !important;
      height: auto !important;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #f39c12;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    opacity: 0.8;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f39c12;
  }
  .footer-contact {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .footer-contact p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85em;
    opacity: 0.7;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-links {
      flex-direction: column;
      gap: 10px;
    }
  }

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

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }

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

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

  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease);
    z-index: 110;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

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

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
      z-index: 105;
    }

    .nav.open {
      opacity: 1;
      pointer-events: auto;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .nav-list a {
      font-size: 1.5rem;
      padding: 0.5rem 1rem;
      border-radius: var(--radius-lg);
    }

    .header-inner {
      justify-content: space-between;
    }

    .logo {
      order: 1;
      margin: 0 auto;
    }

    .burger {
      order: 0;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      position: static !important;
      background: none !important;
      backdrop-filter: none !important;
      width: auto !important;
      height: auto !important;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #f39c12;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    opacity: 0.8;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f39c12;
  }
  .footer-contact {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .footer-contact p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85em;
    opacity: 0.7;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-links {
      flex-direction: column;
      gap: 10px;
    }
  }

.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-c {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: linear-gradient(180deg, var(--fg-on-page), var(--bg-page));
        color: var(--fg-on-page);
    }

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

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

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

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

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }

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

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

  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease);
    z-index: 110;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

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

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
      z-index: 105;
    }

    .nav.open {
      opacity: 1;
      pointer-events: auto;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .nav-list a {
      font-size: 1.5rem;
      padding: 0.5rem 1rem;
      border-radius: var(--radius-lg);
    }

    .header-inner {
      justify-content: space-between;
    }

    .logo {
      order: 1;
      margin: 0 auto;
    }

    .burger {
      order: 0;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      position: static !important;
      background: none !important;
      backdrop-filter: none !important;
      width: auto !important;
      height: auto !important;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #f39c12;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    opacity: 0.8;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f39c12;
  }
  .footer-contact {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .footer-contact p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85em;
    opacity: 0.7;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-links {
      flex-direction: column;
      gap: 10px;
    }
  }

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

.nf404-v9 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .nf404-v9__card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .26);
        background: rgba(255, 255, 255, .08);
        padding: clamp(28px, 4vw, 46px);
    }

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

    .nf404-v9 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nf404-v9 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        color: var(--accent-contrast);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .45);
    }