:root {
  --font-family: "Archivo", sans-serif;
  --font-size-base: 18.2px;
  --line-height-base: 1.74;

  --max-w: 1360px;
  --space-x: 2.52rem;
  --space-y: 1.5rem;
  --gap: 1.69rem;

  --radius-xl: 1.11rem;
  --radius-lg: 0.9rem;
  --radius-md: 0.54rem;
  --radius-sm: 0.29rem;

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 26px rgba(0,0,0,0.13);
  --shadow-lg: 0 18px 30px rgba(0,0,0,0.15);

  --overlay: rgba(0,0,0,0.55);
  --anim-duration: 340ms;
  --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: #f5f7fa;
  --fg-on-page: #1f2937;

  --bg-alt: #e8edf3;
  --fg-on-alt: #1f2937;

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

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

  --bg-primary: #1a3a5c;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #142d4a;
  --ring: #e67e22;

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

  --link: #1a3a5c;
  --link-hover: #e67e22;

  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #2c5f8a 100%);
  --gradient-accent: linear-gradient(135deg, #e67e22 0%, #d35400 100%);

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

/* Header base */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 12px) var(--space-x, 24px);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 16px);
  }

  /* Logo */
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }

  /* Navigation */
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 16px);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface, #333333);
    font-size: var(--font-size-base, 16px);
    line-height: var(--line-height-base, 1.5);
    padding: 8px 12px;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
    color: var(--link-hover, #1a73e8);
  }

  /* Burger button */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 110;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #333333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger active state */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile styles */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 100;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap, 16px) * 1.5);
      background: var(--surface-1, #ffffff);
      padding: 40px 24px;
      border-radius: var(--radius-xl, 16px);
      box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,0.12));
      min-width: 240px;
    }

    .nav-list a {
      font-size: calc(var(--font-size-base, 16px) * 1.25);
      padding: 12px 24px;
      width: 100%;
      text-align: center;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 2px;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .footer-nav .nav-list a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav .nav-list a:hover {
    color: #f5a623;
  }
  .contact-block {
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-item {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-legal {
    text-align: center;
    width: 100%;
  }
  .footer-legal .copyright {
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
  }
  .footer-legal .disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
  }
  .legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav .nav-list {
      justify-content: center;
    }
    .contact-list {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.intro-cinema-c1 {
        padding: clamp(4rem, 9vw, 7rem) var(--space-x);
        background: radial-gradient(circle at 100% 0, rgba(255, 255, 255, .16), transparent 28%), var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .intro-cinema-c1__frame {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1.25rem;
        align-items: stretch;
    }

    .intro-cinema-c1__copy, .intro-cinema-c1__stamp {
        padding: 1.1rem;
        border-radius: var(--radius-xl);
        background: rgba(17, 24, 39, .18);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-cinema-c1__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .75);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .intro-cinema-c1__copy h1 {
        margin: .65rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.9rem);
        line-height: 1;
    }

    .intro-cinema-c1__copy span {
        display: block;
        margin-top: 1rem;
        max-width: 38rem;

    }

    .intro-cinema-c1__links {
        margin-top: 1.2rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-cinema-c1__links a {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-cinema-c1__links a:first-child {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

    .intro-cinema-c1__stamp {
        display: grid;
        align-content: end;
        gap: .7rem;
        text-align: right;
    }

    .intro-cinema-c1__stamp strong {
        color: rgba(255, 255, 255, .78);
    }

    .intro-cinema-c1__stamp div {
        font-size: clamp(2.8rem, 5vw, 4.2rem);
        font-weight: 700;
    }

    .intro-cinema-c1__stamp p {
        margin: 0;
        color: rgba(255, 255, 255, .82);
    }

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

    .intro-cinema-c1 {
        overflow: hidden;
    }

    .intro-cinema-c1__frame {
        background-image: linear-gradient(rgba(17, 24, 39, .84), rgba(17, 24, 39, .28)), url('https://images.pexels.com/photos/3183197/pexels-photo-3183197.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
    }

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

    .values-ladder-l4__wrap {
        max-width: 56rem;
        margin: 0 auto;
    }

    .values-ladder-l4__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

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

    .values-ladder-l4__head p {
        margin: .65rem auto 0;
        max-width: 40rem;
        color: var(--neutral-600);
    }

    .values-ladder-l4__rows {
        display: grid;
        gap: .8rem;
    }

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

    .values-ladder-l4__step {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        color: var(--brand);
    }

    .values-ladder-l4__rows h3 {
        margin: 0;
    }

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

    .values-ladder-l4__rows span {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.visual-film-c1 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

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

    .visual-film-c1__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .visual-film-c1__head p {
        margin: 0;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

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

    .visual-film-c1__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        gap: var(--gap);
    }

    .visual-film-c1__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);

    }

    .visual-film-c1__media {
        position: relative;
    }

    .visual-film-c1__media img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
    }

    .visual-film-c1__media span {
        position: absolute;
        top: .8rem;
        left: .8rem;
        padding: .35rem .7rem;
        border-radius: 999px;
        background: rgba(0, 0, 0, .28);
    }

    .visual-film-c1__grid figcaption {
        padding: 1rem;
    }

    .visual-film-c1__grid h3 {
        margin: .5rem 0 .35rem;
    }

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

    .nftouch-v12__wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

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

    .nftouch-v12 li {
        border: 1px solid var(--border-on-surface);
        border-radius: 12px;
        background: var(--neutral-0);
        padding: 10px 12px;
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 8px;
        align-items: center;
    }

    .nftouch-v12 li span {
        color: var(--neutral-600);
        font-size: .85rem;
    }

    .nftouch-v12 li a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .nftouch-v12__cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 10px 14px;
    }

    @media (max-width: 680px) {
        .nftouch-v12 li {
            grid-template-columns: 1fr;
        }
    }

.social-c2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        position: relative;
        overflow: hidden;
    }

    .social-c2::before {
        content: '';
        position: absolute;
        inset: -30%;
        background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
        radial-gradient(circle at 80% 55%, rgba(255, 107, 53, 0.18), transparent 55%);
        filter: blur(18px);
        animation: socialC2Bg 7s var(--anim-ease) infinite;
        pointer-events: none;
    }

    @keyframes socialC2Bg {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1)
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.04)
        }
    }

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

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

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

    .social-c2__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .social-c2__grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 14px;
        align-items: stretch;
    }

    .social-c2__quotes {
        position: relative;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-c2__quote {
        display: none;
        padding: 18px 18px 16px;
    }

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

    .social-c2__qText {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: rgba(255, 255, 255, .92);
    }

    .social-c2__qMeta {
        margin-top: 14px;
        display: flex;
        gap: 10px;
        align-items: baseline;
        flex-wrap: wrap;

    }

    .social-c2__qName {
        font-weight: 900;
    }

    .social-c2__qRole {
        opacity: .85;
    }

    .social-c2__metrics {
        display: grid;
        gap: 12px;
    }

    .social-c2__metric {
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-md);
        padding: 16px;
    }

    .social-c2__mVal {
        font-weight: 900;
        font-size: clamp(22px, 3vw, 32px);
        letter-spacing: -.01em;
    }

    .social-c2__mLbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .82);
    }

    @media (max-width: 980px) {
        .social-c2__grid {
            grid-template-columns:1fr;
        }
    }

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

