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

  --max-w: 840px;
  --space-x: 1.46rem;
  --space-y: 1.5rem;
  --gap: 1.01rem;

  --radius-xl: 0.87rem;
  --radius-lg: 0.56rem;
  --radius-md: 0.44rem;
  --radius-sm: 0.25rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-lg: 0 6px 20px rgba(0,0,0,0.12);

  --overlay: rgba(0,0,0,0.4);
  --anim-duration: 480ms;
  --anim-ease: ease;
  --random-number: 2;

  --brand: #2E7D32;
  --brand-contrast: #FFFFFF;
  --accent: #FF6F00;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #BDBDBD;
  --neutral-600: #757575;
  --neutral-800: #424242;
  --neutral-900: #212121;

  --bg-page: #FFFFFF;
  --fg-on-page: #212121;

  --bg-alt: #F1F8E9;
  --fg-on-alt: #1B5E20;

  --surface-1: #FFFFFF;
  --surface-2: #F9FBE7;
  --fg-on-surface: #212121;
  --border-on-surface: #E0E0E0;

  --surface-light: #F1F8E9;
  --fg-on-surface-light: #33691E;
  --border-on-surface-light: #C5E1A5;

  --bg-primary: #2E7D32;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1B5E20;
  --ring: #2E7D32;

  --bg-accent: #FF6F00;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #E65100;

  --link: #2E7D32;
  --link-hover: #1B5E20;

  --gradient-hero: linear-gradient(135deg, #2E7D32 0%, #66BB6A 100%);
  --gradient-accent: linear-gradient(135deg, #FF6F00 0%, #FFB300 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: relative;
    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: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
  }

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    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.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

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

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: 0 var(--space-x);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
  }

  .nav.open {
    max-height: 400px;
    padding: var(--space-y) var(--space-x);
  }

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .nav-list li:last-child a {
    border-bottom: none;
  }

  @media (min-width: 768px) {
    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--space-x);
    }

    .nav.open {
      max-height: 400px;
      padding: var(--space-y) var(--space-x);
    }

    .nav-list {
      flex-direction: column;
    }

    .nav-list a {
      border-bottom: 1px solid var(--border-on-surface);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-brand {
    flex: 1 1 200px;
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    letter-spacing: 1px;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-contact {
    width: 100%;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  .footer-legal a {
    color: #ecf0f1;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
  }
  .footer-legal a:hover {
    border-bottom-color: #e67e22;
  }
  .footer-disclaimer {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.9;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 0.75rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
  }

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

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

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.wp-lang-switcher-v8 {
        position: fixed;
        right: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
    }

    .wp-lang-switcher-v8__toggle {
        width: 58px;
        height: 58px;
        border-radius: 12px;
        border: 0;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.08em;
        cursor: pointer;
        display: grid;
        place-items: center;
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .wp-lang-switcher-v8__dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: color-mix(in srgb, var(--fg-on-primary) 78%, transparent);
        position: absolute;
        right: 13px;
        top: 13px;
    }

    .wp-lang-switcher-v8__list {
        position: absolute;
        right: 0;
        bottom: 66px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px) scale(0.95);
        transform-origin: bottom right;
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v8__list.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .wp-lang-switcher-v8__list button,
    .wp-lang-switcher-v8__list a {
        min-width: 56px;
        height: 38px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.06em;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v8__list button:hover,
    .wp-lang-switcher-v8__list a:hover {
        transform: translateX(-2px);
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }

.intro-metrics-l4 {
        padding: clamp(3.6rem, 8vw, 6.6rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

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

    .intro-metrics-l4__copy {
        text-align: center;
        max-width: 44rem;
        margin: 0 auto;
    }

    .intro-metrics-l4__copy p {
        margin: 0;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .intro-metrics-l4__copy h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        line-height: 1.04;
    }

    .intro-metrics-l4__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-metrics-l4__stats {
        margin-top: 1.3rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
        gap: var(--gap);
    }

    .intro-metrics-l4__stats article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        text-align: center;
    }

    .intro-metrics-l4__stats strong {
        display: block;
        font-size: 1.6rem;
        color: var(--brand);
    }

    .intro-metrics-l4__stats span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .intro-metrics-l4__footer {
        margin-top: 1rem;
        text-align: center;
        color: var(--neutral-800);
    }

.next-ux20 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--bg-primary);
        color: var(--fg-on-primary)
    }

    .next-ux20 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .next-ux20 h2, .next-ux20 h3, .next-ux20 p {
        margin: 0
    }

    .next-ux20 a {
        text-decoration: none
    }

    .next-ux20 .center, .next-ux20 .banner, .next-ux20 .stack, .next-ux20 .bar, .next-ux20 .split, .next-ux20 .duo article {
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .next-ux20 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

    .next-ux20 .split {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    .next-ux20 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

    .next-ux20 .actions a, .next-ux20 .center a, .next-ux20 .banner > a, .next-ux20 .duo a {
        display: inline-flex;
        min-height: 2.35rem;
        padding: 0 .85rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .next-ux20 .banner {
        display: grid;
        gap: .6rem
    }

    .next-ux20 .numbers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: .5rem
    }

    .next-ux20 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .next-ux20 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .next-ux20 .duo article {
        display: grid;
        gap: .45rem
    }

    .next-ux20 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .next-ux20 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .next-ux20 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .next-ux20 .bar {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    @media (max-width: 820px) {
        .next-ux20 .split, .next-ux20 .bar, .next-ux20 .duo {
            grid-template-columns:1fr
        }

        .next-ux20 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .next-ux20 .numbers {
            grid-template-columns:1fr
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.rec-lx6{padding:calc(var(--space-y)*2.65) var(--space-x)}
.rec-lx6 .rec-grid{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.6rem}
.rec-lx6 .rec-main{grid-column:span 12;padding:1rem;border-radius:var(--radius-xl);border:1px solid var(--border-on-surface);background:var(--surface-1)}
.rec-lx6 .rec-main h2{margin:0;font-size:clamp(1.75rem,3.1vw,2.45rem)}
.rec-lx6 .rec-main p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.rec-lx6 .rec-item{grid-column:span 4;padding:.9rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface);background:var(--surface-2)}
.rec-lx6 .rec-item:nth-child(odd){background:var(--surface-1)}
.rec-lx6 h3{margin:0 0 .22rem;font-size:1rem}
.rec-lx6 .rec-item p{margin:0 0 .55rem;color:var(--fg-on-surface-light)}
.rec-lx6 a{text-decoration:none;color:var(--link);font-weight:700}
@media (max-width:920px){.rec-lx6 .rec-item{grid-column:span 6}}@media (max-width:620px){.rec-lx6 .rec-item{grid-column:1/-1}}

.values-beads-c3 {
        padding: clamp(3.5rem, 8vw, 6.1rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

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

    .values-beads-c3__head {
        margin-bottom: 1.1rem;
    }

    .values-beads-c3__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

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

    .values-beads-c3__head span {
        display: block;
        margin-top: .8rem;

    }

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

    .values-beads-c3__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

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

    .values-beads-c3__top i {
        font-style: normal;
    }

    .values-beads-c3__top strong {
        color: var(--bg-accent);
    }

    .values-beads-c3__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-beads-c3__grid p {
        margin: 0;

    }

    .values-beads-c3__grid small {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

header {
    position: relative;
    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: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
  }

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    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.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

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

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: 0 var(--space-x);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
  }

  .nav.open {
    max-height: 400px;
    padding: var(--space-y) var(--space-x);
  }

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .nav-list li:last-child a {
    border-bottom: none;
  }

  @media (min-width: 768px) {
    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--space-x);
    }

    .nav.open {
      max-height: 400px;
      padding: var(--space-y) var(--space-x);
    }

    .nav-list {
      flex-direction: column;
    }

    .nav-list a {
      border-bottom: 1px solid var(--border-on-surface);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-brand {
    flex: 1 1 200px;
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    letter-spacing: 1px;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-contact {
    width: 100%;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  .footer-legal a {
    color: #ecf0f1;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
  }
  .footer-legal a:hover {
    border-bottom-color: #e67e22;
  }
  .footer-disclaimer {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.9;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 0.75rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
  }

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

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

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.mis-lx8{padding:calc(var(--space-y)*2.95) var(--space-x);background:var(--bg-alt)}
.mis-lx8 .mis-shell{max-width:var(--max-w);margin:0 auto}
.mis-lx8 h2{margin:0 0 .9rem;font-size:clamp(1.75rem,3.1vw,2.45rem)}
.mis-lx8 .mis-split{display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)}
.mis-lx8 .mis-split>p{margin:0;padding:1rem;border-radius:var(--radius-lg);background:var(--surface-1);border:1px solid var(--border-on-surface);color:var(--fg-on-surface-light)}
.mis-lx8 .mis-points{display:grid;gap:.55rem}
.mis-lx8 .mis-points div{padding:.8rem .9rem;border-radius:var(--radius-md);background:var(--surface-1);border-inline-start:4px solid var(--bg-primary)}
.mis-lx8 h3{margin:0 0 .2rem;font-size:1.02rem}
.mis-lx8 .mis-points p{margin:0;color:var(--fg-on-surface-light)}
@keyframes missionFloat{0%{transform:translateY(4px);opacity:.75}100%{transform:none;opacity:1}}
.mis-lx8 .mis-points div{animation:missionFloat .45s var(--anim-ease) both}
.mis-lx8 .mis-points div:nth-child(2){animation-delay:.06s}.mis-lx8 .mis-points div:nth-child(3){animation-delay:.12s}
@media (max-width:860px){.mis-lx8 .mis-split{grid-template-columns:1fr}}

.team-fresh-v4 {
        padding: calc(var(--space-y) * 2.6) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .team-fresh-v4 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

    .team-fresh-v4 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.3vw, 2.5rem);
    }

    .team-fresh-v4 .strip {
        display: flex;
        gap: var(--gap);
        overflow: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: .2rem;
    }

    .team-fresh-v4 article {
        min-width: 220px;
        scroll-snap-align: start;
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
        padding: .9rem;
        border-radius: var(--radius-md);
    }

    .team-fresh-v4 img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: var(--radius-sm);
    }

    .team-fresh-v4 h3 {
        margin: .7rem 0 .2rem;
    }

    .team-fresh-v4 .role {
        margin: 0;
        opacity: .9;
    }

.partners--light-v6 {

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

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

.partners__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
}

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

.partners__chip {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
    font-size: 0.85rem;
    color: var(--neutral-800);
}

.identity-nv11 {
        padding: clamp(52px, 8vw, 96px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--bg-primary), var(--brand));
        color: var(--fg-on-primary);
    }

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

    .identity-nv11__hero {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.28);
    }

    .identity-nv11__hero h2 {
        margin: 0;
        font-size: clamp(28px, 4.5vw, 46px);
    }

    .identity-nv11__hero p {
        margin: 8px 0 0;
        opacity: .92;
        max-width: 72ch;
    }

    .identity-nv11__content {
        margin-top: 14px;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: var(--gap);
    }

    .identity-nv11__copy span {
        display: block;
        margin: 0 0 9px;
        opacity: .92;
    }

    .identity-nv11__list h3 {
        margin: 0 0 9px;
        font-size: 1rem;
    }

    .identity-nv11__list ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .identity-nv11__list li {
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.14);
        padding: 9px 11px;
    }

    @media (max-width: 820px) {
        .identity-nv11__content {
            grid-template-columns: 1fr;
        }
    }

header {
    position: relative;
    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: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
  }

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    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.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

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

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: 0 var(--space-x);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
  }

  .nav.open {
    max-height: 400px;
    padding: var(--space-y) var(--space-x);
  }

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .nav-list li:last-child a {
    border-bottom: none;
  }

  @media (min-width: 768px) {
    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--space-x);
    }

    .nav.open {
      max-height: 400px;
      padding: var(--space-y) var(--space-x);
    }

    .nav-list {
      flex-direction: column;
    }

    .nav-list a {
      border-bottom: 1px solid var(--border-on-surface);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-brand {
    flex: 1 1 200px;
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    letter-spacing: 1px;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-contact {
    width: 100%;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  .footer-legal a {
    color: #ecf0f1;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
  }
  .footer-legal a:hover {
    border-bottom-color: #e67e22;
  }
  .footer-disclaimer {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.9;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 0.75rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
  }

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

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

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}

.cap-cobalt-v1{padding:calc(var(--space-y)*3) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)}
.cap-cobalt-v1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:.92fr 1.08fr;gap:calc(var(--gap)*1.3)}
.cap-cobalt-v1 .lead h2{margin:.3rem 0;font-size:clamp(1.9rem,4vw,3rem);line-height:1.1}
.cap-cobalt-v1 .sub{max-width:42ch;opacity:.9}
.cap-cobalt-v1 .cta{display:inline-block;margin-top:.7rem;padding:.62rem .95rem;border-radius:var(--radius-md);background:var(--surface-1);color:var(--fg-on-surface);text-decoration:none;font-weight:700}
.cap-cobalt-v1 .grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:var(--gap)}
.cap-cobalt-v1 article{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)}
.cap-cobalt-v1 .tag{margin:0 0 .35rem;font-size:.78rem;opacity:.85}
.cap-cobalt-v1 h3{margin:0 0 .45rem}
.cap-cobalt-v1 p{margin:0}
.cap-cobalt-v1 .benefit{margin-top:.55rem;font-weight:700}
@media (max-width:920px){.cap-cobalt-v1 .shell{grid-template-columns:1fr}.cap-cobalt-v1 .grid{grid-template-columns:1fr}}

.hiw-panels-l4 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

    .hiw-panels-l4__head {
        margin-bottom: 1.2rem;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

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

    .hiw-panels-l4__head p {
        margin: 0;
        color: var(--neutral-600);
        max-width: 32rem;
    }

    .hiw-panels-l4__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        gap: var(--gap);
    }

    .hiw-panels-l4__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-sm);
    }

    .hiw-panels-l4__badge {
        display: inline-flex;
        padding: .35rem .65rem;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--brand);
        font-weight: 700;
    }

    .hiw-panels-l4__grid h3 {
        margin: .75rem 0 .35rem;
    }

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

