:root {
  --font-family: "Fira Sans", sans-serif;
  --font-size-base: 16.7px;
  --line-height-base: 1.83;

  --max-w: 860px;
  --space-x: 1.21rem;
  --space-y: 1.5rem;
  --gap: 1rem;

  --radius-xl: 0.83rem;
  --radius-lg: 0.62rem;
  --radius-md: 0.39rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 1px 1px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 30px rgba(0,0,0,0.06);

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

  --brand: #1a3a5c;
  --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: #ffffff;
  --fg-on-page: #1f2937;

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

  --surface-1: #ffffff;
  --surface-2: #f3f4f6;
  --fg-on-surface: #1f2937;
  --border-on-surface: #e5e7eb;

  --surface-light: #fafafa;
  --fg-on-surface-light: #4b5563;
  --border-on-surface-light: #e5e7eb;

  --bg-primary: #2563eb;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d4ed8;
  --ring: #2563eb;

  --bg-accent: #fef3c7;
  --fg-on-accent: #1a3a5c;
  --bg-accent-hover: #b45309;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #2563eb 100%);
  --gradient-accent: linear-gradient(135deg, #d97706 0%, #f59e0b 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(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 400px;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--link);
    border-bottom-color: var(--link);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
    }
    .nav.open {
      max-height: 400px;
    }
    .nav-list {
      flex-direction: column;
    }
  }

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

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.intro-window-l9 {
        padding: clamp(3.7rem, 8vw, 6.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .intro-window-l9__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .intro-window-l9__copy {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .intro-window-l9__media {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

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

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

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

    .intro-window-l9__links {
        margin-top: 1.1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-window-l9__links a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface-light);
    }

    .intro-window-l9__links a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

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

    .intro-window-l9__mark {
        margin-top: .85rem;
        padding: .8rem .9rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

.next-signal-c7 {
        padding: clamp(3.7rem, 8vw, 6.3rem) var(--space-x);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .next-signal-c7__wrap {
        max-width: 60rem;
        margin: 0 auto;
        display: grid;
        grid-template-columns: .95fr 1.05fr;
        gap: 1rem;
        align-items: center;
    }

    .next-signal-c7__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
    }

    .next-signal-c7__copy h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3.1rem);
    }

    .next-signal-c7__copy span {
        display: block;
        margin-top: .85rem;

    }

    .next-signal-c7__stack {
        display: grid;
        gap: .7rem;
    }

    .next-signal-c7__stack a {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        padding: .9rem 1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .next-signal-c7__stack span {
        color: rgba(255, 255, 255, .8);
    }

    .next-signal-c7__button {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

    @media (max-width: 820px) {
        .next-signal-c7__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

    .index-recommendations-steps__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .index-recommendations-steps__h h2 {
        margin: 0 0 10px;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

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

    .index-recommendations-steps__steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(16px, 3vw, 26px);
    }

    .index-recommendations-steps__step {
        position: relative;

        transform: translateY(26px);
    }

    .index-recommendations-steps__num {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        position: absolute;
        top: 18px;
        left: 50px;
        font-size: 12px;
        box-shadow: var(--shadow-md);
    }

    .index-recommendations-steps__box {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: 26px 18px 18px;
        height: 100%;
    }

    .index-recommendations-steps__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

    .index-recommendations-steps__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: var(--fg-on-accent);
        flex: 0 0 auto;
    }

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

    .index-recommendations-steps__box h3 {
        margin: 0 0 10px;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-surface-light);
    }

    .index-recommendations-steps__why {
        margin: 0 0 10px;
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--fg-on-surface-light);
        opacity: 0.75;
    }

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

    .index-recommendations-steps__cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .index-recommendations-steps__cta::after {
        content: '->';
    }

    .index-recommendations-steps__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

.touch-orbit {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .touch-orbit .touch-header {
        margin-bottom: 14px;
        text-align: center;
    }

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

    .touch-orbit .touch-header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
    }

    .touch-orbit .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .touch-orbit .card {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: orbitIn 420ms ease both;
    }

    .touch-orbit .card:nth-child(2) {
        animation-delay: 90ms;
    }

    .touch-orbit .card:nth-child(3) {
        animation-delay: 180ms;
    }

    .touch-orbit .icon,
    .touch-orbit .badge,
    .touch-orbit h3,
    .touch-orbit .card p {
        margin: 0 0 8px;
    }

    .touch-orbit .card a {
        color: var(--accent-contrast);
        text-decoration: underline;
    }

    .touch-orbit .main {
        display: inline-block;
        margin-top: 14px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @keyframes orbitIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 400px;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--link);
    border-bottom-color: var(--link);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
    }
    .nav.open {
      max-height: 400px;
    }
    .nav-list {
      flex-direction: column;
    }
  }

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

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.identity-nv9 {
        padding: clamp(54px, 8vw, 98px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
    }

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

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

    .identity-nv9__head span {
        display: inline-flex;
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.2);
    }

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

    .identity-nv9__head p {
        margin: 0;
        max-width: 70ch;
        opacity: .92;
    }

    .identity-nv9__list {
        display: grid;
        gap: 10px;
    }

    .identity-nv9__list article {
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 12px;
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .identity-nv9__list b {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: rgba(15, 23, 42, 0.45);
        color: var(--neutral-0);
        align-self: start;
    }

    .identity-nv9__list h3 {
        margin: 0;
    }

    .identity-nv9__list em {
        display: block;
        margin-top: 4px;
        font-style: normal;
        opacity: .95;
    }

    .identity-nv9__list p {
        margin: 7px 0 0;
        opacity: .9;
    }

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

.faq-fresh-v1 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

    .faq-fresh-v1 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    }

    .faq-fresh-v1 .items {
        display: grid;
        gap: .8rem;
    }

    .faq-fresh-v1 details {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        padding: .85rem 1rem;
        background: var(--surface-1);
    }

    .faq-fresh-v1 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .faq-fresh-v1 p {
        margin: .7rem 0 0;
        color: var(--fg-on-surface-light);
    }