/* Header base */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 12px) var(--space-x, 24px);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 16px);
  }

  /* Logo */
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }

  /* Navigation */
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 16px);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface, #333333);
    font-size: var(--font-size-base, 16px);
    line-height: var(--line-height-base, 1.5);
    padding: 8px 12px;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
    color: var(--link-hover, #1a73e8);
  }

  /* Burger button */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 110;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #333333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger active state */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile styles */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 100;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap, 16px) * 1.5);
      background: var(--surface-1, #ffffff);
      padding: 40px 24px;
      border-radius: var(--radius-xl, 16px);
      box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,0.12));
      min-width: 240px;
    }

    .nav-list a {
      font-size: calc(var(--font-size-base, 16px) * 1.25);
      padding: 12px 24px;
      width: 100%;
      text-align: center;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 2px;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .footer-nav .nav-list a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav .nav-list a:hover {
    color: #f5a623;
  }
  .contact-block {
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-item {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-legal {
    text-align: center;
    width: 100%;
  }
  .footer-legal .copyright {
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
  }
  .footer-legal .disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
  }
  .legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav .nav-list {
      justify-content: center;
    }
    .contact-list {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.blog-list {

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

    .blog-list .blog-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .blog-list .blog-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .blog-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

    .blog-list .blog-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .blog-list .blog-list__card {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .blog-list .blog-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .blog-list .blog-list__image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .blog-list .blog-list__content {
        padding: clamp(16px, 2vw, 24px);
        color: var(--fg-on-page);
    }

    .blog-list .blog-list__date {
        color: var(--neutral-300);
        font-size: 0.875rem;
    }

    .blog-list h3 {
        margin: 0.5rem 0;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .blog-list h3 a {
        color: var(--fg-on-page);
        text-decoration: none;
    }

    .blog-list p {
        color: var(--neutral-300);
        margin: 0.5rem 0 1rem;
    }

    .blog-list .blog-list__read-more {
        color: var(--bg-primary);
        text-decoration: none;
        font-weight: 600;
    }

    .blog-list .blog-list__read-more:hover {
        text-decoration: underline;
    }

.recommendations-split {
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

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

        transform: translateY(-18px);
    }

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

    .recommendations-split__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .recommendations-split__grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(14px, 2.6vw, 22px);
    }

    .recommendations-split__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        background: rgba(255, 255, 255, 0.65);
        border: 1px solid rgba(58, 46, 61, 0.12);
        display: grid;
        grid-template-rows: 170px 1fr;

        transform: translateY(26px);
        backdrop-filter: blur(10px);
    }

    .recommendations-split__card:nth-child(1) {
        grid-column: span 12;
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 1fr;
        min-height: 320px;
    }

    .recommendations-split__media {
        position: relative;
        background-size: cover;
        background-position: center;
        background-color: rgba(58, 46, 61, 0.08);
    }

    .recommendations-split__card:nth-child(1) .recommendations-split__media {
        border-right: 1px solid rgba(58, 46, 61, 0.12);
    }

    .recommendations-split__media::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
        pointer-events: none;
    }

    .recommendations-split__pill {
        position: absolute;
        left: 14px;
        top: 14px;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(58, 46, 61, 0.14);
        color: var(--fg-on-page);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        z-index: 1;
    }

    .recommendations-split__body {
        padding: 18px 18px 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

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

    .recommendations-split__body h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-page);
    }

    .recommendations-split__body p {
        margin: 0;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .recommendations-split__link {
        margin-top: auto;
        color: var(--link);
        text-decoration: none;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .recommendations-split__link::after {
        content: '->';
    }

    .recommendations-split__link:hover {
        color: var(--link-hover);
    }

    @media (max-width: 900px) {
        .recommendations-split__grid {
            grid-template-columns: repeat(6, 1fr);
        }

        .recommendations-split__card {
            grid-column: span 6;
        }

        .recommendations-split__card:nth-child(1) {
            grid-template-columns: 1fr;
            grid-template-rows: 200px 1fr;
            min-height: 0;
        }

        .recommendations-split__card:nth-child(1) .recommendations-split__media {
            border-right: 0;
            border-bottom: 1px solid rgba(58, 46, 61, 0.12);
        }
    }

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

    .next-strip-l2 {
        padding: clamp(3rem, 7vw, 5.6rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .next-strip-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

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

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

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

    .next-strip-l2__actions {
        max-width: var(--max-w);
        margin: 1rem auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: .75rem;
    }

    .next-strip-l2__actions a {
        display: block;
        padding: .95rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        text-decoration: none;
        color: var(--neutral-900);
        box-shadow: var(--shadow-sm);
    }

    .next-strip-l2__actions span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .next-strip-l2 {
        overflow: hidden;
    }

    .next-strip-l2__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=800');
        color: var(--neutral-900);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--gap);
        box-shadow: var(--shadow-sm)
    }

/* Header base */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 12px) var(--space-x, 24px);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 16px);
  }

  /* Logo */
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }

  /* Navigation */
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 16px);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface, #333333);
    font-size: var(--font-size-base, 16px);
    line-height: var(--line-height-base, 1.5);
    padding: 8px 12px;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
    color: var(--link-hover, #1a73e8);
  }

  /* Burger button */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 110;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #333333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger active state */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile styles */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 100;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap, 16px) * 1.5);
      background: var(--surface-1, #ffffff);
      padding: 40px 24px;
      border-radius: var(--radius-xl, 16px);
      box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,0.12));
      min-width: 240px;
    }

    .nav-list a {
      font-size: calc(var(--font-size-base, 16px) * 1.25);
      padding: 12px 24px;
      width: 100%;
      text-align: center;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 2px;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .footer-nav .nav-list a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav .nav-list a:hover {
    color: #f5a623;
  }
  .contact-block {
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-item {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-legal {
    text-align: center;
    width: 100%;
  }
  .footer-legal .copyright {
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
  }
  .footer-legal .disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
  }
  .legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav .nav-list {
      justify-content: center;
    }
    .contact-list {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.blog-item {

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

    .blog-item .blog-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .blog-item .blog-item__c {
            grid-template-columns: 1fr 300px;
        }
    }

    .blog-item .blog-item__header {
        margin-bottom: var(--space-y);
    }

    .blog-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .blog-item .blog-item__content {
        line-height: 1.8;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__related {
        background: var(--surface-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .blog-item .blog-item__related h3 {
        margin: 0 0 1rem;
        font-size: 1.25rem;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__related-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .blog-item .blog-item__related-item a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .blog-item .blog-item__related-item a:hover {
        text-decoration: underline;
    }

.articles {

        color: var(--fg-on-page);
        background: var(--bg-alt);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .articles .articles__title {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 clamp(32px, 5vw, 48px);
        color: var(--fg-on-alt);
    }

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

    .articles .articles__card {
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .articles .articles__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .articles .articles__image {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

    .articles .articles__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .articles .articles__content {
        padding: clamp(20px, 3vw, 24px);
    }

    .articles .articles__content h3 {
        font-size: clamp(18px, 3vw, 22px);
        margin: 0 0 0.75rem;
    }

    .articles .articles__content h3 a {
        color: var(--fg-on-page);
        text-decoration: none;
    }

    .articles .articles__content h3 a:hover {
        color: var(--link-hover);
    }

    .articles .articles__content p {
        font-size: clamp(14px, 2vw, 16px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0 0 0.75rem;
    }

    .articles .articles__date {
        font-size: clamp(12px, 1.8vw, 14px);
        color: var(--neutral-600);
    }

/* Header base */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 12px) var(--space-x, 24px);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 16px);
  }

  /* Logo */
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }

  /* Navigation */
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 16px);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface, #333333);
    font-size: var(--font-size-base, 16px);
    line-height: var(--line-height-base, 1.5);
    padding: 8px 12px;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
    color: var(--link-hover, #1a73e8);
  }

  /* Burger button */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 110;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #333333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger active state */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile styles */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 100;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap, 16px) * 1.5);
      background: var(--surface-1, #ffffff);
      padding: 40px 24px;
      border-radius: var(--radius-xl, 16px);
      box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,0.12));
      min-width: 240px;
    }

    .nav-list a {
      font-size: calc(var(--font-size-base, 16px) * 1.25);
      padding: 12px 24px;
      width: 100%;
      text-align: center;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 2px;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .footer-nav .nav-list a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav .nav-list a:hover {
    color: #f5a623;
  }
  .contact-block {
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-item {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-legal {
    text-align: center;
    width: 100%;
  }
  .footer-legal .copyright {
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
  }
  .footer-legal .disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
  }
  .legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav .nav-list {
      justify-content: center;
    }
    .contact-list {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

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

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

    .blogitem-fresh-v5 .meta {
        margin: 0;
        opacity: .78;
    }

    .blogitem-fresh-v5 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.2vw, 3rem);
    }

    .blogitem-fresh-v5 .lead {
        margin: 0;
        opacity: .88;
        max-width: 66ch;
    }

    .blogitem-fresh-v5 .frame {
        display: grid;
        grid-template-columns:.95fr 1.05fr;
        gap: var(--gap);
        align-items: start;
    }

    .blogitem-fresh-v5 img {
        width: 100%;
        aspect-ratio: 4/5;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .blogitem-fresh-v5 .content {
        display: grid;
        gap: .75rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .blogitem-fresh-v5 .content p {
        margin: 0;
        opacity: .92;
    }

    @media (max-width: 860px) {
        .blogitem-fresh-v5 .frame {
            grid-template-columns:1fr;
        }

        .blogitem-fresh-v5 img {
            aspect-ratio: 16/9;
        }
    }

/* Header base */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 12px) var(--space-x, 24px);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 16px);
  }

  /* Logo */
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }

  /* Navigation */
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 16px);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface, #333333);
    font-size: var(--font-size-base, 16px);
    line-height: var(--line-height-base, 1.5);
    padding: 8px 12px;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
    color: var(--link-hover, #1a73e8);
  }

  /* Burger button */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 110;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #333333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger active state */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile styles */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 100;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap, 16px) * 1.5);
      background: var(--surface-1, #ffffff);
      padding: 40px 24px;
      border-radius: var(--radius-xl, 16px);
      box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,0.12));
      min-width: 240px;
    }

    .nav-list a {
      font-size: calc(var(--font-size-base, 16px) * 1.25);
      padding: 12px 24px;
      width: 100%;
      text-align: center;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 2px;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .footer-nav .nav-list a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav .nav-list a:hover {
    color: #f5a623;
  }
  .contact-block {
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-item {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-legal {
    text-align: center;
    width: 100%;
  }
  .footer-legal .copyright {
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
  }
  .footer-legal .disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
  }
  .legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav .nav-list {
      justify-content: center;
    }
    .contact-list {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

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

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

    .support-cv3__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .support-cv3__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-cv3__list {
        display: grid;
        gap: 10px;
    }

    .support-cv3__item {
        border: 1px solid rgba(255, 255, 255, 0.32);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.12);
        overflow: hidden;
    }

    .support-cv3__item button {
        width: 100%;
        border: 0;
        background: transparent;
        color: inherit;
        text-align: left;
        font: inherit;
        font-weight: 700;
        padding: 11px 12px;
        cursor: pointer;
    }

    .support-cv3__item p {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        opacity: .95;
    }

    .support-cv3__item.is-open p {
        max-height: 220px;
        padding: 0 12px 12px;
    }

.recommendations-split {
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

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

        transform: translateY(-18px);
    }

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

    .recommendations-split__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .recommendations-split__grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(14px, 2.6vw, 22px);
    }

    .recommendations-split__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        background: rgba(255, 255, 255, 0.65);
        border: 1px solid rgba(58, 46, 61, 0.12);
        display: grid;
        grid-template-rows: 170px 1fr;

        transform: translateY(26px);
        backdrop-filter: blur(10px);
    }

    .recommendations-split__card:nth-child(1) {
        grid-column: span 12;
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 1fr;
        min-height: 320px;
    }

    .recommendations-split__media {
        position: relative;
        background-size: cover;
        background-position: center;
        background-color: rgba(58, 46, 61, 0.08);
    }

    .recommendations-split__card:nth-child(1) .recommendations-split__media {
        border-right: 1px solid rgba(58, 46, 61, 0.12);
    }

    .recommendations-split__media::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
        pointer-events: none;
    }

    .recommendations-split__pill {
        position: absolute;
        left: 14px;
        top: 14px;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(58, 46, 61, 0.14);
        color: var(--fg-on-page);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        z-index: 1;
    }

    .recommendations-split__body {
        padding: 18px 18px 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

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

    .recommendations-split__body h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-page);
    }

    .recommendations-split__body p {
        margin: 0;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .recommendations-split__link {
        margin-top: auto;
        color: var(--link);
        text-decoration: none;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .recommendations-split__link::after {
        content: '->';
    }

    .recommendations-split__link:hover {
        color: var(--link-hover);
    }

    @media (max-width: 900px) {
        .recommendations-split__grid {
            grid-template-columns: repeat(6, 1fr);
        }

        .recommendations-split__card {
            grid-column: span 6;
        }

        .recommendations-split__card:nth-child(1) {
            grid-template-columns: 1fr;
            grid-template-rows: 200px 1fr;
            min-height: 0;
        }

        .recommendations-split__card:nth-child(1) .recommendations-split__media {
            border-right: 0;
            border-bottom: 1px solid rgba(58, 46, 61, 0.12);
        }
    }

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

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

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

    .faq-fresh-v5 .stack {
        display: grid;
        gap: .75rem;
    }

    .faq-fresh-v5 article {
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .faq-fresh-v5 h3 {
        margin: 0 0 .5rem;
        font-size: 1rem;
    }

    .faq-fresh-v5 p {
        margin: 0;
        opacity: .88;
    }

/* Header base */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 12px) var(--space-x, 24px);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 16px);
  }

  /* Logo */
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }

  /* Navigation */
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 16px);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface, #333333);
    font-size: var(--font-size-base, 16px);
    line-height: var(--line-height-base, 1.5);
    padding: 8px 12px;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
    color: var(--link-hover, #1a73e8);
  }

  /* Burger button */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 110;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #333333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger active state */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile styles */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 100;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap, 16px) * 1.5);
      background: var(--surface-1, #ffffff);
      padding: 40px 24px;
      border-radius: var(--radius-xl, 16px);
      box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,0.12));
      min-width: 240px;
    }

    .nav-list a {
      font-size: calc(var(--font-size-base, 16px) * 1.25);
      padding: 12px 24px;
      width: 100%;
      text-align: center;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 2px;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .footer-nav .nav-list a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav .nav-list a:hover {
    color: #f5a623;
  }
  .contact-block {
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-item {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-legal {
    text-align: center;
    width: 100%;
  }
  .footer-legal .copyright {
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
  }
  .footer-legal .disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
  }
  .legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav .nav-list {
      justify-content: center;
    }
    .contact-list {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.map-poster-c7 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .map-poster-c7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.25rem;
        flex-wrap: wrap;
        align-items: start;
    }

    .map-poster-c7__copy {
        flex: 1 1 18rem;
    }

    .map-poster-c7__embed {
        flex: 1 1 24rem;
    }

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

    .map-poster-c7__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .map-poster-c7__details {
        margin-top: 1rem;
        display: grid;
        gap: .75rem;
    }

    .map-poster-c7__details div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-poster-c7__details span {
        display: block;
        margin-top: .35rem;
        color: rgba(255, 255, 255, .84);
    }

    .map-poster-c7__embed iframe {
        display: block;
        width: 100%;
        min-height: 24rem;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-lg);
    }

.contacts-fresh-v2 {
        padding: calc(var(--space-y) * 2.2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

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

    .contacts-fresh-v2 .subtitle {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v2 .list {
        display: grid;
        gap: .75rem;
    }

    .contacts-fresh-v2 article {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .contacts-fresh-v2 .label {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: .9rem;
    }

    .contacts-fresh-v2 .value {
        margin: .2rem 0 0;
        font-weight: 700;
    }

    .contacts-fresh-v2 a {
        padding: .5rem .8rem;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    @media (max-width: 700px) {
        .contacts-fresh-v2 article {
            flex-direction: column;
            align-items: flex-start;
        }
    }

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

    .form-layout-c .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-c .steps {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
    }

    .form-layout-c .row {
        display: grid;
        gap: 10px;
    }

    .form-layout-c .row.two {
        grid-template-columns: 1fr 1fr;
    }

    .form-layout-c label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
    }

    .form-layout-c input:not([type="checkbox"]), .form-layout-c textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

    .form-layout-c .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 2px;
    }

    .form-layout-c button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 10px 14px;
    }

    @media (max-width: 760px) {
        .form-layout-c .row.two {
            grid-template-columns: 1fr;
        }
    }

/* Header base */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 12px) var(--space-x, 24px);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 16px);
  }

  /* Logo */
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }

  /* Navigation */
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 16px);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface, #333333);
    font-size: var(--font-size-base, 16px);
    line-height: var(--line-height-base, 1.5);
    padding: 8px 12px;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
    color: var(--link-hover, #1a73e8);
  }

  /* Burger button */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 110;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #333333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger active state */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile styles */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 100;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap, 16px) * 1.5);
      background: var(--surface-1, #ffffff);
      padding: 40px 24px;
      border-radius: var(--radius-xl, 16px);
      box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,0.12));
      min-width: 240px;
    }

    .nav-list a {
      font-size: calc(var(--font-size-base, 16px) * 1.25);
      padding: 12px 24px;
      width: 100%;
      text-align: center;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 2px;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .footer-nav .nav-list a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav .nav-list a:hover {
    color: #f5a623;
  }
  .contact-block {
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-item {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-legal {
    text-align: center;
    width: 100%;
  }
  .footer-legal .copyright {
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
  }
  .footer-legal .disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
  }
  .legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav .nav-list {
      justify-content: center;
    }
    .contact-list {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

/* Header base */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 12px) var(--space-x, 24px);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 16px);
  }

  /* Logo */
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }

  /* Navigation */
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 16px);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface, #333333);
    font-size: var(--font-size-base, 16px);
    line-height: var(--line-height-base, 1.5);
    padding: 8px 12px;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
    color: var(--link-hover, #1a73e8);
  }

  /* Burger button */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 110;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #333333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger active state */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile styles */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 100;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap, 16px) * 1.5);
      background: var(--surface-1, #ffffff);
      padding: 40px 24px;
      border-radius: var(--radius-xl, 16px);
      box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,0.12));
      min-width: 240px;
    }

    .nav-list a {
      font-size: calc(var(--font-size-base, 16px) * 1.25);
      padding: 12px 24px;
      width: 100%;
      text-align: center;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 2px;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .footer-nav .nav-list a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav .nav-list a:hover {
    color: #f5a623;
  }
  .contact-block {
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-item {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-legal {
    text-align: center;
    width: 100%;
  }
  .footer-legal .copyright {
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
  }
  .footer-legal .disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
  }
  .legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav .nav-list {
      justify-content: center;
    }
    .contact-list {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

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

    .terms-layout-c .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .terms-layout-c .section-head {
        margin-bottom: 14px;
    }

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

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

    .terms-layout-c details {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        margin-bottom: 10px;
    }

    .terms-layout-c summary {
        cursor: pointer;
        color: var(--brand);
        font-weight: 700;
    }

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

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

/* Header base */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 12px) var(--space-x, 24px);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 16px);
  }

  /* Logo */
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }

  /* Navigation */
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 16px);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface, #333333);
    font-size: var(--font-size-base, 16px);
    line-height: var(--line-height-base, 1.5);
    padding: 8px 12px;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
    color: var(--link-hover, #1a73e8);
  }

  /* Burger button */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 110;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #333333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger active state */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile styles */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 100;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap, 16px) * 1.5);
      background: var(--surface-1, #ffffff);
      padding: 40px 24px;
      border-radius: var(--radius-xl, 16px);
      box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,0.12));
      min-width: 240px;
    }

    .nav-list a {
      font-size: calc(var(--font-size-base, 16px) * 1.25);
      padding: 12px 24px;
      width: 100%;
      text-align: center;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 2px;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .footer-nav .nav-list a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav .nav-list a:hover {
    color: #f5a623;
  }
  .contact-block {
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-item {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-legal {
    text-align: center;
    width: 100%;
  }
  .footer-legal .copyright {
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
  }
  .footer-legal .disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
  }
  .legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav .nav-list {
      justify-content: center;
    }
    .contact-list {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

    .nfthank-v12 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

/* Header base */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 12px) var(--space-x, 24px);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 16px);
  }

  /* Logo */
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }

  /* Navigation */
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 16px);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface, #333333);
    font-size: var(--font-size-base, 16px);
    line-height: var(--line-height-base, 1.5);
    padding: 8px 12px;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
    color: var(--link-hover, #1a73e8);
  }

  /* Burger button */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 110;
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #333333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger active state */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile styles */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 100;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap, 16px) * 1.5);
      background: var(--surface-1, #ffffff);
      padding: 40px 24px;
      border-radius: var(--radius-xl, 16px);
      box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,0.12));
      min-width: 240px;
    }

    .nav-list a {
      font-size: calc(var(--font-size-base, 16px) * 1.25);
      padding: 12px 24px;
      width: 100%;
      text-align: center;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 2px;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .footer-nav .nav-list a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav .nav-list a:hover {
    color: #f5a623;
  }
  .contact-block {
    width: 100%;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-item {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-legal {
    text-align: center;
    width: 100%;
  }
  .footer-legal .copyright {
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
  }
  .footer-legal .disclaimer {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
  }
  .legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav .nav-list {
      justify-content: center;
    }
    .contact-list {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.nf404-v9 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .nf404-v9__card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .26);
        background: rgba(255, 255, 255, .08);
        padding: clamp(28px, 4vw, 46px);
    }

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

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

    .nf404-v9 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        color: var(--accent-contrast);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .45);
    }