.index-feedback-accordion {
        background: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.75), transparent 60%),
        var(--gradient-hero);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .index-feedback-accordion__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .index-feedback-accordion__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-feedback-accordion__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-feedback-accordion__list {
        display: grid;
        gap: 12px;
    }

    .index-feedback-accordion__row {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(248, 225, 231, 0.95);
        background: rgba(58, 46, 61, 0.92);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-feedback-accordion__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--bg-page);
        font: inherit;
    }

    .index-feedback-accordion__left {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-feedback-accordion__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-accordion__name {
        font-weight: 800;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-accordion__meta {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-accordion__right {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .index-feedback-accordion__stars {
        color: var(--brand);
        letter-spacing: 0.08em;
        font-size: 13px;
        line-height: 1;
    }

    .index-feedback-accordion__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--bg-page);
    }

    .index-feedback-accordion__a {
        display: none;
        padding: 0 16px 14px;
        color: rgba(255, 255, 255, 0.85);
        overflow: hidden;
    }

    .index-feedback-accordion__quote {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback-accordion__badge {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.78);
    }

header {
    position: relative;
    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: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
  }

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    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.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

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

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: 0 var(--space-x);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
  }

  .nav.open {
    max-height: 400px;
    padding: var(--space-y) var(--space-x);
  }

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .nav-list li:last-child a {
    border-bottom: none;
  }

  @media (min-width: 768px) {
    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--space-x);
    }

    .nav.open {
      max-height: 400px;
      padding: var(--space-y) var(--space-x);
    }

    .nav-list {
      flex-direction: column;
    }

    .nav-list a {
      border-bottom: 1px solid var(--border-on-surface);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-brand {
    flex: 1 1 200px;
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    letter-spacing: 1px;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-contact {
    width: 100%;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  .footer-legal a {
    color: #ecf0f1;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
  }
  .footer-legal a:hover {
    border-bottom-color: #e67e22;
  }
  .footer-disclaimer {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.9;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 0.75rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
  }

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

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

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.con-lx6{padding:calc(var(--space-y)*2.6) var(--space-x)}
.con-lx6 .con-max{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1fr 320px;gap:var(--gap)}
.con-lx6 .con-card{padding:1.1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface);box-shadow:var(--shadow-sm)}
.con-lx6 h2{margin:0;font-size:clamp(1.7rem,3vw,2.4rem)}
.con-lx6 .con-card>p{margin:.4rem 0 .9rem;color:var(--fg-on-surface-light)}
.con-lx6 dl{margin:0;display:grid;gap:.65rem}
.con-lx6 dl div{display:grid;grid-template-columns:170px 1fr;gap:.7rem;padding-bottom:.5rem;border-bottom:1px solid var(--border-on-surface-light)}
.con-lx6 dl div:last-child{border-bottom:0;padding-bottom:0}
.con-lx6 dt{font-weight:700;color:var(--fg-on-surface-light)}
.con-lx6 dd{margin:0}
.con-lx6 .con-rail{list-style:none;margin:0;padding:0;display:grid;gap:.5rem}
.con-lx6 .con-rail li{padding:.85rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface);background:var(--surface-2)}
.con-lx6 .con-rail h3{margin:0 0 .2rem;font-size:1rem}
.con-lx6 a{text-decoration:none;color:var(--link)}
@media (max-width:900px){.con-lx6 .con-max,.con-lx6 dl div{grid-template-columns:1fr}}

.clar-ux5{padding:clamp(20px,3vw,44px);background:var(--gradient-accent);color:var(--accent-contrast)}.clar-ux5__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux5__head{margin-bottom:12px}.clar-ux5__head h2{margin:0}.clar-ux5__head p{margin:8px 0 0;color:rgba(255,255,255,.88)}.clar-ux5__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px}.clar-ux5__grid article{border:1px solid rgba(255,255,255,.3);background:rgba(255,255,255,.1);border-radius:var(--radius-md);padding:12px}.clar-ux5__grid span,.clar-ux5__grid small{display:inline-flex;font-size:.82rem;opacity:.9}.clar-ux5__grid h3{margin:6px 0}.clar-ux5__grid p{margin:0;opacity:.93}

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.frm-lx6{padding:calc(var(--space-y)*2.85) var(--space-x)}
.frm-lx6 .frm-max{max-width:var(--max-w);margin:0 auto}
.frm-lx6 .frm-head{margin-bottom:.9rem}
.frm-lx6 h2{margin:0;font-size:clamp(1.78rem,3.3vw,2.5rem)}
.frm-lx6 .frm-head p{margin:.4rem 0 0;color:var(--fg-on-surface-light)}
.frm-lx6 .frm-columns{display:grid;grid-template-columns:1fr 1fr;gap:.7rem;padding:.7rem;background:var(--surface-2);border-radius:var(--radius-xl);border:1px solid var(--border-on-surface)}
.frm-lx6 .frm-col{padding:.8rem;border-radius:var(--radius-lg);background:var(--surface-1);display:grid;gap:.62rem}
.frm-lx6 label{display:grid;gap:.25rem}
.frm-lx6 span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx6 input,.frm-lx6 textarea{width:100%;padding:.76rem .8rem;border-radius:var(--radius-sm);border:1px solid var(--border-on-surface-light);font:inherit;color:var(--fg-on-surface);background:var(--surface-1)}
.frm-lx6 textarea{min-height:170px;resize:vertical}
.frm-lx6 button{padding:.82rem 1rem;border:0;border-radius:var(--radius-md);background:var(--gradient-hero);color:var(--brand-contrast);font-weight:700;cursor:pointer;transition:transform var(--anim-duration) var(--anim-ease)}
.frm-lx6 button:hover{transform:translateY(-2px)}
@media (max-width:860px){.frm-lx6 .frm-columns{grid-template-columns:1fr}}

