:root {
  --font-family: "Inter", sans-serif;
  --font-size-base: 16.3px;
  --line-height-base: 1.37;

  --max-w: 1020px;
  --space-x: 1.03rem;
  --space-y: 1.5rem;
  --gap: 1.73rem;

  --radius-xl: 1.3rem;
  --radius-lg: 1rem;
  --radius-md: 0.53rem;
  --radius-sm: 0.34rem;

  --shadow-sm: 0 3px 4px rgba(0,0,0,0.22);
  --shadow-md: 0 12px 26px rgba(0,0,0,0.28);
  --shadow-lg: 0 32px 50px rgba(0,0,0,0.34);

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

  --brand: #8B5E3C;
  --brand-contrast: #FFFFFF;
  --accent: #D97706;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F3F4F6;
  --neutral-300: #D1D5DB;
  --neutral-600: #4B5563;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

  --bg-page: #F9FAFB;
  --fg-on-page: #1F2937;

  --bg-alt: #F3F4F6;
  --fg-on-alt: #374151;

  --surface-1: #FFFFFF;
  --surface-2: #F9FAFB;
  --fg-on-surface: #1F2937;
  --border-on-surface: #E5E7EB;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #E5E7EB;

  --bg-primary: #8B5E3C;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #6D4C2E;
  --ring: #8B5E3C;

  --bg-accent: #FEF3C7;
  --fg-on-accent: #1F2937;
  --bg-accent-hover: #B45309;

  --link: #8B5E3C;
  --link-hover: #6D4C2E;

  --gradient-hero: linear-gradient(135deg, #1F2937 0%, #374151 100%);
  --gradient-accent: linear-gradient(135deg, #D97706 0%, #B45309 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: var(--neutral-0);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
    }
    .header-top {
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
    }
    .header-top .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    .header-contact {
        display: flex;
        align-items: center;
    }
    .cta-button {
        display: inline-block;
        padding: 0.5rem 1.25rem;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .cta-button:hover {
        background: var(--bg-accent-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.25rem;
        gap: 0.3rem;
    }
    .burger span {
        display: block;
        width: 1.5rem;
        height: 2px;
        background: var(--neutral-900);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: translateY(0.5rem) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-0.5rem) rotate(-45deg);
    }
    .header-bottom {
        padding: 0.5rem 0;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--neutral-800);
        font-weight: 500;
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
        background: var(--surface-light);
    }
    @media (max-width: 767px) {
        .header-contact {
            display: none;
        }
        .burger {
            display: flex;
        }
        .header-bottom {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--neutral-0);
            box-shadow: var(--shadow-md);
            padding: 0.5rem 0;
        }
        .header-bottom.open {
            display: block;
        }
        .nav-menu ul {
            flex-direction: column;
            gap: 0;
        }
        .nav-menu a {
            display: block;
            padding: 0.75rem var(--space-x);
            border-bottom: 1px solid var(--border-on-surface-light);
        }
        .nav-menu a:last-child {
            border-bottom: none;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 300px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 1rem;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    margin-bottom: 1rem;
  }
  .footer-contact address {
    font-style: normal;
    margin-bottom: 0.3rem;
  }
  .footer-contact a {
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 0.3rem;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f5a623;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-social a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #f5a623;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
  }
  .footer-bottom p {
    margin: 0.3rem 0;
    font-size: 0.85rem;
    color: #b0b0b0;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.nfintro-v11 {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--fg-on-primary);
        overflow: hidden;
        min-height: 460px;
    }

    .nfintro-v11__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    .nfintro-v11__overlay {
        position: absolute;
        inset: 0;
        background: var(--gradient-hero);
        opacity: .72;
        z-index: -1;
    }

    .nfintro-v11__content {
        max-width: 900px;
        padding: clamp(16px, 3vw, 32px);
        z-index: 1;
    }

    .nfintro-v11 h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
    }

    .nfintro-v11 p {
        font-size: clamp(16px, 2.5vw, 20px);
        margin: 0 auto calc(var(--space-y) * 1.5);
        max-width: 700px;
    }

    .nfintro-v11__actions {
        display: flex;
        gap: var(--gap);
        justify-content: center;
        flex-wrap: wrap;
    }

    .nfintro-v11__btn {
        display: inline-block;
        padding: 12px 26px;
        border-radius: var(--radius-md);
        text-align: center;
        text-decoration: none;
        border: 1px solid transparent;
        font-size: 1rem;
    }

    .nfintro-v11__btn--primary {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .nfintro-v11__btn--outline {
        background-color: transparent;
        color: var(--fg-on-primary);
        border-color: var(--fg-on-primary);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.recommendations-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .recommendations-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .recommendations-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .recommendations-u7 .sub{margin:.35rem 0 0;opacity:.9;} .recommendations-u7 article,.recommendations-u7 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .recommendations-u7 p{margin:0} .recommendations-u7 a{text-decoration:none;color:inherit;font-weight:700} .recommendations-u7 .cards{padding:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.55rem} .recommendations-u7 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .recommendations-u7 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.recommendations-u7 .split,.recommendations-u7 .media,.recommendations-u7 .grid,.recommendations-u7 .cards,.recommendations-u7 .bento,.recommendations-u7 .foot{grid-template-columns:1fr}}

.why-choose {

        padding: clamp(16px, 3vw, 44px);
    }

    .why-choose--light.why-choose--v2 {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
    }

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

    .why-choose__wrap {
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.6vw, 26px);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-md);
    }

    .why-choose__h {
        margin-bottom: clamp(14px, 2vw, 22px);
    }

    .why-choose__pill {
        display: inline-flex;
        padding: 7px 12px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        line-height: 1.1;
        color: var(--bg-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: var(--neutral-600);
        max-width: 70ch;
    }

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

    .why-choose__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transform: perspective(900px) rotateX(0) rotateY(0) translateY(0);
        transition: transform 180ms var(--anim-ease),
        box-shadow 180ms var(--anim-ease),
        border-color 180ms var(--anim-ease);
        will-change: transform;
        position: relative;
    }

    .why-choose__cardHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background: rgba(0, 0, 0, 0.03);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .why-choose__num {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .why-choose__mini {
        color: var(--neutral-600);
        font-size: 0.9rem;
    }

    .why-choose__cardBody {
        padding: 14px 16px;
    }

    .why-choose__cardTitle {
        margin: 0 0 8px;
        color: var(--bg-primary);
        font-size: clamp(18px, 2.2vw, 20px);
    }

    .why-choose__cardText {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (max-width: 860px) {
        .why-choose__card {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .why-choose__card {
            transition: none;
            transform: none;
        }
    }

header {
        background: var(--neutral-0);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
    }
    .header-top {
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
    }
    .header-top .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    .header-contact {
        display: flex;
        align-items: center;
    }
    .cta-button {
        display: inline-block;
        padding: 0.5rem 1.25rem;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .cta-button:hover {
        background: var(--bg-accent-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.25rem;
        gap: 0.3rem;
    }
    .burger span {
        display: block;
        width: 1.5rem;
        height: 2px;
        background: var(--neutral-900);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: translateY(0.5rem) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-0.5rem) rotate(-45deg);
    }
    .header-bottom {
        padding: 0.5rem 0;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--neutral-800);
        font-weight: 500;
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
        background: var(--surface-light);
    }
    @media (max-width: 767px) {
        .header-contact {
            display: none;
        }
        .burger {
            display: flex;
        }
        .header-bottom {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--neutral-0);
            box-shadow: var(--shadow-md);
            padding: 0.5rem 0;
        }
        .header-bottom.open {
            display: block;
        }
        .nav-menu ul {
            flex-direction: column;
            gap: 0;
        }
        .nav-menu a {
            display: block;
            padding: 0.75rem var(--space-x);
            border-bottom: 1px solid var(--border-on-surface-light);
        }
        .nav-menu a:last-child {
            border-bottom: none;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 300px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 1rem;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    margin-bottom: 1rem;
  }
  .footer-contact address {
    font-style: normal;
    margin-bottom: 0.3rem;
  }
  .footer-contact a {
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 0.3rem;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f5a623;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-social a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #f5a623;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
  }
  .footer-bottom p {
    margin: 0.3rem 0;
    font-size: 0.85rem;
    color: #b0b0b0;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.gallery--colored-v11 {
        padding: 60px 20px;
        background: linear-gradient(180deg, var(--brand) 0%, var(--neutral-900) 100%);
        color: #ffffff;
    }

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

    .gallery-v11__intro {
        margin-bottom: 22px;
    }

    .gallery-v11__intro h2 {
        margin: 0 0 8px;
        font-size: clamp(24px, 4.2vw, 34px);
        color: #ffffff;
    }

    .gallery-v11__intro p {
        margin: 0;
        color: var(--neutral-300);
    }

    .gallery-v11__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }

    .gallery-v11__frame {
        margin: 0;
        border-radius: var(--radius-lg);
        overflow: hidden;
        background: rgba(15, 23, 42, 0.36);
        border: 1px solid rgba(255, 255, 255, 0.24);
    }

    .gallery-v11__frame img {
        display: block;
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .gallery-v11__frame figcaption {
        padding: 10px 12px;
        color: var(--neutral-100);
        font-size: 0.9rem;
    }

    @media (max-width: 640px) {
        .gallery--colored-v11 {
            padding: 46px 14px;
        }

        .gallery-v11__grid {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

header {
        background: var(--neutral-0);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
    }
    .header-top {
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
    }
    .header-top .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    .header-contact {
        display: flex;
        align-items: center;
    }
    .cta-button {
        display: inline-block;
        padding: 0.5rem 1.25rem;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .cta-button:hover {
        background: var(--bg-accent-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.25rem;
        gap: 0.3rem;
    }
    .burger span {
        display: block;
        width: 1.5rem;
        height: 2px;
        background: var(--neutral-900);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: translateY(0.5rem) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-0.5rem) rotate(-45deg);
    }
    .header-bottom {
        padding: 0.5rem 0;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--neutral-800);
        font-weight: 500;
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
        background: var(--surface-light);
    }
    @media (max-width: 767px) {
        .header-contact {
            display: none;
        }
        .burger {
            display: flex;
        }
        .header-bottom {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--neutral-0);
            box-shadow: var(--shadow-md);
            padding: 0.5rem 0;
        }
        .header-bottom.open {
            display: block;
        }
        .nav-menu ul {
            flex-direction: column;
            gap: 0;
        }
        .nav-menu a {
            display: block;
            padding: 0.75rem var(--space-x);
            border-bottom: 1px solid var(--border-on-surface-light);
        }
        .nav-menu a:last-child {
            border-bottom: none;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 300px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 1rem;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    margin-bottom: 1rem;
  }
  .footer-contact address {
    font-style: normal;
    margin-bottom: 0.3rem;
  }
  .footer-contact a {
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 0.3rem;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f5a623;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-social a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #f5a623;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
  }
  .footer-bottom p {
    margin: 0.3rem 0;
    font-size: 0.85rem;
    color: #b0b0b0;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cap-prism-v5{padding:calc(var(--space-y)*3) var(--space-x);background:var(--neutral-800);color:var(--neutral-0)}
.cap-prism-v5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)}
.cap-prism-v5 .banner{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:var(--gap);padding:1rem;border-radius:var(--radius-lg);background:var(--gradient-hero)}
.cap-prism-v5 h2{margin:0;font-size:clamp(1.7rem,3.3vw,2.5rem)}
.cap-prism-v5 .banner a{padding:.56rem .82rem;border-radius:var(--radius-sm);text-decoration:none;background:var(--surface-1);color:var(--fg-on-surface);font-weight:700}
.cap-prism-v5 .cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--gap);padding:0;margin:0;list-style:none}
.cap-prism-v5 li{padding:1rem;border-radius:var(--radius-md);background:var(--chip-bg)}
.cap-prism-v5 h3{margin:0 0 .45rem}
.cap-prism-v5 p{margin:0;opacity:.9}
.cap-prism-v5 small{display:block;margin-top:.5rem;font-weight:700}
@media (max-width:980px){.cap-prism-v5 .cards{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (max-width:640px){.cap-prism-v5 .cards{grid-template-columns:1fr}}

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

    .hiw-column-l5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1.25rem;
    }

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

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

    .hiw-column-l5__copy {
        margin: .85rem 0 0;
        color: var(--neutral-600);
    }

    .hiw-column-l5__side {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-sm);
    }

    .hiw-column-l5__side img {
        display: block;
        width: 100%;
        border-radius: var(--radius-lg);
    }

    .hiw-column-l5__side strong {
        display: block;
        margin-top: .9rem;
        color: var(--brand);
    }

    .hiw-column-l5__item {
        margin-top: .65rem;
        padding: .75rem .85rem;
        border-radius: var(--radius-md);
        background: var(--neutral-100);
    }

    @media (max-width: 840px) {
        .hiw-column-l5__wrap {
            grid-template-columns: 1fr;
        }
    }

header {
        background: var(--neutral-0);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
    }
    .header-top {
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
    }
    .header-top .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    .header-contact {
        display: flex;
        align-items: center;
    }
    .cta-button {
        display: inline-block;
        padding: 0.5rem 1.25rem;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .cta-button:hover {
        background: var(--bg-accent-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.25rem;
        gap: 0.3rem;
    }
    .burger span {
        display: block;
        width: 1.5rem;
        height: 2px;
        background: var(--neutral-900);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: translateY(0.5rem) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-0.5rem) rotate(-45deg);
    }
    .header-bottom {
        padding: 0.5rem 0;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--neutral-800);
        font-weight: 500;
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
        background: var(--surface-light);
    }
    @media (max-width: 767px) {
        .header-contact {
            display: none;
        }
        .burger {
            display: flex;
        }
        .header-bottom {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--neutral-0);
            box-shadow: var(--shadow-md);
            padding: 0.5rem 0;
        }
        .header-bottom.open {
            display: block;
        }
        .nav-menu ul {
            flex-direction: column;
            gap: 0;
        }
        .nav-menu a {
            display: block;
            padding: 0.75rem var(--space-x);
            border-bottom: 1px solid var(--border-on-surface-light);
        }
        .nav-menu a:last-child {
            border-bottom: none;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 300px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 1rem;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    margin-bottom: 1rem;
  }
  .footer-contact address {
    font-style: normal;
    margin-bottom: 0.3rem;
  }
  .footer-contact a {
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 0.3rem;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f5a623;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-social a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #f5a623;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
  }
  .footer-bottom p {
    margin: 0.3rem 0;
    font-size: 0.85rem;
    color: #b0b0b0;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

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

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

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

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

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

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

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.form-u3{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .form-u3 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .form-u3 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .form-u3 .sub{margin:.35rem 0 0;opacity:.9;} .form-u3 .panel,.form-u3 .box{padding:1.1rem;border-radius:var(--radius-xl);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);box-shadow:var(--shadow-md)} .form-u3 form{display:grid;gap:.75rem} .form-u3 .field{display:grid;gap:.28rem} .form-u3 .field span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)} .form-u3 input,.form-u3 textarea{width:100%;padding:.8rem .85rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface-light);background:var(--surface-1);color:var(--fg-on-surface);font:inherit;outline:none;transition:border-color var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .form-u3 input:focus,.form-u3 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 22%, transparent)} .form-u3 textarea{min-height:120px;resize:vertical} .form-u3 button{padding:.82rem 1rem;border:0;border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer;transition:transform var(--anim-duration) var(--anim-ease),background var(--anim-duration) var(--anim-ease)} .form-u3 button:hover{transform:translateY(-1px);background:var(--bg-primary-hover)} .form-u3 .split{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)} .form-u3 .grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem} .form-u3 .line{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u3 .bar{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u3 .stack{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u3 .steps{display:flex;gap:.45rem;flex-wrap:wrap} .form-u3 .steps span{padding:.33rem .55rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);font-size:.8rem} .form-u3 .agree{display:flex;align-items:center;gap:.45rem;font-size:.86rem} .form-u3 .media{display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)} .form-u3 .media img,.form-u3 .frame img{width:100%;height:100%;min-height:320px;object-fit:cover;border-radius:var(--radius-xl)} .form-u3 .frame{display:grid;grid-template-columns:1.1fr .9fr;gap:var(--gap)} .form-u3 .full{grid-column:1/-1} .form-u3 .panel{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .form-u3 .panel:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)} @media (max-width:860px){.form-u3 .split,.form-u3 .media,.form-u3 .frame{grid-template-columns:1fr} .form-u3 .grid,.form-u3 .bar{grid-template-columns:1fr}}

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.con-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.con-lx10 .con-shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:.68rem}
.con-lx10 h2{margin:0;font-size:clamp(1.8rem,3.4vw,2.55rem)}
.con-lx10>div>p,.con-lx10 .con-shell>p{margin:0;color:var(--fg-on-surface-light)}
.con-lx10 .con-band{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem}
.con-lx10 .con-pane{padding:.9rem 1rem;border-radius:var(--radius-lg);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.con-lx10 .con-band--alt .con-pane{background:color-mix(in srgb,var(--surface-1) 82%, var(--bg-accent) 18%)}
.con-lx10 h3{margin:0 0 .25rem;font-size:1rem}
.con-lx10 .con-pane p{margin:0}
.con-lx10 a{text-decoration:none;color:var(--link)}
.con-lx10 .con-links{list-style:none;margin:.1rem 0 0;padding:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.55rem}
.con-lx10 .con-links li a{display:block;padding:.62rem .75rem;border-radius:var(--radius-md);background:var(--surface-2);border:1px solid var(--border-on-surface)}
@media (max-width:760px){.con-lx10 .con-band,.con-lx10 .con-links{grid-template-columns:1fr}}

header {
        background: var(--neutral-0);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
    }
    .header-top {
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
    }
    .header-top .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    .header-contact {
        display: flex;
        align-items: center;
    }
    .cta-button {
        display: inline-block;
        padding: 0.5rem 1.25rem;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .cta-button:hover {
        background: var(--bg-accent-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.25rem;
        gap: 0.3rem;
    }
    .burger span {
        display: block;
        width: 1.5rem;
        height: 2px;
        background: var(--neutral-900);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: translateY(0.5rem) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-0.5rem) rotate(-45deg);
    }
    .header-bottom {
        padding: 0.5rem 0;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--neutral-800);
        font-weight: 500;
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
        background: var(--surface-light);
    }
    @media (max-width: 767px) {
        .header-contact {
            display: none;
        }
        .burger {
            display: flex;
        }
        .header-bottom {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--neutral-0);
            box-shadow: var(--shadow-md);
            padding: 0.5rem 0;
        }
        .header-bottom.open {
            display: block;
        }
        .nav-menu ul {
            flex-direction: column;
            gap: 0;
        }
        .nav-menu a {
            display: block;
            padding: 0.75rem var(--space-x);
            border-bottom: 1px solid var(--border-on-surface-light);
        }
        .nav-menu a:last-child {
            border-bottom: none;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 300px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 1rem;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    margin-bottom: 1rem;
  }
  .footer-contact address {
    font-style: normal;
    margin-bottom: 0.3rem;
  }
  .footer-contact a {
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 0.3rem;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f5a623;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-social a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #f5a623;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
  }
  .footer-bottom p {
    margin: 0.3rem 0;
    font-size: 0.85rem;
    color: #b0b0b0;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.policyitems-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .policyitems-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .policyitems-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .policyitems-u7 .sub{margin:.35rem 0 0;opacity:.9;} .policyitems-u7 article,.policyitems-u7 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .policyitems-u7 p{margin:0} .policyitems-u7 a{text-decoration:none;color:inherit;font-weight:700} .policyitems-u7 .bento{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.55rem} .policyitems-u7 .bento article:nth-child(1){grid-column:span 6} .policyitems-u7 .bento article:nth-child(2){grid-column:span 3} .policyitems-u7 .bento article:nth-child(3){grid-column:span 3} .policyitems-u7 .bento article:nth-child(4){grid-column:span 4} .policyitems-u7 .bento article:nth-child(5){grid-column:span 4} .policyitems-u7 .bento article:nth-child(6){grid-column:span 4} .policyitems-u7 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .policyitems-u7 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.policyitems-u7 .split,.policyitems-u7 .media,.policyitems-u7 .grid,.policyitems-u7 .cards,.policyitems-u7 .bento,.policyitems-u7 .foot{grid-template-columns:1fr}}

header {
        background: var(--neutral-0);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
    }
    .header-top {
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
    }
    .header-top .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    .header-contact {
        display: flex;
        align-items: center;
    }
    .cta-button {
        display: inline-block;
        padding: 0.5rem 1.25rem;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .cta-button:hover {
        background: var(--bg-accent-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.25rem;
        gap: 0.3rem;
    }
    .burger span {
        display: block;
        width: 1.5rem;
        height: 2px;
        background: var(--neutral-900);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: translateY(0.5rem) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-0.5rem) rotate(-45deg);
    }
    .header-bottom {
        padding: 0.5rem 0;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--neutral-800);
        font-weight: 500;
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
        background: var(--surface-light);
    }
    @media (max-width: 767px) {
        .header-contact {
            display: none;
        }
        .burger {
            display: flex;
        }
        .header-bottom {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--neutral-0);
            box-shadow: var(--shadow-md);
            padding: 0.5rem 0;
        }
        .header-bottom.open {
            display: block;
        }
        .nav-menu ul {
            flex-direction: column;
            gap: 0;
        }
        .nav-menu a {
            display: block;
            padding: 0.75rem var(--space-x);
            border-bottom: 1px solid var(--border-on-surface-light);
        }
        .nav-menu a:last-child {
            border-bottom: none;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 300px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 1rem;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    margin-bottom: 1rem;
  }
  .footer-contact address {
    font-style: normal;
    margin-bottom: 0.3rem;
  }
  .footer-contact a {
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 0.3rem;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f5a623;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-social a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #f5a623;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
  }
  .footer-bottom p {
    margin: 0.3rem 0;
    font-size: 0.85rem;
    color: #b0b0b0;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

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

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

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

    .terms-layout-b article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
        background: var(--bg-alt);
    }

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

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

    .terms-layout-b p, .terms-layout-b li {
        color: var(--neutral-600);
        margin-top: 0;
    }

header {
        background: var(--neutral-0);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
    }
    .header-top {
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
    }
    .header-top .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    .header-contact {
        display: flex;
        align-items: center;
    }
    .cta-button {
        display: inline-block;
        padding: 0.5rem 1.25rem;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .cta-button:hover {
        background: var(--bg-accent-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.25rem;
        gap: 0.3rem;
    }
    .burger span {
        display: block;
        width: 1.5rem;
        height: 2px;
        background: var(--neutral-900);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: translateY(0.5rem) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-0.5rem) rotate(-45deg);
    }
    .header-bottom {
        padding: 0.5rem 0;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--neutral-800);
        font-weight: 500;
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
        background: var(--surface-light);
    }
    @media (max-width: 767px) {
        .header-contact {
            display: none;
        }
        .burger {
            display: flex;
        }
        .header-bottom {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--neutral-0);
            box-shadow: var(--shadow-md);
            padding: 0.5rem 0;
        }
        .header-bottom.open {
            display: block;
        }
        .nav-menu ul {
            flex-direction: column;
            gap: 0;
        }
        .nav-menu a {
            display: block;
            padding: 0.75rem var(--space-x);
            border-bottom: 1px solid var(--border-on-surface-light);
        }
        .nav-menu a:last-child {
            border-bottom: none;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 300px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 1rem;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    margin-bottom: 1rem;
  }
  .footer-contact address {
    font-style: normal;
    margin-bottom: 0.3rem;
  }
  .footer-contact a {
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 0.3rem;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f5a623;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-social a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #f5a623;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
  }
  .footer-bottom p {
    margin: 0.3rem 0;
    font-size: 0.85rem;
    color: #b0b0b0;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.thx-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.thx-lx10 .thx-wrap{max-width:820px;margin:0 auto;display:grid;gap:.58rem}
.thx-lx10 .thx-note{padding:1rem;border-radius:var(--radius-xl);background:linear-gradient(180deg,var(--surface-1),var(--surface-2));border:1px solid var(--border-on-surface);text-align:center}
.thx-lx10 h2{margin:0;font-size:clamp(1.72rem,3vw,2.4rem)}
.thx-lx10 .thx-note p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.thx-lx10 .thx-inline{margin:0;padding:.72rem .8rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}

header {
        background: var(--neutral-0);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
    }
    .header-top {
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
    }
    .header-top .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    .header-contact {
        display: flex;
        align-items: center;
    }
    .cta-button {
        display: inline-block;
        padding: 0.5rem 1.25rem;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .cta-button:hover {
        background: var(--bg-accent-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.25rem;
        gap: 0.3rem;
    }
    .burger span {
        display: block;
        width: 1.5rem;
        height: 2px;
        background: var(--neutral-900);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: translateY(0.5rem) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-0.5rem) rotate(-45deg);
    }
    .header-bottom {
        padding: 0.5rem 0;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--neutral-800);
        font-weight: 500;
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
        background: var(--surface-light);
    }
    @media (max-width: 767px) {
        .header-contact {
            display: none;
        }
        .burger {
            display: flex;
        }
        .header-bottom {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--neutral-0);
            box-shadow: var(--shadow-md);
            padding: 0.5rem 0;
        }
        .header-bottom.open {
            display: block;
        }
        .nav-menu ul {
            flex-direction: column;
            gap: 0;
        }
        .nav-menu a {
            display: block;
            padding: 0.75rem var(--space-x);
            border-bottom: 1px solid var(--border-on-surface-light);
        }
        .nav-menu a:last-child {
            border-bottom: none;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 300px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 1rem;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    margin-bottom: 1rem;
  }
  .footer-contact address {
    font-style: normal;
    margin-bottom: 0.3rem;
  }
  .footer-contact a {
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 0.3rem;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f5a623;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-social a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #f5a623;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
  }
  .footer-bottom p {
    margin: 0.3rem 0;
    font-size: 0.85rem;
    color: #b0b0b0;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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