:root {
  --font-family: "DM Sans", sans-serif;
  --font-size-base: 15.5px;
  --line-height-base: 2;

  --max-w: 1040px;
  --space-x: 1.88rem;
  --space-y: 1.5rem;
  --gap: 1.03rem;

  --radius-xl: 1.37rem;
  --radius-lg: 1rem;
  --radius-md: 0.7rem;
  --radius-sm: 0.32rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 3px 18px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);

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

  --brand: #0056B3;
  --brand-contrast: #FFFFFF;
  --accent: #FF6B35;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D9E6;
  --neutral-600: #6B7B95;
  --neutral-800: #2C3A4B;
  --neutral-900: #1A2430;

  --bg-page: #FFFFFF;
  --fg-on-page: #1A2430;

  --bg-alt: #F5F7FA;
  --fg-on-alt: #2C3A4B;

  --surface-1: #FFFFFF;
  --surface-2: #F5F7FA;
  --fg-on-surface: #1A2430;
  --border-on-surface: #D1D9E6;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #2C3A4B;
  --border-on-surface-light: #E8EDF5;

  --bg-primary: #0056B3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004A99;
  --ring: #0056B3;

  --bg-accent: #FF6B35;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #E05A2A;

  --link: #0056B3;
  --link-hover: #004A99;

  --gradient-hero: linear-gradient(135deg, #0056B3 0%, #0081E8 100%);
  --gradient-accent: linear-gradient(90deg, #FF6B35 0%, #FF8E53 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);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-page);
  border-radius: var(--radius-lg);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1;
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav-link {
  color: var(--fg-on-page);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.btn-cta {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) / 1.5) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-cta:hover {
  background-color: var(--bg-primary-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background-color: var(--bg-page);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: var(--gap);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    width: 100%;
  }
  .btn-cta {
    width: 100%;
    text-align: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
        padding: 2.5rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        color: #495057;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-brand {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #212529;
        margin-bottom: 0.25rem;
    }
    .footer-tagline {
        color: #6c757d;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-bottom: 1rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
    }
    .separator {
        color: #dee2e6;
        margin: 0 0.5rem;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
        text-align: left;
    }
    .footer-contact address {
        font-style: normal;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }
    .footer-contact address strong {
        color: #212529;
        display: block;
        margin-bottom: 0.5rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-disclaimer {
        color: #6c757d;
        font-size: 0.8rem;
        border-top: 1px solid #e9ecef;
        padding-top: 1rem;
        margin-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-contact {
            text-align: left;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.wp-lang-switcher-v11 {
        position: fixed;
        right: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: 8px;
        min-width: 120px;
    }

    .wp-lang-switcher-v11__head {
        width: 100%;
        border: 0;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        padding: 8px 10px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
        font-weight: 700;
    }

    .wp-lang-switcher-v11__head-text {
        opacity: 0.75;
    }

    .wp-lang-switcher-v11__head-value {
        border-radius: 999px;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        padding: 3px 8px;
        min-width: 36px;
        text-align: center;
    }

    .wp-lang-switcher-v11__items {
        margin-top: 8px;
        display: grid;
        gap: 6px;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v11__items.open {
        opacity: 1;
        pointer-events: auto;
    }

    .wp-lang-switcher-v11__items button,
    .wp-lang-switcher-v11__items a {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 7px 10px;
        font-size: 12px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .wp-lang-switcher-v11__items button:hover,
    .wp-lang-switcher-v11__items a:hover {
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }

.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-pins-l4 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .next-pins-l4__head {
        margin-bottom: 1.1rem;
    }

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

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

    .next-pins-l4__head span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
        max-width: 38rem;
    }

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

    .next-pins-l4__pins article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .next-pins-l4__pins h3 {
        margin: .75rem 0 .35rem;
    }

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

    .next-pins-l4__button {
        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;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.why-choose-light-alt {

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

    .why-choose-light-alt .why-choose-light-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .why-choose-light-alt .why-choose-light-alt__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

    }

    .why-choose-light-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-alt);
        position: relative;
        display: inline-block;
    }

    .why-choose-light-alt h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
        0%, 100% {
            opacity: 1;
            transform: scaleX(1);
        }
        50% {
            opacity: 0.4;
            transform: scaleX(0.8);
        }
    }

    .why-choose-light-alt .why-choose-light-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

    .why-choose-light-alt .why-choose-light-alt__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2vw, 24px);
    }

    .why-choose-light-alt .why-choose-light-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        align-items: flex-start;

        position: relative;
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,
        var(--bg-primary) 0%,
        var(--accent) 50%,
        var(--bg-primary) 100%);
        background-size: 200% 100%;
        animation: wave 3s linear infinite;

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

    @keyframes wave {
        0% {
            background-position: 0% 0%;
        }
        100% {
            background-position: 200% 0%;
        }
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover .why-choose-light-alt__wave {
        opacity: 1;
    }

    .why-choose-light-alt .why-choose-light-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        animation: sparkle 4s ease-in-out infinite;
    }

    @keyframes sparkle {
        0%, 100% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        10% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
        20%, 80% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        90% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
    }

    .why-choose-light-alt .why-choose-light-alt__content {
        flex: 1;
    }

    .why-choose-light-alt .why-choose-light-alt__item h3 {
        font-size: clamp(18px, 2.2vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
        position: relative;
    }

    .why-choose-light-alt .why-choose-light-alt__item h3::before {
        content: '';
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        transition: height var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover h3::before {
        height: 100%;
    }

    .why-choose-light-alt .why-choose-light-alt__item p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.header {
  background-color: var(--surface-1);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-page);
  border-radius: var(--radius-lg);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1;
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav-link {
  color: var(--fg-on-page);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.btn-cta {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) / 1.5) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-cta:hover {
  background-color: var(--bg-primary-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background-color: var(--bg-page);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: var(--gap);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    width: 100%;
  }
  .btn-cta {
    width: 100%;
    text-align: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
        padding: 2.5rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        color: #495057;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-brand {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #212529;
        margin-bottom: 0.25rem;
    }
    .footer-tagline {
        color: #6c757d;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-bottom: 1rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
    }
    .separator {
        color: #dee2e6;
        margin: 0 0.5rem;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
        text-align: left;
    }
    .footer-contact address {
        font-style: normal;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }
    .footer-contact address strong {
        color: #212529;
        display: block;
        margin-bottom: 0.5rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-disclaimer {
        color: #6c757d;
        font-size: 0.8rem;
        border-top: 1px solid #e9ecef;
        padding-top: 1rem;
        margin-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-contact {
            text-align: left;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .testimonials-struct-v3 .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-v3 .grid, .testimonials-struct-v3 .rail, .testimonials-struct-v3 .slider {
            grid-template-columns:1fr 1fr
        }

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

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

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

.identity-nv8 {
        padding: clamp(52px, 7vw, 92px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

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

    .identity-nv8__media img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        display: block;
        background: var(--surface-2);
    }

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

    .identity-nv8__body h2 {
        margin: 7px 0;
        font-size: clamp(28px, 4vw, 42px);
        color: var(--neutral-900);
    }

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

    .identity-nv8__body span {
        display: block;
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

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

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

.about-timeline {

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

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

    .about-timeline .about-timeline__zig {
        display: grid;
        gap: 16px;
    }

    .about-timeline .about-timeline__zig .item {
        list-style: none;
        background: #fff;
        color: var(--fg-on-page);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-sm);
    }

.header {
  background-color: var(--surface-1);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-page);
  border-radius: var(--radius-lg);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1;
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav-link {
  color: var(--fg-on-page);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.btn-cta {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) / 1.5) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-cta:hover {
  background-color: var(--bg-primary-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background-color: var(--bg-page);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: var(--gap);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    width: 100%;
  }
  .btn-cta {
    width: 100%;
    text-align: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
        padding: 2.5rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        color: #495057;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-brand {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #212529;
        margin-bottom: 0.25rem;
    }
    .footer-tagline {
        color: #6c757d;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-bottom: 1rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
    }
    .separator {
        color: #dee2e6;
        margin: 0 0.5rem;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
        text-align: left;
    }
    .footer-contact address {
        font-style: normal;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }
    .footer-contact address strong {
        color: #212529;
        display: block;
        margin-bottom: 0.5rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-disclaimer {
        color: #6c757d;
        font-size: 0.8rem;
        border-top: 1px solid #e9ecef;
        padding-top: 1rem;
        margin-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-contact {
            text-align: left;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.values-ranks-l10 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .values-ranks-l10__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .values-ranks-l10__head {
        margin-bottom: 1.1rem;
        text-align: center;
    }

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

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

    .values-ranks-l10__head span {
        display: block;
        margin-top: .75rem;
        color: var(--neutral-600);
    }

    .values-ranks-l10__rows {
        display: grid;
        gap: .8rem;
    }

    .values-ranks-l10__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-ranks-l10__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: 999px;
        background: var(--surface-2);
        color: var(--brand);
    }

    .values-ranks-l10__rows h3 {
        margin: 0;
    }

    .values-ranks-l10__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

    .values-ranks-l10__rows small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.features-struct-v6 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.social-l2 {

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

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

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

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

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

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

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

    .social-l2__quote {
        display: none;
    }

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

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

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

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

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

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

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

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

.hiw-orbit-c7 {
        padding: clamp(3.6rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

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

    .hiw-orbit-c7__head {
        text-align: center;
        margin-bottom: 1.25rem;
    }

    .hiw-orbit-c7__head p {
        margin: 0;
        color: var(--neutral-100);
    }

    .hiw-orbit-c7__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--brand-contrast);
    }

    .hiw-orbit-c7__ring {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .hiw-orbit-c7__ring article {
        padding: 1rem;
        background: rgba(255, 255, 255, .52);
        border: 1px solid rgba(255, 255, 255, .2);
        text-align: center;
        border-radius: var(--radius-lg);
        color: var(--neutral-800);
    }

    .hiw-orbit-c7__ring span {
        display: inline-flex;
        min-width: 2.6rem;
        height: 2.6rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--chip-bg);
        color: var(--brand);
        font-weight: bold;
    }

    .hiw-orbit-c7__ring h3 {
        margin: .75rem 0 .35rem;
        color: var(--neutral-900);
    }

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

.header {
  background-color: var(--surface-1);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-page);
  border-radius: var(--radius-lg);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1;
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav-link {
  color: var(--fg-on-page);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.btn-cta {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) / 1.5) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-cta:hover {
  background-color: var(--bg-primary-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background-color: var(--bg-page);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: var(--gap);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    width: 100%;
  }
  .btn-cta {
    width: 100%;
    text-align: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
        padding: 2.5rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        color: #495057;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-brand {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #212529;
        margin-bottom: 0.25rem;
    }
    .footer-tagline {
        color: #6c757d;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-bottom: 1rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
    }
    .separator {
        color: #dee2e6;
        margin: 0 0.5rem;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
        text-align: left;
    }
    .footer-contact address {
        font-style: normal;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }
    .footer-contact address strong {
        color: #212529;
        display: block;
        margin-bottom: 0.5rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-disclaimer {
        color: #6c757d;
        font-size: 0.8rem;
        border-top: 1px solid #e9ecef;
        padding-top: 1rem;
        margin-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-contact {
            text-align: left;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.contact-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .contact-layout-a .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .contact-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        opacity: .92;
    }

    .contact-layout-a .panel {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        padding: 18px;
        backdrop-filter: blur(6px);
    }

    .contact-layout-a h3 {
        margin: 0 0 12px;
    }

    .contact-layout-a .list p {
        margin: 0 0 10px;
        display: grid;
        gap: 2px;
    }

    .contact-layout-a .list span {
        opacity: .94;
    }

    .contact-layout-a .social-row {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .contact-layout-a .social-row a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .4);
    }

    .contact-layout-a .social-row a:hover {
        background: rgba(255, 255, 255, .15);
    }

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

    .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;
        color: var(--neutral-800);
    }

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

    .form-layout-e button:hover {
        background: var(--bg-accent-hover);
    }

.header {
  background-color: var(--surface-1);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-page);
  border-radius: var(--radius-lg);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1;
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav-link {
  color: var(--fg-on-page);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.btn-cta {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) / 1.5) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-cta:hover {
  background-color: var(--bg-primary-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background-color: var(--bg-page);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: var(--gap);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    width: 100%;
  }
  .btn-cta {
    width: 100%;
    text-align: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
        padding: 2.5rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        color: #495057;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-brand {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #212529;
        margin-bottom: 0.25rem;
    }
    .footer-tagline {
        color: #6c757d;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-bottom: 1rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
    }
    .separator {
        color: #dee2e6;
        margin: 0 0.5rem;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
        text-align: left;
    }
    .footer-contact address {
        font-style: normal;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }
    .footer-contact address strong {
        color: #212529;
        display: block;
        margin-bottom: 0.5rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-disclaimer {
        color: #6c757d;
        font-size: 0.8rem;
        border-top: 1px solid #e9ecef;
        padding-top: 1rem;
        margin-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-contact {
            text-align: left;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

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

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

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

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

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

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

.header {
  background-color: var(--surface-1);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-page);
  border-radius: var(--radius-lg);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1;
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav-link {
  color: var(--fg-on-page);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.btn-cta {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) / 1.5) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-cta:hover {
  background-color: var(--bg-primary-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background-color: var(--bg-page);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: var(--gap);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    width: 100%;
  }
  .btn-cta {
    width: 100%;
    text-align: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
        padding: 2.5rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        color: #495057;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-brand {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #212529;
        margin-bottom: 0.25rem;
    }
    .footer-tagline {
        color: #6c757d;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-bottom: 1rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
    }
    .separator {
        color: #dee2e6;
        margin: 0 0.5rem;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
        text-align: left;
    }
    .footer-contact address {
        font-style: normal;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }
    .footer-contact address strong {
        color: #212529;
        display: block;
        margin-bottom: 0.5rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-disclaimer {
        color: #6c757d;
        font-size: 0.8rem;
        border-top: 1px solid #e9ecef;
        padding-top: 1rem;
        margin-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-contact {
            text-align: left;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

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

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

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

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

.header {
  background-color: var(--surface-1);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-page);
  border-radius: var(--radius-lg);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1;
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav-link {
  color: var(--fg-on-page);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.btn-cta {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) / 1.5) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-cta:hover {
  background-color: var(--bg-primary-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background-color: var(--bg-page);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: var(--gap);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    width: 100%;
  }
  .btn-cta {
    width: 100%;
    text-align: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
        padding: 2.5rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        color: #495057;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-brand {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #212529;
        margin-bottom: 0.25rem;
    }
    .footer-tagline {
        color: #6c757d;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-bottom: 1rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
    }
    .separator {
        color: #dee2e6;
        margin: 0 0.5rem;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
        text-align: left;
    }
    .footer-contact address {
        font-style: normal;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }
    .footer-contact address strong {
        color: #212529;
        display: block;
        margin-bottom: 0.5rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-disclaimer {
        color: #6c757d;
        font-size: 0.8rem;
        border-top: 1px solid #e9ecef;
        padding-top: 1rem;
        margin-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-contact {
            text-align: left;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.nfthank-v11 {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .nfthank-v11__box {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .2);
        background: rgba(255, 255, 255, .08);
    }

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

    .nfthank-v11 p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .nfthank-v11 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        background: var(--neutral-0);
        color: var(--neutral-900);
    }

.header {
  background-color: var(--surface-1);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-page);
  border-radius: var(--radius-lg);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1;
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav-link {
  color: var(--fg-on-page);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.btn-cta {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) / 1.5) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-cta:hover {
  background-color: var(--bg-primary-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background-color: var(--bg-page);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: var(--gap);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    width: 100%;
  }
  .btn-cta {
    width: 100%;
    text-align: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
        padding: 2.5rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        color: #495057;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-brand {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #212529;
        margin-bottom: 0.25rem;
    }
    .footer-tagline {
        color: #6c757d;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-bottom: 1rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
    }
    .separator {
        color: #dee2e6;
        margin: 0 0.5rem;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
        text-align: left;
    }
    .footer-contact address {
        font-style: normal;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }
    .footer-contact address strong {
        color: #212529;
        display: block;
        margin-bottom: 0.5rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-disclaimer {
        color: #6c757d;
        font-size: 0.8rem;
        border-top: 1px solid #e9ecef;
        padding-top: 1rem;
        margin-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-contact {
            text-align: left;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

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

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

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