header {
    position: relative;
    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: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
  }

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    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.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

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

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: 0 var(--space-x);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
  }

  .nav.open {
    max-height: 400px;
    padding: var(--space-y) var(--space-x);
  }

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .nav-list li:last-child a {
    border-bottom: none;
  }

  @media (min-width: 768px) {
    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--space-x);
    }

    .nav.open {
      max-height: 400px;
      padding: var(--space-y) var(--space-x);
    }

    .nav-list {
      flex-direction: column;
    }

    .nav-list a {
      border-bottom: 1px solid var(--border-on-surface);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-brand {
    flex: 1 1 200px;
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    letter-spacing: 1px;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-contact {
    width: 100%;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  .footer-legal a {
    color: #ecf0f1;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
  }
  .footer-legal a:hover {
    border-bottom-color: #e67e22;
  }
  .footer-disclaimer {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.9;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 0.75rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
  }

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

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

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.pol-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.pol-lx10 .pol-shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:.72rem}
.pol-lx10 .pol-banner{padding:1rem;border-radius:var(--radius-xl);border:1px solid var(--border-on-surface);background:var(--surface-1)}
.pol-lx10 h2{margin:0;font-size:clamp(1.74rem,3vw,2.42rem)}
.pol-lx10 .pol-banner p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.pol-lx10 .pol-matrix{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.6rem}
.pol-lx10 .pol-matrix article{padding:.85rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-md);background:var(--surface-1)}
.pol-lx10 .pol-matrix h3{margin:0 0 .2rem;font-size:1rem}
.pol-lx10 .pol-matrix p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx10 .pol-end{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.6rem}
.pol-lx10 .pol-end p{margin:0;padding:.75rem;border-radius:var(--radius-md);background:var(--surface-2)}
@media (max-width:760px){.pol-lx10 .pol-matrix,.pol-lx10 .pol-end{grid-template-columns:1fr}}

header {
    position: relative;
    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: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
  }

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    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.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

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

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: 0 var(--space-x);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
  }

  .nav.open {
    max-height: 400px;
    padding: var(--space-y) var(--space-x);
  }

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .nav-list li:last-child a {
    border-bottom: none;
  }

  @media (min-width: 768px) {
    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--space-x);
    }

    .nav.open {
      max-height: 400px;
      padding: var(--space-y) var(--space-x);
    }

    .nav-list {
      flex-direction: column;
    }

    .nav-list a {
      border-bottom: 1px solid var(--border-on-surface);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-brand {
    flex: 1 1 200px;
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    letter-spacing: 1px;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-contact {
    width: 100%;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  .footer-legal a {
    color: #ecf0f1;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
  }
  .footer-legal a:hover {
    border-bottom-color: #e67e22;
  }
  .footer-disclaimer {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.9;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 0.75rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
  }

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

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

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

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

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

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

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

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

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

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

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

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

header {
    position: relative;
    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: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
  }

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    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.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

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

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: 0 var(--space-x);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
  }

  .nav.open {
    max-height: 400px;
    padding: var(--space-y) var(--space-x);
  }

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .nav-list li:last-child a {
    border-bottom: none;
  }

  @media (min-width: 768px) {
    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--space-x);
    }

    .nav.open {
      max-height: 400px;
      padding: var(--space-y) var(--space-x);
    }

    .nav-list {
      flex-direction: column;
    }

    .nav-list a {
      border-bottom: 1px solid var(--border-on-surface);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-brand {
    flex: 1 1 200px;
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    letter-spacing: 1px;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-contact {
    width: 100%;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  .footer-legal a {
    color: #ecf0f1;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
  }
  .footer-legal a:hover {
    border-bottom-color: #e67e22;
  }
  .footer-disclaimer {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.9;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 0.75rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
  }

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

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

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.thank-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .thank-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u5 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u5 article,.thank-u5 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u5 p{margin:0} .thank-u5 a{text-decoration:none;color:inherit;font-weight:700} .thank-u5 .split{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)} .thank-u5 .panel{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .thank-u5 .grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.55rem} @media (max-width:860px){.thank-u5 .split,.thank-u5 .media,.thank-u5 .grid,.thank-u5 .cards,.thank-u5 .bento,.thank-u5 .foot{grid-template-columns:1fr}}

header {
    position: relative;
    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: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
  }

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    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.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

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

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: 0 var(--space-x);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
  }

  .nav.open {
    max-height: 400px;
    padding: var(--space-y) var(--space-x);
  }

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .nav-list li:last-child a {
    border-bottom: none;
  }

  @media (min-width: 768px) {
    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--space-x);
    }

    .nav.open {
      max-height: 400px;
      padding: var(--space-y) var(--space-x);
    }

    .nav-list {
      flex-direction: column;
    }

    .nav-list a {
      border-bottom: 1px solid var(--border-on-surface);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-brand {
    flex: 1 1 200px;
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    letter-spacing: 1px;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-contact {
    width: 100%;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  .footer-legal a {
    color: #ecf0f1;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
  }
  .footer-legal a:hover {
    border-bottom-color: #e67e22;
  }
  .footer-disclaimer {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.9;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 0.75rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
  }

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

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

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.err-slab-e {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 14px, var(--neutral-0) 14px, var(--neutral-0) 28px);
        color: var(--fg-on-page);
    }

    .err-slab-e .inner {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(26px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

    .err-slab-e a {
        display: inline-block;
        margin-top: 16px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }