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

  --max-w: 1040px;
  --space-x: 1.28rem;
  --space-y: 1.05rem;
  --gap: 1.77rem;

  --radius-xl: 1.13rem;
  --radius-lg: 0.97rem;
  --radius-md: 0.5rem;
  --radius-sm: 0.32rem;

  --shadow-sm: 0 1px 6px rgba(0,0,0,0.15);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.2);
  --shadow-lg: 0 26px 38px rgba(0,0,0,0.24);

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

  --brand: #2E7D32;
  --brand-contrast: #FFFFFF;
  --accent: #1565C0;
  --accent-contrast: #FFFFFF;

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

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

  --bg-alt: #EEEEEE;
  --fg-on-alt: #424242;

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

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #424242;
  --border-on-surface-light: #E0E0E0;

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

  --bg-accent: #E3F2FD;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #0D47A1;

  --link: #1565C0;
  --link-hover: #0D47A1;

  --gradient-hero: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  --gradient-accent: linear-gradient(135deg, #1565C0 0%, #0D47A1 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;}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    position: relative;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
  }

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

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

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

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

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

  .offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 1000;
    overflow-y: auto;
  }

  .offcanvas.open {
    right: 0;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin-top: calc(var(--space-y) * 4);
  }

  .nav-link {
    display: block;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--link-hover);
    border-bottom-color: var(--accent);
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

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

    .offcanvas {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      overflow: visible;
      right: auto;
      transition: none;
    }

    .offcanvas.open {
      right: auto;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
      margin-top: 0;
    }

    .nav-link {
      padding: 0;
      border-bottom: none;
    }

    .overlay {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    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: 20px;
  }
  .footer-top {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-brand {
    flex: 0 0 auto;
  }
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-middle {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-contact li {
    color: #ccc;
  }
  .footer-contact a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    align-items: center;
  }
  .footer-legal a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer p {
    font-size: 12px;
    color: #999;
    margin: 0;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      margin-top: 10px;
    }
    .footer-contact ul {
      justify-content: center;
    }
    .footer-bottom {
      text-align: center;
    }
    .footer-legal {
      flex-direction: column;
      gap: 5px;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

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

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

.intro-banner-c5 {
        padding: clamp(4rem, 9vw, 7rem) var(--space-x);
        background: linear-gradient(120deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .intro-banner-c5__wrap {
        max-width: 62rem;
        margin: 0 auto;
        text-align: center;
    }

    .intro-banner-c5__over {
        display: inline-flex;
        padding: .45rem .8rem;
        border-radius: 999px;
        background: var(--chip-bg);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-banner-c5__wrap h1 {
        margin: .8rem 0 0;
        font-size: clamp(2.6rem, 5vw, 4.8rem);
        line-height: 1;
    }

    .intro-banner-c5__sub {
        margin: 1rem auto 0;
        max-width: 40rem;
        color: rgba(255, 255, 255, .88);
    }

    .intro-banner-c5__bar {
        margin-top: 1.25rem;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .75rem;
    }

    .intro-banner-c5__bar div {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
    }

    .intro-banner-c5__cta {
        margin-top: 1rem;
        padding: .9rem 1rem;
        border-radius: var(--radius-md);
        background: rgba(17, 24, 39, .2);
    }

    @media (max-width: 640px) {
        .intro-banner-c5__bar {
            grid-template-columns: 1fr;
        }
    }

.next-grid-l8 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

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

    .next-grid-l8__copy {
        margin-bottom: 1rem;
        text-align: center;
    }

    .next-grid-l8__copy p {
        margin: 0;
        color: var(--neutral-600);
    }

    .next-grid-l8__copy h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-grid-l8__copy span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
    }

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

    .next-grid-l8__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .next-grid-l8__grid div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--surface-2);
    }

    .next-grid-l8__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .next-grid-l8__grid a {
        color: var(--link);
        text-decoration: none;
    }

    .next-grid-l8__foot {
        margin-top: 1rem;
        text-align: center;
    }

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

.education-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

    .education-struct-v5 h2, .education-struct-v5 h3, .education-struct-v5 p {
        margin: 0
    }

    .education-struct-v5 a {
        text-decoration: none
    }

    .education-struct-v5 article, .education-struct-v5 .row, .education-struct-v5 details, .education-struct-v5 .program {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

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

    .education-struct-v5 .grid a, .education-struct-v5 .tiers a, .education-struct-v5 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v5 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v5 .path article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .education-struct-v5 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v5 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

    .education-struct-v5 .combo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .education-struct-v5 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v5 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .education-struct-v5 .mentors img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .education-struct-v5 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v5 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v5 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v5 .grid, .education-struct-v5 .tiers, .education-struct-v5 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v5 .grid, .education-struct-v5 .tiers, .education-struct-v5 .combo, .education-struct-v5 .row {
            grid-template-columns:1fr
        }
    }

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

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

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

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

    .about-struct-v2 .split img, .about-struct-v2 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v2 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v2 .split div {
        display: grid;
        gap: .5rem
    }

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

    .about-struct-v2 article, .about-struct-v2 .values div, .about-struct-v2 .facts div, .about-struct-v2 .quote, .about-struct-v2 .statement {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v2 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v2 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .about-struct-v2 .values, .about-struct-v2 .facts {
        display: grid;
        gap: .6rem
    }

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

    .about-struct-v2 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v2 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v2 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

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

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

    @media (max-width: 680px) {
        .about-struct-v2 .split, .about-struct-v2 .duo, .about-struct-v2 .cards, .about-struct-v2 .gallery {
            grid-template-columns:1fr
        }
    }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    position: relative;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
  }

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

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

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

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

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

  .offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 1000;
    overflow-y: auto;
  }

  .offcanvas.open {
    right: 0;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin-top: calc(var(--space-y) * 4);
  }

  .nav-link {
    display: block;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--link-hover);
    border-bottom-color: var(--accent);
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

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

    .offcanvas {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      overflow: visible;
      right: auto;
      transition: none;
    }

    .offcanvas.open {
      right: auto;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
      margin-top: 0;
    }

    .nav-link {
      padding: 0;
      border-bottom: none;
    }

    .overlay {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    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: 20px;
  }
  .footer-top {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-brand {
    flex: 0 0 auto;
  }
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-middle {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-contact li {
    color: #ccc;
  }
  .footer-contact a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    align-items: center;
  }
  .footer-legal a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer p {
    font-size: 12px;
    color: #999;
    margin: 0;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      margin-top: 10px;
    }
    .footer-contact ul {
      justify-content: center;
    }
    .footer-bottom {
      text-align: center;
    }
    .footer-legal {
      flex-direction: column;
      gap: 5px;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

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

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

.partners {

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

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

    .partners .partners__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--fg-on-page);
    }

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__content {
        padding: clamp(32px, 5vw, 40px);
    }

    .partners .partners__card {
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        text-align: center;
    }

    .partners .partners__logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 300px;

    }

    .partners .partners__content h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

    .partners .partners__content p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

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

    .identity-lv6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: var(--gap);
        align-items: start;
    }

    .identity-lv6__img img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .identity-lv6__body h3 {
        margin: 0 0 10px;
        color: var(--brand);
        font-size: 1rem;
    }

    .identity-lv6__body p {
        margin: 0 0 10px;
        color: var(--neutral-600);
    }

    .identity-lv6__body ul {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 6px;
        color: var(--neutral-800);
    }

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

.testimonials-struct-v4 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-primary);
        color: var(--fg-on-primary)
    }

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

    .testimonials-struct-v4 h2, .testimonials-struct-v4 h3, .testimonials-struct-v4 p {
        margin: 0
    }

    .testimonials-struct-v4 article, .testimonials-struct-v4 blockquote, .testimonials-struct-v4 figure, .testimonials-struct-v4 .spotlight, .testimonials-struct-v4 .row {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

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

    .testimonials-struct-v4 .rail {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: .6rem
    }

    .testimonials-struct-v4 .stack {
        display: grid;
        gap: .65rem
    }

    .testimonials-struct-v4 .stack article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .testimonials-struct-v4 img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .testimonials-struct-v4 .table {
        display: grid;
        gap: .45rem
    }

    .testimonials-struct-v4 .row {
        display: grid;
        grid-template-columns:12rem 1fr;
        gap: .6rem
    }

    .testimonials-struct-v4 .wall {
        columns: 3;
        column-gap: var(--gap)
    }

    .testimonials-struct-v4 blockquote {
        break-inside: avoid;
        margin: 0 0 var(--gap) 0;
        display: grid;
        gap: .4rem
    }

    .testimonials-struct-v4 .slider {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap)
    }

    .testimonials-struct-v4 .dots {
        display: flex;
        justify-content: center;
        gap: .4rem
    }

    .testimonials-struct-v4 .dots span {
        padding: .25rem .45rem;
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .testimonials-struct-v4 .grid, .testimonials-struct-v4 .rail, .testimonials-struct-v4 .slider {
            grid-template-columns:1fr 1fr
        }

        .testimonials-struct-v4 .wall {
            columns: 2
        }
    }

    @media (max-width: 680px) {
        .testimonials-struct-v4 .grid, .testimonials-struct-v4 .rail, .testimonials-struct-v4 .slider, .testimonials-struct-v4 .row {
            grid-template-columns:1fr
        }

        .testimonials-struct-v4 .wall {
            columns: 1
        }
    }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    position: relative;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
  }

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

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

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

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

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

  .offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 1000;
    overflow-y: auto;
  }

  .offcanvas.open {
    right: 0;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin-top: calc(var(--space-y) * 4);
  }

  .nav-link {
    display: block;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--link-hover);
    border-bottom-color: var(--accent);
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

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

    .offcanvas {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      overflow: visible;
      right: auto;
      transition: none;
    }

    .offcanvas.open {
      right: auto;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
      margin-top: 0;
    }

    .nav-link {
      padding: 0;
      border-bottom: none;
    }

    .overlay {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    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: 20px;
  }
  .footer-top {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-brand {
    flex: 0 0 auto;
  }
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-middle {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-contact li {
    color: #ccc;
  }
  .footer-contact a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    align-items: center;
  }
  .footer-legal a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer p {
    font-size: 12px;
    color: #999;
    margin: 0;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      margin-top: 10px;
    }
    .footer-contact ul {
      justify-content: center;
    }
    .footer-bottom {
      text-align: center;
    }
    .footer-legal {
      flex-direction: column;
      gap: 5px;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

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

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

.hiw-canvas-l8 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .hiw-canvas-l8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        align-items: start;
        flex-wrap: wrap;
    }

    .hiw-canvas-l8__media {
        flex: 1 1 18rem;
        order: calc(3 - var(--random-number));
    }

    .hiw-canvas-l8__content {
        flex: 1 1 22rem;
        order: var(--random-number);
    }

    .hiw-canvas-l8__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

    .hiw-canvas-l8__content p:first-child {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .hiw-canvas-l8__stack p {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .hiw-canvas-l8__notes {
        margin-top: 1rem;
        display: flex;
        gap: .65rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .hiw-canvas-l8__notes strong {
        color: var(--brand);
        margin-right: .25rem;
    }

    .hiw-canvas-l8__notes span {
        display: inline-flex;
        padding: .55rem .8rem;
        border-radius: 999px;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

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

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

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

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

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

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

    .features-struct-v4 .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-v4 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-v4 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.index-feedback-summary {
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .index-feedback-summary__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);
        transform: translateY(-18px);
    }

    .index-feedback-summary__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
    }

    .index-feedback-summary__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .index-feedback-summary__layout {
        display: grid;
        grid-template-columns: minmax(260px, 340px) 1fr;
        gap: clamp(16px, 3vw, 28px);
        align-items: start;
    }

    .index-feedback-summary__panel {
        border-radius: var(--radius-xl);
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        padding: clamp(18px, 3vw, 26px);
        box-shadow: var(--shadow-md);

        transform: translateY(22px);
        position: sticky;
        top: 16px;
    }

    .index-feedback-summary__kpi {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 14px;
    }

    .index-feedback-summary__avg {
        width: 72px;
        height: 72px;
        border-radius: 22px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 22px;
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .index-feedback-summary__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 14px;
        line-height: 1;
        margin-bottom: 6px;
    }

    .index-feedback-summary__count {
        font-size: 12px;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .index-feedback-summary__note {
        color: var(--fg-on-accent);
        font-size: 14px;
    }

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

    .index-feedback-summary__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        padding: 18px 18px 16px;

        transform: translateY(22px);
    }

    .index-feedback-summary__head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

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

    .index-feedback-summary__avatar {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-summary__who h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 900;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-summary__who p {
        margin: 2px 0 0;
        font-size: 12px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

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

    .index-feedback-summary__quote {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

    @media (max-width: 860px) {
        .index-feedback-summary__layout {
            grid-template-columns: 1fr;
        }

        .index-feedback-summary__panel {
            position: relative;
            top: 0;
        }
    }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    position: relative;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
  }

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

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

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

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

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

  .offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 1000;
    overflow-y: auto;
  }

  .offcanvas.open {
    right: 0;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin-top: calc(var(--space-y) * 4);
  }

  .nav-link {
    display: block;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--link-hover);
    border-bottom-color: var(--accent);
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

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

    .offcanvas {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      overflow: visible;
      right: auto;
      transition: none;
    }

    .offcanvas.open {
      right: auto;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
      margin-top: 0;
    }

    .nav-link {
      padding: 0;
      border-bottom: none;
    }

    .overlay {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    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: 20px;
  }
  .footer-top {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-brand {
    flex: 0 0 auto;
  }
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-middle {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-contact li {
    color: #ccc;
  }
  .footer-contact a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    align-items: center;
  }
  .footer-legal a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer p {
    font-size: 12px;
    color: #999;
    margin: 0;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      margin-top: 10px;
    }
    .footer-contact ul {
      justify-content: center;
    }
    .footer-bottom {
      text-align: center;
    }
    .footer-legal {
      flex-direction: column;
      gap: 5px;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

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

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

.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 .item-card a {
        color: var(--link);
        text-decoration: none;
    }

    .contact-layout-b .item-card a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

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

    .contact-layout-b .social a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

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

.map-split-l1 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .map-split-l1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .85fr 1.15fr;
        gap: 1rem;
    }

    .map-split-l1__side h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .map-split-l1__side p {
        margin: .6rem 0 0;
        color: var(--neutral-600);
    }

    .map-split-l1__list {
        margin-top: 1rem;
        display: grid;
        gap: .7rem;
    }

    .map-split-l1__list div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-split-l1__list span {
        display: block;
        margin-top: .3rem;
        color: var(--neutral-600);
    }

    .map-split-l1__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .map-split-l1__embed iframe {
        display: block;
        width: 100%;
        height: 24rem;
    }

    @media (max-width: 840px) {
        .map-split-l1__wrap {
            grid-template-columns: 1fr;
        }
    }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    position: relative;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
  }

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

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

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

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

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

  .offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 1000;
    overflow-y: auto;
  }

  .offcanvas.open {
    right: 0;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin-top: calc(var(--space-y) * 4);
  }

  .nav-link {
    display: block;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--link-hover);
    border-bottom-color: var(--accent);
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

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

    .offcanvas {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      overflow: visible;
      right: auto;
      transition: none;
    }

    .offcanvas.open {
      right: auto;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
      margin-top: 0;
    }

    .nav-link {
      padding: 0;
      border-bottom: none;
    }

    .overlay {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    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: 20px;
  }
  .footer-top {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-brand {
    flex: 0 0 auto;
  }
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-middle {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-contact li {
    color: #ccc;
  }
  .footer-contact a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    align-items: center;
  }
  .footer-legal a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer p {
    font-size: 12px;
    color: #999;
    margin: 0;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      margin-top: 10px;
    }
    .footer-contact ul {
      justify-content: center;
    }
    .footer-bottom {
      text-align: center;
    }
    .footer-legal {
      flex-direction: column;
      gap: 5px;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

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

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    position: relative;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
  }

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

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

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

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

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

  .offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 1000;
    overflow-y: auto;
  }

  .offcanvas.open {
    right: 0;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin-top: calc(var(--space-y) * 4);
  }

  .nav-link {
    display: block;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--link-hover);
    border-bottom-color: var(--accent);
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

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

    .offcanvas {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      overflow: visible;
      right: auto;
      transition: none;
    }

    .offcanvas.open {
      right: auto;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
      margin-top: 0;
    }

    .nav-link {
      padding: 0;
      border-bottom: none;
    }

    .overlay {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    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: 20px;
  }
  .footer-top {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-brand {
    flex: 0 0 auto;
  }
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-middle {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-contact li {
    color: #ccc;
  }
  .footer-contact a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    align-items: center;
  }
  .footer-legal a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer p {
    font-size: 12px;
    color: #999;
    margin: 0;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      margin-top: 10px;
    }
    .footer-contact ul {
      justify-content: center;
    }
    .footer-bottom {
      text-align: center;
    }
    .footer-legal {
      flex-direction: column;
      gap: 5px;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

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

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    position: relative;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
  }

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

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

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

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

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

  .offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 1000;
    overflow-y: auto;
  }

  .offcanvas.open {
    right: 0;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin-top: calc(var(--space-y) * 4);
  }

  .nav-link {
    display: block;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--link-hover);
    border-bottom-color: var(--accent);
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

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

    .offcanvas {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      overflow: visible;
      right: auto;
      transition: none;
    }

    .offcanvas.open {
      right: auto;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
      margin-top: 0;
    }

    .nav-link {
      padding: 0;
      border-bottom: none;
    }

    .overlay {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    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: 20px;
  }
  .footer-top {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-brand {
    flex: 0 0 auto;
  }
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-middle {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-contact li {
    color: #ccc;
  }
  .footer-contact a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    align-items: center;
  }
  .footer-legal a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer p {
    font-size: 12px;
    color: #999;
    margin: 0;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      margin-top: 10px;
    }
    .footer-contact ul {
      justify-content: center;
    }
    .footer-bottom {
      text-align: center;
    }
    .footer-legal {
      flex-direction: column;
      gap: 5px;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

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

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

.thank-mode-e {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: repeating-linear-gradient(135deg, var(--bg-alt), var(--bg-alt) 16px, var(--neutral-0) 16px, var(--neutral-0) 32px);
        color: var(--fg-on-page);
    }

    .thank-mode-e .wrap {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

    .thank-mode-e a {
        display: inline-block;
        margin-top: 16px;
        padding: 9px 14px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-page);
    }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    position: relative;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
  }

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

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

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

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

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

  .offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 1000;
    overflow-y: auto;
  }

  .offcanvas.open {
    right: 0;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin-top: calc(var(--space-y) * 4);
  }

  .nav-link {
    display: block;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--link-hover);
    border-bottom-color: var(--accent);
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

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

    .offcanvas {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      overflow: visible;
      right: auto;
      transition: none;
    }

    .offcanvas.open {
      right: auto;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
      margin-top: 0;
    }

    .nav-link {
      padding: 0;
      border-bottom: none;
    }

    .overlay {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    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: 20px;
  }
  .footer-top {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-brand {
    flex: 0 0 auto;
  }
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-middle {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-contact li {
    color: #ccc;
  }
  .footer-contact a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    align-items: center;
  }
  .footer-legal a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer p {
    font-size: 12px;
    color: #999;
    margin: 0;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      margin-top: 10px;
    }
    .footer-contact ul {
      justify-content: center;
    }
    .footer-bottom {
      text-align: center;
    }
    .footer-legal {
      flex-direction: column;
      gap: 5px;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

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

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

    .err-slab-f .chip {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        position: relative;
    }

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

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

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

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