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

  --max-w: 1260px;
  --space-x: 1.17rem;
  --space-y: 1.06rem;
  --gap: 0.9rem;

  --radius-xl: 1.09rem;
  --radius-lg: 0.69rem;
  --radius-md: 0.49rem;
  --radius-sm: 0.22rem;

  --shadow-sm: 0 1px 6px rgba(0,0,0,0.09);
  --shadow-md: 0 5px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 36px rgba(0,0,0,0.14);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 210ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --random-number: 1;

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

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

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

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

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

  --surface-light: #ffffff;
  --fg-on-surface-light: #495057;
  --border-on-surface-light: #e9ecef;

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

  --bg-accent: #fef5e7;
  --fg-on-accent: #784212;
  --bg-accent-hover: #d35400;

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

  --gradient-hero: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  --gradient-accent: linear-gradient(90deg, #e67e22 0%, #d35400 100%);

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

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

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

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

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav__list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav__link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.btn-search {
    background: none;
    border: none;
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
    color: var(--brand);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}
.burger__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: 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[aria-expanded="true"] .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger__line:nth-child(2) {
    opacity: 0;
}
.burger[aria-expanded="true"] .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(4px);
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 80px;
        padding-left: var(--space-x);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .header__nav.is-active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .nav__list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
        max-width: 300px;
    }
    .nav__link {
        display: block;
        padding: var(--space-y) var(--space-x);
        background-color: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 0.9rem;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-bottom: 1.5rem;
    color: #777;
  }
  .footer-legal-links a {
    color: #777;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    font-style: normal;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  .contact-line {
    display: block;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-bottom: 1rem;
  }
  .footer-social a {
    margin-right: 1rem;
    color: #555;
    text-decoration: none;
  }
  .footer-social a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 500px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
      padding: 1.5rem;
    }
    .footer-nav ul {
      gap: 0.75rem;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

* {
        box-sizing: border-box;
    }

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

    .intro-tableau-l14__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 1rem;
        align-items: start;
    }

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

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

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

    .intro-tableau-l14__stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .75rem;
    }

    .intro-tableau-l14__stats div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .intro-tableau-l14__stats strong {
        display: block;
        color: var(--brand);
        font-size: 1.35rem;
    }

    .intro-tableau-l14__stats span {
        display: block;
        margin-top: .25rem;
        color: var(--neutral-600);
    }

    @media (max-width: 860px) {
        .intro-tableau-l14__wrap {
            grid-template-columns: 1fr;
        }
    }

.cta-struct-v3 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

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

    .cta-struct-v3 h2, .cta-struct-v3 h3, .cta-struct-v3 p {
        margin: 0
    }

    .cta-struct-v3 a {
        text-decoration: none
    }

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

    .cta-struct-v3 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

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

    .cta-struct-v3 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

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

    .cta-struct-v3 .banner {
        display: grid;
        gap: .6rem
    }

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

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

    .cta-struct-v3 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .cta-struct-v3 .duo article {
        display: grid;
        gap: .45rem
    }

    .cta-struct-v3 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .cta-struct-v3 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

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

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

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

        .cta-struct-v3 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .cta-struct-v3 .numbers {
            grid-template-columns:1fr
        }
    }

