:root {
  --font-family: "IBM Plex Sans", sans-serif;
  --font-size-base: 18.5px;
  --line-height-base: 1.37;

  --max-w: 1380px;
  --space-x: 1.23rem;
  --space-y: 1.5rem;
  --gap: 1.21rem;

  --radius-xl: 1.3rem;
  --radius-lg: 1rem;
  --radius-md: 0.68rem;
  --radius-sm: 0.28rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.24);
  --shadow-md: 0 8px 20px rgba(0,0,0,0.31);
  --shadow-lg: 0 22px 64px rgba(0,0,0,0.37);

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

  --brand: #1a3a5c;
  --brand-contrast: #ffffff;
  --accent: #e67e22;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f7fa;
  --neutral-300: #d1d5db;
  --neutral-600: #6b7280;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

  --bg-page: #ffffff;
  --fg-on-page: #1f2937;

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

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

  --surface-light: #f3f4f6;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #d1d5db;

  --bg-primary: #2c6e9c;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1a4a6e;
  --ring: #2c6e9c;

  --bg-accent: #f39c12;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #d35400;

  --link: #2c6e9c;
  --link-hover: #1a4a6e;

  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #2c6e9c 100%);
  --gradient-accent: linear-gradient(135deg, #e67e22 0%, #f39c12 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;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
    position: relative;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

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

  .nav-left {
    margin-right: auto;
  }

  .nav-right {
    margin-left: auto;
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity 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);
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }

  .mobile-nav.open {
    display: flex;
  }

  .mobile-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }

  .mobile-nav .nav-link:last-child {
    border-bottom: none;
  }

  @media (max-width: 767px) {
    .nav {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-inner {
      justify-content: center;
      padding-right: calc(var(--space-x) + 3rem);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-logo .logo-link {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo .logo-link:hover {
    color: #ffc107;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav .nav-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .contact-icon {
    font-size: 1.1rem;
    min-width: 1.2rem;
  }
  .contact-item a {
    color: #ccc;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    flex: 2 1 400px;
    text-align: right;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 0.8rem;
  }
  .legal-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav .nav-list {
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
    }
    .footer-legal {
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.hero {
        position: relative;
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--fg-on-primary);
        overflow: hidden;
    }

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

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

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

    .hero h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
        text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

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

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

    .hero__btn {
        display: inline-block;
        padding: 12px 30px;
        border-radius: var(--radius-md);
        font-weight: 500;
        text-align: center;
        transition: all var(--anim-duration) var(--anim-ease);
        cursor: pointer;
        border: 1px solid transparent;
        font-size: 1rem;
    }

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

    .hero__btn--primary:hover {
        background-color: var(--bg-primary-hover);
        border-color: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

    .hero__btn--outline:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

.next-route-l6 {
        padding: clamp(3.1rem, 7vw, 5.6rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-route-l6__wrap {
        max-width: 56rem;
        margin: 0 auto;
    }

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

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

    .next-route-l6__line {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
        gap: .7rem;
    }

    .next-route-l6__line a {
        display: flex;
        gap: .6rem;
        align-items: center;
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        color: var(--fg-on-page);
    }

    .next-route-l6__line i {
        font-style: normal;
    }

    .next-route-l6__copy {
        margin: 1rem 0 0;
        color: var(--neutral-600);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .about-struct-v3 .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-v3 .split, .about-struct-v3 .duo, .about-struct-v3 .cards, .about-struct-v3 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

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

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

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

    .nfsocial-v8__head {
        margin-bottom: 14px;
    }

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

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

    .nfsocial-v8__quotes {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 12px;
    }

    .nfsocial-v8__quotes article {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        padding: 14px;
    }

    .nfsocial-v8__quotes p {
        margin: 0;
        color: var(--fg-on-page);
    }

    .nfsocial-v8__quotes strong {
        display: block;
        margin-top: 10px;
        color: var(--neutral-900);
    }

    .nfsocial-v8__quotes span {
        display: block;
        margin-top: 4px;
        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;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
    position: relative;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

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

  .nav-left {
    margin-right: auto;
  }

  .nav-right {
    margin-left: auto;
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity 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);
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }

  .mobile-nav.open {
    display: flex;
  }

  .mobile-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }

  .mobile-nav .nav-link:last-child {
    border-bottom: none;
  }

  @media (max-width: 767px) {
    .nav {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-inner {
      justify-content: center;
      padding-right: calc(var(--space-x) + 3rem);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-logo .logo-link {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo .logo-link:hover {
    color: #ffc107;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav .nav-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .contact-icon {
    font-size: 1.1rem;
    min-width: 1.2rem;
  }
  .contact-item a {
    color: #ccc;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    flex: 2 1 400px;
    text-align: right;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 0.8rem;
  }
  .legal-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav .nav-list {
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
    }
    .footer-legal {
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.messages--light-v6 {

    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

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

.messages__inner h2 {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
}

.messages__list {
    display: grid;
    gap: 10px;
}

.messages__row {
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: 10px 12px;
    border: 1px solid var(--border-on-surface-light);
}

.messages__row-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fg-on-page);
}

.messages__row-text {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.index-feedback-accordion {
        background: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.75), transparent 60%),
        var(--gradient-hero);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

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

        transform: translateY(-18px);
    }

    .index-feedback-accordion__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-feedback-accordion__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-feedback-accordion__list {
        display: grid;
        gap: 12px;
    }

    .index-feedback-accordion__row {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(248, 225, 231, 0.95);
        background: rgba(58, 46, 61, 0.92);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-feedback-accordion__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--bg-page);
        font: inherit;
    }

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

    .index-feedback-accordion__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-accordion__name {
        font-weight: 800;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-accordion__meta {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-accordion__right {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .index-feedback-accordion__stars {
        color: var(--brand);
        letter-spacing: 0.08em;
        font-size: 13px;
        line-height: 1;
    }

    .index-feedback-accordion__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--bg-page);
    }

    .index-feedback-accordion__a {
        display: none;
        padding: 0 16px 14px;
        color: rgba(255, 255, 255, 0.85);
        overflow: hidden;
    }

    .index-feedback-accordion__quote {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback-accordion__badge {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.78);
    }

.clarifications-l2 {

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

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

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

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

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

    .clarifications-l2__panel {
        position: relative;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* constante escaneo */
    .clarifications-l2__scan {
        position: absolute;
        left: 0;
        top: -40%;
        width: 100%;
        height: 42%;
        background: linear-gradient(180deg, transparent, rgba(0, 86, 179, 0.08), transparent);
        animation: l2Scan 4.8s linear infinite;
        pointer-events: none;
    }

    @keyframes l2Scan {
        0% {
            transform: translateY(0%)
        }
        100% {
            transform: translateY(240%)
        }
    }

    .clarifications-l2__list {
        display: grid;
        gap: 10px;
        padding: 12px;
    }

    .clarifications-l2__row {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 12px;
        padding: 12px 14px;
        text-align: left;
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        cursor: pointer;
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .clarifications-l2__row:hover {
        transform: translateY(-2px);
        border-color: rgba(0, 86, 179, 0.35);
    }

    .clarifications-l2__k {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 34px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
    }

    .clarifications-l2__q {
        display: block;
        font-weight: 900;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-l2__a {
        display: block;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    /* JS añadirá resalte "flotante" de la fila activa */
    .clarifications-l2__row.is-focus {
        border-color: rgba(255, 107, 53, 0.45);
        box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.08);
    }

    @media (max-width: 720px) {
        .clarifications-l2__row {
            grid-template-columns:1fr
        }

        .clarifications-l2__k {
            justify-self: start;
            padding: 0 12px
        }
    }

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

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;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
    position: relative;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

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

  .nav-left {
    margin-right: auto;
  }

  .nav-right {
    margin-left: auto;
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity 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);
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }

  .mobile-nav.open {
    display: flex;
  }

  .mobile-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }

  .mobile-nav .nav-link:last-child {
    border-bottom: none;
  }

  @media (max-width: 767px) {
    .nav {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-inner {
      justify-content: center;
      padding-right: calc(var(--space-x) + 3rem);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-logo .logo-link {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo .logo-link:hover {
    color: #ffc107;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav .nav-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .contact-icon {
    font-size: 1.1rem;
    min-width: 1.2rem;
  }
  .contact-item a {
    color: #ccc;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    flex: 2 1 400px;
    text-align: right;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 0.8rem;
  }
  .legal-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav .nav-list {
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
    }
    .footer-legal {
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.nftouch-v10 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .nftouch-v10__head {
        margin-bottom: 14px;
    }

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

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

    .nftouch-v10__cols {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .nftouch-v10__left,
    .nftouch-v10__right {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 12px;
    }

    .nftouch-v10__left p {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .nftouch-v10__left article {
        padding: 8px 0;
        border-bottom: 1px solid var(--border-on-surface-light);
        display: grid;
        gap: 6px;
    }

    .nftouch-v10__left article:last-child {
        border-bottom: 0;
    }

    .nftouch-v10__left h3 {
        margin: 0;
    }

    .nftouch-v10__left span {
        color: var(--neutral-600);
    }

    .nftouch-v10__left a {
        color: var(--link);
        text-decoration: none;
    }

    .nftouch-v10__right img {
        width: 100%;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface-light);
    }

    .nftouch-v10__right a {
        display: inline-block;
        margin-top: 10px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

.plans-cv2 {
        padding: clamp(54px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .plans-cv2__head {
        margin-bottom: 16px;
    }

    .plans-cv2__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv2__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .plans-cv2__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .plans-cv2__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: var(--space-y) var(--space-x);
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .plans-cv2__card.is-active {
        transform: translateY(-4px);
        border-color: var(--bg-accent);
    }

    .plans-cv2__line {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        align-items: center;
    }

    .plans-cv2__line h3 {
        margin: 0;
    }

    .plans-cv2__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .plans-cv2__price {
        margin: 10px 0 8px;
        font-size: 1.45rem;
        font-weight: 800;
    }

    .plans-cv2__list p {
        margin: 0 0 6px;
        opacity: .92;
    }

    .plans-cv2__card button {
        width: 100%;
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
    position: relative;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

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

  .nav-left {
    margin-right: auto;
  }

  .nav-right {
    margin-left: auto;
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity 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);
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }

  .mobile-nav.open {
    display: flex;
  }

  .mobile-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }

  .mobile-nav .nav-link:last-child {
    border-bottom: none;
  }

  @media (max-width: 767px) {
    .nav {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-inner {
      justify-content: center;
      padding-right: calc(var(--space-x) + 3rem);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-logo .logo-link {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo .logo-link:hover {
    color: #ffc107;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav .nav-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .contact-icon {
    font-size: 1.1rem;
    min-width: 1.2rem;
  }
  .contact-item a {
    color: #ccc;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    flex: 2 1 400px;
    text-align: right;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 0.8rem;
  }
  .legal-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav .nav-list {
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
    }
    .footer-legal {
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.support-cv5 {
        padding: clamp(54px, 7vw, 94px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .support-cv5__head {
        margin-bottom: 14px;
    }

    .support-cv5__head p {
        margin: 0;
        font-weight: 700;
        opacity: .9;
    }

    .support-cv5__head h2 {
        margin: 7px 0 0;
        font-size: clamp(30px, 5vw, 46px);
    }

    .support-cv5__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .support-cv5__grid article {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.32);
        color: var(--fg-on-page);
        padding: 13px;
        box-shadow: var(--shadow-sm);
    }

    .support-cv5__grid span {
        font-size: .82rem;
        color: var(--brand);
    }

    .support-cv5__grid h3 {
        margin: var(--space-x) 0;
    }

    .support-cv5__grid p {
        margin: 0;
        color: var(--neutral-700, var(--neutral-600));
    }

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

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

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

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

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

    .faq-layout-f .table {
        display: grid;
        gap: 10px;
    }

    .faq-layout-f .line {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 12px;
        padding: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
    }

    .faq-layout-f .q {
        font-weight: 600;
        color: var(--brand);
    }

    .faq-layout-f .a {
        color: var(--neutral-600);
    }

    @media (max-width: 780px) {
        .faq-layout-f .line {
            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;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
    position: relative;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

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

  .nav-left {
    margin-right: auto;
  }

  .nav-right {
    margin-left: auto;
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity 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);
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }

  .mobile-nav.open {
    display: flex;
  }

  .mobile-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }

  .mobile-nav .nav-link:last-child {
    border-bottom: none;
  }

  @media (max-width: 767px) {
    .nav {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-inner {
      justify-content: center;
      padding-right: calc(var(--space-x) + 3rem);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-logo .logo-link {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo .logo-link:hover {
    color: #ffc107;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav .nav-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .contact-icon {
    font-size: 1.1rem;
    min-width: 1.2rem;
  }
  .contact-item a {
    color: #ccc;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    flex: 2 1 400px;
    text-align: right;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 0.8rem;
  }
  .legal-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav .nav-list {
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
    }
    .footer-legal {
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.form-fresh-v3 {
        padding: calc(var(--space-y) * 2.6) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

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

    .form-fresh-v3 .band {
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .form-fresh-v3 .band h2 {
        margin: 0 0 .35rem;
    }

    .form-fresh-v3 .band p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v3 .row {
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
    }

    .form-fresh-v3 label {
        display: grid;
        gap: .3rem;
        min-width: 190px;
        flex: 1 1 220px;
    }

    .form-fresh-v3 span {
        font-size: .84rem;
        color: var(--fg-on-surface-light);
    }

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

    .form-fresh-v3 button {
        padding: .7rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        align-self: end;
    }

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

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

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

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

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

    .contact-layout-c .stack {
        border-left: 3px solid var(--brand);
        padding-left: 16px;
        display: grid;
        gap: 12px;
    }

    .contact-layout-c .line h3 {
        margin: 0;
        font-size: 1rem;
        color: var(--brand);
    }

    .contact-layout-c .line p {
        margin: 4px 0 0;
    }

    .contact-layout-c .social-bar {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .contact-layout-c .social-bar a {
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .contact-layout-c .social-bar a:hover {
        transform: translateY(-2px);
    }

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;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
    position: relative;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

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

  .nav-left {
    margin-right: auto;
  }

  .nav-right {
    margin-left: auto;
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity 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);
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }

  .mobile-nav.open {
    display: flex;
  }

  .mobile-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }

  .mobile-nav .nav-link:last-child {
    border-bottom: none;
  }

  @media (max-width: 767px) {
    .nav {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-inner {
      justify-content: center;
      padding-right: calc(var(--space-x) + 3rem);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-logo .logo-link {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo .logo-link:hover {
    color: #ffc107;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav .nav-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .contact-icon {
    font-size: 1.1rem;
    min-width: 1.2rem;
  }
  .contact-item a {
    color: #ccc;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    flex: 2 1 400px;
    text-align: right;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 0.8rem;
  }
  .legal-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav .nav-list {
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
    }
    .footer-legal {
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

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

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

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

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

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

header {
    background: 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;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
    position: relative;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

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

  .nav-left {
    margin-right: auto;
  }

  .nav-right {
    margin-left: auto;
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity 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);
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }

  .mobile-nav.open {
    display: flex;
  }

  .mobile-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }

  .mobile-nav .nav-link:last-child {
    border-bottom: none;
  }

  @media (max-width: 767px) {
    .nav {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-inner {
      justify-content: center;
      padding-right: calc(var(--space-x) + 3rem);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-logo .logo-link {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo .logo-link:hover {
    color: #ffc107;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav .nav-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .contact-icon {
    font-size: 1.1rem;
    min-width: 1.2rem;
  }
  .contact-item a {
    color: #ccc;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    flex: 2 1 400px;
    text-align: right;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 0.8rem;
  }
  .legal-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav .nav-list {
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
    }
    .footer-legal {
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

    .policy-layout-b .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .policy-layout-b ol {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

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

    .policy-layout-b h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

    .policy-layout-b li 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;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
    position: relative;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

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

  .nav-left {
    margin-right: auto;
  }

  .nav-right {
    margin-left: auto;
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity 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);
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }

  .mobile-nav.open {
    display: flex;
  }

  .mobile-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }

  .mobile-nav .nav-link:last-child {
    border-bottom: none;
  }

  @media (max-width: 767px) {
    .nav {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-inner {
      justify-content: center;
      padding-right: calc(var(--space-x) + 3rem);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-logo .logo-link {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo .logo-link:hover {
    color: #ffc107;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav .nav-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .contact-icon {
    font-size: 1.1rem;
    min-width: 1.2rem;
  }
  .contact-item a {
    color: #ccc;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    flex: 2 1 400px;
    text-align: right;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 0.8rem;
  }
  .legal-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav .nav-list {
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
    }
    .footer-legal {
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.nfthank-v10 {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .nfthank-v10__wrap {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
    }

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

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

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

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;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
    position: relative;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

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

  .nav-left {
    margin-right: auto;
  }

  .nav-right {
    margin-left: auto;
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity 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);
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }

  .mobile-nav.open {
    display: flex;
  }

  .mobile-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }

  .mobile-nav .nav-link:last-child {
    border-bottom: none;
  }

  @media (max-width: 767px) {
    .nav {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-inner {
      justify-content: center;
      padding-right: calc(var(--space-x) + 3rem);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-logo .logo-link {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo .logo-link:hover {
    color: #ffc107;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav .nav-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .contact-icon {
    font-size: 1.1rem;
    min-width: 1.2rem;
  }
  .contact-item a {
    color: #ccc;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    flex: 2 1 400px;
    text-align: right;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 0.8rem;
  }
  .legal-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav .nav-list {
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
    }
    .footer-legal {
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.err-slab-c {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: linear-gradient(180deg, var(--bg-accent), var(--bg-page));
        color: var(--fg-on-page);
    }

    .err-slab-c .tile {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 44px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        border-top: 8px solid var(--accent);
    }

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

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

    .err-slab-c a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: 999px;
        border: 1px solid var(--neutral-300);
        color: var(--fg-on-page);
        text-decoration: none;
    }