.gallery--colored-v5 {

    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.gallery__header {
    text-align: center;
    margin-bottom: 24px;
}

.gallery__header h2 {
    margin: 0 0 6px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

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

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

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
}

.gallery__item--featured {
    border-color: var(--accent);
}

.gallery__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    font-size: 0.85rem;
}

.testimonials-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: white;
        color: black
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 400px;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--link);
    border-bottom-color: var(--link);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
    }
    .nav.open {
      max-height: 400px;
    }
    .nav-list {
      flex-direction: column;
    }
  }

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

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.hiw-ribbon-c1 {
        padding: clamp(3.5rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .hiw-ribbon-c1__head {
        margin-bottom: 1.25rem;
    }

    .hiw-ribbon-c1__head p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .hiw-ribbon-c1__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

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

    .hiw-ribbon-c1__track article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--fg-on-primary);
        color:  var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-md);
        position: relative;
    }

    .hiw-ribbon-c1__track article::after {
        content: '';
        position: absolute;
        inset: auto 1rem 0.7rem 1rem;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, .45), transparent);
    }

    .hiw-ribbon-c1__track span {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .hiw-ribbon-c1__track h3 {
        margin: .8rem 0 .35rem;
    }

    .hiw-ribbon-c1__track p {
        margin: 0;
    }

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

        transform: translateY(28px);
    }

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

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

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

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

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

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

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

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

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

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

.capabilities-alt {

        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(60px, 8vw, 100px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .capabilities-alt::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
        opacity: 0.1;
    }

    .capabilities-alt .capabilities-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .capabilities-alt .capabilities-alt__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 80px);

    }

    .capabilities-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
    }

    .capabilities-alt .capabilities-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .capabilities-alt .capabilities-alt__flow {
        display: flex;
        flex-direction: column;
        gap: clamp(40px, 5vw, 64px);
        position: relative;
    }

    .capabilities-alt .capabilities-alt__item {
        display: flex;
        align-items: center;
        gap: clamp(24px, 4vw, 48px);

        transform: translateX(-50px);
    }

    .capabilities-alt .capabilities-alt__item:nth-child(even) {
        flex-direction: row-reverse;
        transform: translateX(50px);
    }

    .capabilities-alt .capabilities-alt__connector {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        background: var(--accent);
        border-radius: 50%;
        position: relative;
        box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2);
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% {
            box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2);
        }
        50% {
            box-shadow: 0 0 0 16px rgba(255, 107, 53, 0.1);
        }
    }

    .capabilities-alt .capabilities-alt__connector::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 24px;
        height: 24px;
        background: var(--fg-on-primary);
        border-radius: 50%;
    }

    .capabilities-alt .capabilities-alt__bubble {
        flex: 1;
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 36px);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .capabilities-alt .capabilities-alt__bubble::before {
        content: '';
        position: absolute;
        top: 50%;
        width: 20px;
        height: 20px;
        background: var(--surface-light);
        transform: translateY(-50%) rotate(45deg);
    }

    .capabilities-alt .capabilities-alt__item:nth-child(odd) .capabilities-alt__bubble::before {
        left: -10px;
    }

    .capabilities-alt .capabilities-alt__item:nth-child(even) .capabilities-alt__bubble::before {
        right: -10px;
    }

    .capabilities-alt .capabilities-alt__icon {
        color: var(--fg-on-surface-light);
        font-size: 36px;
        margin-bottom: 1rem;
    }

    .capabilities-alt .capabilities-alt__bubble h3 {
        font-size: clamp(20px, 2.5vw, 26px);
        font-weight: 700;
        margin: 0 0 0.75rem;
        color: var(--brand);
    }

    .capabilities-alt .capabilities-alt__bubble p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 400px;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--link);
    border-bottom-color: var(--link);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
    }
    .nav.open {
      max-height: 400px;
    }
    .nav-list {
      flex-direction: column;
    }
  }

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

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.touch-orbit {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .touch-orbit .touch-header {
        margin-bottom: 14px;
        text-align: center;
    }

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

    .touch-orbit .touch-header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
    }

    .touch-orbit .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .touch-orbit .card {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: orbitIn 420ms ease both;
    }

    .touch-orbit .card:nth-child(2) {
        animation-delay: 90ms;
    }

    .touch-orbit .card:nth-child(3) {
        animation-delay: 180ms;
    }

    .touch-orbit .icon,
    .touch-orbit .badge,
    .touch-orbit h3,
    .touch-orbit .card p {
        margin: 0 0 8px;
    }

    .touch-orbit .card a {
        color: var(--accent-contrast);
        text-decoration: underline;
    }

    .touch-orbit .main {
        display: inline-block;
        margin-top: 14px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @keyframes orbitIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

.form-fresh-v6 {
        padding: calc(var(--space-y) * 2.9) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

    .form-fresh-v6 .shell {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .form-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    }

    .form-fresh-v6 form {
        display: grid;
        gap: .85rem;
    }

    .form-fresh-v6 .rows {
        display: grid;
        gap: .6rem;
    }

    .form-fresh-v6 label {
        display: grid;
        grid-template-columns:180px 1fr;
        gap: .8rem;
        align-items: center;
        padding: .6rem .8rem;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
    }

    .form-fresh-v6 b {
        font-size: .9rem;
    }

    .form-fresh-v6 input {
        padding: .58rem .7rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

    .form-fresh-v6 button {
        justify-self: start;
        padding: .68rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
    }

    @media (max-width: 720px) {
        .form-fresh-v6 label {
            grid-template-columns:1fr;
        }
    }

.connect {
        color: var(--gradient-accent);
        background: var(--gradient-hero);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .connect .connect__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: clamp(24px, 4vw, 32px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
        padding: var(--space-x);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s, border-color 0.3s;
    }

    .connect .connect__item {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .connect .connect__item:hover {
        transform: translateY(-6px);
        border-color: var(--bg-accent);
    }

    .connect .connect__item span {
        font-size: clamp(17px, 2.8vw, 20px);
        font-weight: 600;
    }

.contacts-fresh-v1 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .contacts-fresh-v1 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: calc(var(--gap) * 1.4);
    }

    .contacts-fresh-v1 .intro h2 {
        margin: .3rem 0;
        font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    }

    .contacts-fresh-v1 .intro p {
        max-width: 56ch;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v1 .cards {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap);
    }

    .contacts-fresh-v1 article {
        padding: 1.1rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .contacts-fresh-v1 h3 {
        margin: 0 0 .6rem;
    }

    .contacts-fresh-v1 .value {
        margin: 0;
        font-weight: 700;
    }

    .contacts-fresh-v1 .hint {
        margin: .3rem 0 .8rem;
        color: var(--fg-on-surface-light);
    }

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

    @media (max-width: 900px) {
        .contacts-fresh-v1 .cards {
            grid-template-columns:1fr;
        }
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 400px;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--link);
    border-bottom-color: var(--link);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
    }
    .nav.open {
      max-height: 400px;
    }
    .nav-list {
      flex-direction: column;
    }
  }

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

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

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

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

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

    .policy-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
        background: var(--surface-1);
    }

    .policy-layout-f .head {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

    .policy-layout-f article p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 400px;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--link);
    border-bottom-color: var(--link);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
    }
    .nav.open {
      max-height: 400px;
    }
    .nav-list {
      flex-direction: column;
    }
  }

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

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

    .policy-layout-a .section-head {
        margin-bottom: 16px;
    }

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

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

    .policy-layout-a .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .policy-layout-a article {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
    }

    .policy-layout-a .meta {
        margin: 0;
        color: var(--brand);
        font-weight: 600;
    }

    .policy-layout-a h3 {
        margin: 8px 0;
    }

    .policy-layout-a article p {
        margin: 0;
        color: var(--neutral-600);
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 400px;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--link);
    border-bottom-color: var(--link);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
    }
    .nav.open {
      max-height: 400px;
    }
    .nav-list {
      flex-direction: column;
    }
  }

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

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.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: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 400px;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--link);
    border-bottom-color: var(--link);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
    }
    .nav.open {
      max-height: 400px;
    }
    .nav-list {
      flex-direction: column;
    }
  }

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

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

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

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