.education-struct-v1 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface)
    }

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

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

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

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

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

    .education-struct-v1 .grid a, .education-struct-v1 .tiers a, .education-struct-v1 .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-v1 .path {
        display: grid;
        gap: .65rem
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .visual-path-c3__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .visual-path-c3__head {
        margin-bottom: 1rem;
    }

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

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

    .visual-path-c3__list {
        display: grid;
        gap: .8rem;
    }

    .visual-path-c3__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .visual-path-c3__meta {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        margin-bottom: .8rem;
    }

    .visual-path-c3__meta span {
        color: rgba(255, 255, 255, .78);
    }

    .visual-path-c3__content {
        display: grid;
        grid-template-columns: 13rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .visual-path-c3__content img {
        display: block;
        width: 100%;
        height: 10rem;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .visual-path-c3__content small {
        color: rgba(255, 255, 255, .76);
    }

    .visual-path-c3__content h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-path-c3__content p {
        margin: 0;
        color: rgba(255, 255, 255, .84);
    }

    @media (max-width: 680px) {
        .visual-path-c3__content {
            grid-template-columns: 1fr;
        }
    }

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

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

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

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav__list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav__link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.btn-search {
    background: none;
    border: none;
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
    color: var(--brand);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}
.burger__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: 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[aria-expanded="true"] .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger__line:nth-child(2) {
    opacity: 0;
}
.burger[aria-expanded="true"] .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(4px);
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 80px;
        padding-left: var(--space-x);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .header__nav.is-active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .nav__list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
        max-width: 300px;
    }
    .nav__link {
        display: block;
        padding: var(--space-y) var(--space-x);
        background-color: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 0.9rem;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-bottom: 1.5rem;
    color: #777;
  }
  .footer-legal-links a {
    color: #777;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    font-style: normal;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  .contact-line {
    display: block;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-bottom: 1rem;
  }
  .footer-social a {
    margin-right: 1rem;
    color: #555;
    text-decoration: none;
  }
  .footer-social a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 500px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
      padding: 1.5rem;
    }
    .footer-nav ul {
      gap: 0.75rem;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.identity-cv3 {
        padding: clamp(54px, 8vw, 98px) clamp(16px, 4vw, 40px);
        background: var(--accent);
        color: var(--accent-contrast);
    }

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

    .identity-cv3__head {
        margin-bottom: 16px;
    }

    .identity-cv3__head span {
        display: inline-block;
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.3);
    }

    .identity-cv3__head h2 {
        margin: 8px 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .identity-cv3__head p {
        margin: 0;
        max-width: 72ch;
        opacity: .9;
    }

    .identity-cv3__list {
        display: grid;
        gap: 12px;
    }

    .identity-cv3__list article {
        display: grid;
        grid-template-columns: 90px 1fr;
        gap: 12px;
        background: rgba(255, 255, 255, 0.35);
        border-radius: var(--radius-lg);
        padding: 12px;
        color: var(--fg-on-page);
    }

    .identity-cv3__meta {
        display: grid;
        gap: 8px;
        justify-items: center;
    }

    .identity-cv3__meta b {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .identity-cv3__meta i {
        font-style: normal;
        font-size: 1.5rem;
    }

    .identity-cv3__list h3 {
        margin: 0;
    }

    .identity-cv3__list p {
        margin: 7px 0;
        color: var(--neutral-800);
    }

    .identity-cv3__list em {
        font-style: normal;
        font-weight: 700;
        color: var(--link);
    }

    @media (max-width: 640px) {
        .identity-cv3__list article {
            grid-template-columns: 1fr;
        }
    }

.partners {
        color: var(--fg-on-page);
        background: var(--surface-light);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .partners .partners__header {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 72px);
    }

    .partners .partners__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .partners .partners__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

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

    .partners .partners__item {
        text-align: center;
        background: var(--bg-page);
        border-radius: var(--radius-lg);
    }

    .partners .partners__logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: clamp(20px, 3vw, 28px);
        height: 300px;
    }

    .partners .partners__text {
        padding: var(--space-y)
    }

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

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

.about-mission {

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

    .about-mission .about-mission__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-mission .about-mission__row {
        display: grid;
        gap: 24px;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .about-mission figure img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .about-mission p {
        color: rgba(255, 255, 255, .9);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__row {
            grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
        }
    }

.story-scene-l8 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .story-scene-l8__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .story-scene-l8__panel {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-scene-l8__top {
        display: grid;
        grid-template-columns: 14rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .story-scene-l8__top img {
        display: block;
        width: 100%;
        border-radius: var(--radius-lg);
    }

    .story-scene-l8__top p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .story-scene-l8__top h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-scene-l8__copy {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .story-scene-l8__panel a {
        display: inline-flex;
        margin-top: 1rem;
        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;
    }

    @media (max-width: 700px) {
        .story-scene-l8__top {
            grid-template-columns: 1fr;
        }
    }

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

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

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

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav__list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav__link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.btn-search {
    background: none;
    border: none;
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
    color: var(--brand);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}
.burger__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: 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[aria-expanded="true"] .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger__line:nth-child(2) {
    opacity: 0;
}
.burger[aria-expanded="true"] .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(4px);
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 80px;
        padding-left: var(--space-x);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .header__nav.is-active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .nav__list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
        max-width: 300px;
    }
    .nav__link {
        display: block;
        padding: var(--space-y) var(--space-x);
        background-color: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 0.9rem;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-bottom: 1.5rem;
    color: #777;
  }
  .footer-legal-links a {
    color: #777;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    font-style: normal;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  .contact-line {
    display: block;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-bottom: 1rem;
  }
  .footer-social a {
    margin-right: 1rem;
    color: #555;
    text-decoration: none;
  }
  .footer-social a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 500px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
      padding: 1.5rem;
    }
    .footer-nav ul {
      gap: 0.75rem;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

        transform: translateY(28px);
    }

    .index-feedback-light__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
    }

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

    .index-feedback-light__avatar {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex: 0 0 auto;
    }

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

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

    .index-feedback-light__rating {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        border-radius: 999px;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        flex: 0 0 auto;
    }

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

    .index-feedback-light__score {
        font-size: 12px;
        font-weight: 800;
        color: var(--fg-on-page);
    }

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

    .index-feedback-light__badge {
        display: inline-flex;
        margin-top: 12px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

.hiw-zigzag-c3 {
        padding: clamp(3.6rem, 8vw, 6.1rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .hiw-zigzag-c3__head {
        max-width: 42rem;
        margin: 0 auto 1.25rem;
        text-align: center;
    }

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

    .hiw-zigzag-c3__head p {
        margin: .55rem 0 0;

    }

    .hiw-zigzag-c3__grid {
        display: grid;
        gap: var(--gap);
    }

    .hiw-zigzag-c3__grid article {
        width: min(40rem, 60%);
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .2);
        backdrop-filter: blur(8px);
    }

    .hiw-zigzag-c3__grid article:nth-child(odd) {
        margin-right: auto;
    }

    .hiw-zigzag-c3__grid article:nth-child(even) {
        margin-left: auto;
    }

    .hiw-zigzag-c3__num {
        display: inline-flex;
        min-width: 2.6rem;
        height: 2.6rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .hiw-zigzag-c3__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .hiw-zigzag-c3__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .9);
    }

.nfsocial-v12 {
        padding: clamp(20px, 3vw, 44px);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .nfsocial-v12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: 12px;
    }

    .nfsocial-v12 h2 {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
    }

    .nfsocial-v12 p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .nfsocial-v12__badges span {
        display: inline-flex;
        align-items: center;
        padding: 7px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, .06);
        font-weight: 700;
    }

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

    .nfsocial-v12__logos article {
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        min-height: 96px;
        display: grid;
        place-items: center;
        gap: 6px;
        padding: 10px;
    }

    .nfsocial-v12__logos img {
        max-width: 80%;
        max-height: 42px;
    }

    .nfsocial-v12__logos strong {
        font-size: .9rem;
        color: var(--neutral-700, var(--neutral-600));
    }

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

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

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

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

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav__list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav__link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.btn-search {
    background: none;
    border: none;
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
    color: var(--brand);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}
.burger__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: 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[aria-expanded="true"] .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger__line:nth-child(2) {
    opacity: 0;
}
.burger[aria-expanded="true"] .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(4px);
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 80px;
        padding-left: var(--space-x);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .header__nav.is-active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .nav__list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
        max-width: 300px;
    }
    .nav__link {
        display: block;
        padding: var(--space-y) var(--space-x);
        background-color: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 0.9rem;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-bottom: 1.5rem;
    color: #777;
  }
  .footer-legal-links a {
    color: #777;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    font-style: normal;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  .contact-line {
    display: block;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-bottom: 1rem;
  }
  .footer-social a {
    margin-right: 1rem;
    color: #555;
    text-decoration: none;
  }
  .footer-social a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 500px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
      padding: 1.5rem;
    }
    .footer-nav ul {
      gap: 0.75rem;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.map-notes-l6 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .map-notes-l6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .map-notes-l6__head {
        text-align: center;
        margin-bottom: 1rem;
    }

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

    .map-notes-l6__head p {
        margin: .55rem 0 0;
        color: var(--neutral-600);
    }

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

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

    .map-notes-l6__grid {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .map-notes-l6__grid article {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-notes-l6__grid p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

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

    .form-layout-e .wrap {
        max-width: 820px;
        margin: 0 auto;
        background: white;
        color: black;
        border-radius: var(--radius-xl);
        padding: var(--space-x);
        box-shadow: var(--shadow-md);
    }

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

    .form-layout-e h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--neutral-900);
    }

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

    .form-layout-e .dark-card {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
    }

    .form-layout-e label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
        color: var(--neutral-800);
        font-weight: 600;
    }

    .form-layout-e input:not([type="checkbox"]), .form-layout-e textarea {
        width: 100%;
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-sm);
        background: var(--neutral-0);
        color: var(--neutral-900);
        padding: 9px;
        font: inherit;
    }

    .form-layout-e input::placeholder,
    .form-layout-e textarea::placeholder {
        color: var(--input-placeholder, var(--neutral-600));
    }

    .form-layout-e .end {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 8px;
    }

    .form-layout-e .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        font-weight: normal;
        color: var(--neutral-600);
    }

    .form-layout-e button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        font-weight: bold;
        cursor: pointer;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .form-layout-e button:hover {
        opacity: 0.9;
    }

.clarifications-l1 {

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

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

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

    .clarifications-l1__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--fg-on-page);
    }

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

    .clarifications-l1__grid {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .clarifications-l1__note {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        overflow: hidden;
        animation: l1Float 6s var(--anim-ease) infinite;
    }

    .clarifications-l1__note:nth-child(2n) {
        animation-duration: 7.2s
    }

    .clarifications-l1__note:nth-child(3n) {
        animation-duration: 8.2s
    }

    @keyframes l1Float {
        0%, 100% {
            transform: translateY(0px)
        }
        50% {
            transform: translateY(-6px)
        }
    }

    .clarifications-l1__note::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(240px 120px at 20% 10%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(220px 140px at 85% 30%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
    }

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

    .clarifications-l1__badge {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 800;
        font-size: 0.9rem;
    }

    .clarifications-l1__spark {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0);
        animation: l1Pulse 2.4s ease-in-out infinite;
    }

    @keyframes l1Pulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0)
        }
        50% {
            transform: scale(1.15);
            box-shadow: 0 0 0 10px rgba(0, 86, 179, 0.12)
        }
    }

    .clarifications-l1__q {
        margin: 0 0 8px;
        position: relative;
        z-index: 1;
        font-size: 1.05rem;
        letter-spacing: -.01em;
    }

    .clarifications-l1__a {
        margin: 0;
        position: relative;
        z-index: 1;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .clarifications-l1__note:hover {
        transform: translateY(-10px) rotate(-0.2deg);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 980px) {
        .clarifications-l1__note {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .clarifications-l1__note {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-l1__note, .clarifications-l1__spark {
            animation: none;
        }
    }

.contacts-fresh-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .contacts-fresh-v5 .shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v5 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    }

    .contacts-fresh-v5 .head p {
        margin: .35rem 0 0;
        opacity: .85;
    }

    .contacts-fresh-v5 .stack {
        display: grid;
        gap: .7rem;
    }

    .contacts-fresh-v5 details {
        background: var(--chip-bg);
        border-radius: var(--radius-md);
        padding: .8rem 1rem;
    }

    .contacts-fresh-v5 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .contacts-fresh-v5 .inside {
        display: grid;
        gap: .4rem;
        padding-top: .6rem;
    }

    .contacts-fresh-v5 .inside p {
        margin: 0;
    }

    .contacts-fresh-v5 a {
        color: var(--accent);
        font-weight: 700;
        text-decoration: none;
    }

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

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

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

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav__list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav__link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.btn-search {
    background: none;
    border: none;
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
    color: var(--brand);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}
.burger__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: 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[aria-expanded="true"] .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger__line:nth-child(2) {
    opacity: 0;
}
.burger[aria-expanded="true"] .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(4px);
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 80px;
        padding-left: var(--space-x);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .header__nav.is-active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .nav__list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
        max-width: 300px;
    }
    .nav__link {
        display: block;
        padding: var(--space-y) var(--space-x);
        background-color: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 0.9rem;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-bottom: 1.5rem;
    color: #777;
  }
  .footer-legal-links a {
    color: #777;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    font-style: normal;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  .contact-line {
    display: block;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-bottom: 1rem;
  }
  .footer-social a {
    margin-right: 1rem;
    color: #555;
    text-decoration: none;
  }
  .footer-social a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 500px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
      padding: 1.5rem;
    }
    .footer-nav ul {
      gap: 0.75rem;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

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

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

    .terms-layout-f .list {
        display: grid;
        gap: 14px;
    }

    .terms-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        padding: var(--space-y) var(--space-x);
    }

    .terms-layout-f h3 {
        margin: 0 0 8px;
        color: var(--brand);
    }

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

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

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

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

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

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav__list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav__link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.btn-search {
    background: none;
    border: none;
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
    color: var(--brand);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}
.burger__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: 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[aria-expanded="true"] .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger__line:nth-child(2) {
    opacity: 0;
}
.burger[aria-expanded="true"] .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(4px);
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 80px;
        padding-left: var(--space-x);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .header__nav.is-active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .nav__list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
        max-width: 300px;
    }
    .nav__link {
        display: block;
        padding: var(--space-y) var(--space-x);
        background-color: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 0.9rem;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-bottom: 1.5rem;
    color: #777;
  }
  .footer-legal-links a {
    color: #777;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    font-style: normal;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  .contact-line {
    display: block;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-bottom: 1rem;
  }
  .footer-social a {
    margin-right: 1rem;
    color: #555;
    text-decoration: none;
  }
  .footer-social a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 500px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
      padding: 1.5rem;
    }
    .footer-nav ul {
      gap: 0.75rem;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.nfthank-v9 {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .nfthank-v9__panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, .24);
        border-radius: var(--radius-lg);
        padding: clamp(30px, 4vw, 44px);
        background: rgba(255, 255, 255, .06);
    }

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

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

    .nfthank-v9 a {
        display: inline-block;
        margin-top: 17px;
        color: var(--accent-contrast);
        text-decoration: none;
        border-bottom: 2px solid var(--accent-contrast);
        padding-bottom: 2px;
    }

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

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

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

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav__list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav__link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.btn-search {
    background: none;
    border: none;
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
    color: var(--brand);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}
.burger__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: 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[aria-expanded="true"] .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger__line:nth-child(2) {
    opacity: 0;
}
.burger[aria-expanded="true"] .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(4px);
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 80px;
        padding-left: var(--space-x);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .header__nav.is-active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .nav__list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
        max-width: 300px;
    }
    .nav__link {
        display: block;
        padding: var(--space-y) var(--space-x);
        background-color: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 0.9rem;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-bottom: 1.5rem;
    color: #777;
  }
  .footer-legal-links a {
    color: #777;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    font-style: normal;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  .contact-line {
    display: block;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-bottom: 1rem;
  }
  .footer-social a {
    margin-right: 1rem;
    color: #555;
    text-decoration: none;
  }
  .footer-social a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 500px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
      padding: 1.5rem;
    }
    .footer-nav ul {
      gap: 0.75rem;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.nf404-v12 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .nf404-v12__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-top: 6px solid var(--accent);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        border-right: 1px solid var(--border-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: clamp(28px, 4vw, 46px);
    }

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

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

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