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

  --max-w: 960px;
  --space-x: 1.2rem;
  --space-y: 1.5rem;
  --gap: 0.7rem;

  --radius-xl: 0.76rem;
  --radius-lg: 0.57rem;
  --radius-md: 0.4rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 1px 1px rgba(0,0,0,0.04);
  --shadow-md: 0 3px 16px rgba(0,0,0,0.05);
  --shadow-lg: 0 14px 20px rgba(0,0,0,0.06);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 500ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 2;

  --brand: #1a3c5e;
  --brand-contrast: #ffffff;
  --accent: #d97706;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f3f4f6;
  --neutral-300: #d1d5db;
  --neutral-600: #4b5563;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

  --bg-page: #ffffff;
  --fg-on-page: #111827;

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

  --surface-1: #ffffff;
  --surface-2: #f9fafb;
  --fg-on-surface: #111827;
  --border-on-surface: #d1d5db;

  --surface-light: #ffffff;
  --fg-on-surface-light: #111827;
  --border-on-surface-light: #e5e7eb;

  --bg-primary: #1a3c5e;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #142f4a;
  --ring: #d97706;

  --bg-accent: #d97706;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #b45309;

  --link: #1a3c5e;
  --link-hover: #d97706;

  --gradient-hero: linear-gradient(135deg, #1a3c5e 0%, #2a5a7a 100%);
  --gradient-accent: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
    align-items: center;
  }

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

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

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: var(--shadow-sm);
  }

  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

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

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: var(--space-y);
      align-items: stretch;
    }

    .nav-link {
      display: block;
      padding: var(--space-y) var(--space-x);
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      position: static;
      background: none;
      border: none;
      box-shadow: none;
      padding: 0;
    }

    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo a {
  font-size: 24px;
  font-weight: bold;
  color: #ecf0f1;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-nav a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #ffffff;
}
.footer-contact {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-legal {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #ffffff;
}
.footer-disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: #95a5a6;
  max-width: 800px;
}
.footer-disclaimer p {
  margin: 0;
}
@media (max-width: 600px) {
  .footer-nav ul {
    flex-direction: column;
    gap: 8px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 5px;
  }
  .footer-legal {
    flex-direction: column;
    gap: 5px;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

    .hero-arc-v5 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: calc(var(--gap) * 2);
        align-items: flex-end;
        justify-content: space-between;
    }

    .hero-arc-v5 .content {
        max-width: 66ch;
    }

    .hero-arc-v5 h1 {
        margin: .25rem 0;
        font-size: clamp(2.1rem, 5vw, 4rem);
        line-height: 1.02;
        letter-spacing: -.02em;
    }

    .hero-arc-v5 .subtitle {
        margin: 0 0 .5rem;
        opacity: .9;
        font-size: 1.05rem;
    }

    .hero-arc-v5 .desc {
        margin: 0;
        opacity: .8;
        max-width: 58ch;
    }

    .hero-arc-v5 .aside {
        min-width: 280px;
        max-width: 360px;
        display: grid;
        gap: var(--gap);
    }

    .hero-arc-v5 img {
        width: 100%;
        display: block;
        aspect-ratio: 4/5;
        object-fit: cover;
        border-radius: var(--radius-xl);
    }

    .hero-arc-v5 .actions {
        display: grid;
        gap: .7rem;
    }

    .hero-arc-v5 .actions a {
        display: block;
        text-align: center;
        padding: .66rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .hero-arc-v5 .actions a:nth-child(even) {
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .hero-arc-v5 .ticker {
        max-width: var(--max-w);
        margin: calc(var(--space-y) * 1.2) auto 0;
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
        padding-top: var(--space-y);
        border-top: 1px solid var(--neutral-600);
    }

    .hero-arc-v5 .ticker span {
        padding: .45rem .7rem;
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        font-size: .9rem;
    }

    @media (max-width: 940px) {
        .hero-arc-v5 .shell {
            flex-direction: column;
            align-items: stretch;
        }

        .hero-arc-v5 .aside {
            max-width: none;
        }

        .hero-arc-v5 img {
            aspect-ratio: 16/9;
        }
    }

.about-struct-v1 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.why-choose {

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

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

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

    .why-choose__top {
        display: grid;
        grid-template-columns:1.35fr 0.65fr;
        gap: clamp(14px, 2vw, 20px);
        align-items: start;
        margin-bottom: clamp(14px, 2.4vw, 26px);
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(26px, 4.6vw, 42px);
        line-height: 1.1;
        color: var(--fg-on-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: rgba(255, 255, 255, 0.8);
        max-width: 68ch;
    }

    .why-choose__stats {
        display: grid;
        gap: 12px;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
    }

    .why-choose__statValue {
        font-size: clamp(20px, 2.8vw, 28px);
        font-weight: 700;
        color: var(--fg-on-primary);
    }

    .why-choose__statLabel {
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.9rem;
    }

    .why-choose__list {
        display: grid;
        gap: 12px;
    }

    .why-choose__row {
        position: relative;
        display: grid;
        grid-template-columns:18px 1fr;
        gap: 12px;
        padding: clamp(14px, 2vw, 18px);
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
        will-change: transform;
    }

    .why-choose__row:hover {
        transform: translateY(-3px);
    }

    /* SHIMMER SWEEP */
    .why-choose__row::after {
        content: '';
        position: absolute;
        inset: -40px -60px;
        transform: translateX(-120%) rotate(12deg);
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);

        pointer-events: none;
    }

    .why-choose__row:hover::after {
        opacity: 1;
        animation: whyChooseShimmer 900ms var(--anim-ease) 1;
    }

    @keyframes whyChooseShimmer {
        0% {
            transform: translateX(-120%) rotate(12deg);
        }
        100% {
            transform: translateX(120%) rotate(12deg);
        }
    }

    .why-choose__bullet {
        width: 12px;
        height: 12px;
        border-radius: 999px;
        margin-top: 6px;
        background: var(--accent);
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
    }

    .why-choose__rowTitle {
        font-weight: 700;
        color: var(--fg-on-primary);
        margin-bottom: 6px;
    }

    .why-choose__rowText {
        color: rgba(255, 255, 255, 0.78);
        line-height: var(--line-height-base);
    }

    @media (max-width: 920px) {
        .why-choose__top {
            grid-template-columns:1fr;
        }
    }

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

        .why-choose__row::after {
            display: none;
        }
    }

.social-l2 {

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

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

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

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

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

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

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

    .social-l2__quote {
        display: none;
    }

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

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

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

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

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

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

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

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

.visual-path-c3 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .visual-path-c3__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .visual-path-c3__head {
        margin-bottom: 1rem;
    }

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

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

    .visual-path-c3__list {
        display: grid;
        gap: .8rem;
    }

    .visual-path-c3__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .visual-path-c3__meta {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        margin-bottom: .8rem;
    }

    .visual-path-c3__meta span {
        color: rgba(255, 255, 255, .78);
    }

    .visual-path-c3__content {
        display: grid;
        grid-template-columns: 13rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .visual-path-c3__content img {
        display: block;
        width: 100%;
        height: 10rem;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .visual-path-c3__content small {
        color: rgba(255, 255, 255, .76);
    }

    .visual-path-c3__content h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-path-c3__content p {
        margin: 0;
        color: rgba(255, 255, 255, .84);
    }

    @media (max-width: 680px) {
        .visual-path-c3__content {
            grid-template-columns: 1fr;
        }
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
    align-items: center;
  }

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

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

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: var(--shadow-sm);
  }

  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

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

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: var(--space-y);
      align-items: stretch;
    }

    .nav-link {
      display: block;
      padding: var(--space-y) var(--space-x);
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      position: static;
      background: none;
      border: none;
      box-shadow: none;
      padding: 0;
    }

    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo a {
  font-size: 24px;
  font-weight: bold;
  color: #ecf0f1;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-nav a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #ffffff;
}
.footer-contact {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-legal {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #ffffff;
}
.footer-disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: #95a5a6;
  max-width: 800px;
}
.footer-disclaimer p {
  margin: 0;
}
@media (max-width: 600px) {
  .footer-nav ul {
    flex-direction: column;
    gap: 8px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 5px;
  }
  .footer-legal {
    flex-direction: column;
    gap: 5px;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

    .bloglist-fresh-v5 .rows {
        display: grid;
        gap: .75rem;
    }

    .bloglist-fresh-v5 article {
        display: grid;
        grid-template-columns:160px 1fr;
        gap: var(--gap);
        padding: .8rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .bloglist-fresh-v5 img {
        width: 100%;
        height: 100%;
        min-height: 100px;
        object-fit: cover;
        border-radius: var(--radius-sm);
    }

    .bloglist-fresh-v5 h3 {
        margin: 0 0 .35rem;
    }

    .bloglist-fresh-v5 h3 a {
        text-decoration: none;
        color: var(--neutral-0);
    }

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

    .bloglist-fresh-v5 .more {
        margin-top: .55rem;
        display: inline-block;
        color: var(--accent);
        font-weight: 700;
        text-decoration: none;
    }

    @media (max-width: 680px) {
        .bloglist-fresh-v5 article {
            grid-template-columns:1fr;
        }
    }

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

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

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

        transform: translateY(-18px);
    }

    .index-recommendations-list__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: var(--neutral-600);
    }

    .index-recommendations-list__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-recommendations-list__list {
        display: grid;
        gap: 12px;
    }

    .index-recommendations-list__row {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-light);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

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

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

    .index-recommendations-list__icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-recommendations-list__title {
        font-weight: 900;
        font-size: 14px;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 30ch;
    }

    .index-recommendations-list__right {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex: 0 0 auto;
    }

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

    .index-recommendations-list__chev {
        width: 30px;
        height: 30px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 900;
        line-height: 1;
    }

    .index-recommendations-list__a {
        display: none;
        padding: 0 16px 14px;
        overflow: hidden;
    }

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

    .index-recommendations-list__actions {
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .index-recommendations-list__hint {
        font-size: 12px;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

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

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

    .index-recommendations-list__cta:hover {
        background: var(--bg-primary-hover);
    }

    @media (max-width: 560px) {
        .index-recommendations-list__tag {
            display: none;
        }
    }

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

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

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

    .cta-struct-v3 a {
        text-decoration: none
    }

    .cta-struct-v3 .center, .cta-struct-v3 .banner, .cta-struct-v3 .stack, .cta-struct-v3 .bar, .cta-struct-v3 .split, .cta-struct-v3 .duo article {
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .cta-struct-v3 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

    .cta-struct-v3 .split {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

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

    .cta-struct-v3 .actions a, .cta-struct-v3 .center a, .cta-struct-v3 .banner > a, .cta-struct-v3 .duo a {
        display: inline-flex;
        min-height: 2.35rem;
        padding: 0 .85rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .cta-struct-v3 .banner {
        display: grid;
        gap: .6rem
    }

    .cta-struct-v3 .numbers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: .5rem
    }

    .cta-struct-v3 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

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

    .cta-struct-v3 .duo article {
        display: grid;
        gap: .45rem
    }

    .cta-struct-v3 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .cta-struct-v3 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .cta-struct-v3 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .cta-struct-v3 .bar {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    @media (max-width: 820px) {
        .cta-struct-v3 .split, .cta-struct-v3 .bar, .cta-struct-v3 .duo {
            grid-template-columns:1fr
        }

        .cta-struct-v3 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .cta-struct-v3 .numbers {
            grid-template-columns:1fr
        }
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
    align-items: center;
  }

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

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

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: var(--shadow-sm);
  }

  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

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

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: var(--space-y);
      align-items: stretch;
    }

    .nav-link {
      display: block;
      padding: var(--space-y) var(--space-x);
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      position: static;
      background: none;
      border: none;
      box-shadow: none;
      padding: 0;
    }

    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo a {
  font-size: 24px;
  font-weight: bold;
  color: #ecf0f1;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-nav a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #ffffff;
}
.footer-contact {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-legal {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #ffffff;
}
.footer-disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: #95a5a6;
  max-width: 800px;
}
.footer-disclaimer p {
  margin: 0;
}
@media (max-width: 600px) {
  .footer-nav ul {
    flex-direction: column;
    gap: 8px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 5px;
  }
  .footer-legal {
    flex-direction: column;
    gap: 5px;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.blog-item {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        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-primary);
    }

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

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

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

.author {

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

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

    .author .author__content {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: clamp(32px, 5vw, 48px);
        align-items: center;
    }

    .author .author__image {
        width: clamp(150px, 22vw, 220px);
        height: clamp(150px, 22vw, 220px);
        border-radius: var(--radius-lg);
        overflow: hidden;
        flex-shrink: 0;
    }

    .author .author__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author .author__info h3 {
        font-size: clamp(26px, 4.5vw, 36px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .author .author__role {
        font-size: clamp(16px, 2.5vw, 18px);
        color: var(--bg-accent);
        margin: 0 0 1.25rem;
        font-weight: 600;
    }

    .author .author__bio {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0;
    }

    @media (max-width: 768px) {
        .author .author__content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
    align-items: center;
  }

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

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

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: var(--shadow-sm);
  }

  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

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

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: var(--space-y);
      align-items: stretch;
    }

    .nav-link {
      display: block;
      padding: var(--space-y) var(--space-x);
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      position: static;
      background: none;
      border: none;
      box-shadow: none;
      padding: 0;
    }

    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo a {
  font-size: 24px;
  font-weight: bold;
  color: #ecf0f1;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-nav a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #ffffff;
}
.footer-contact {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-legal {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #ffffff;
}
.footer-disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: #95a5a6;
  max-width: 800px;
}
.footer-disclaimer p {
  margin: 0;
}
@media (max-width: 600px) {
  .footer-nav ul {
    flex-direction: column;
    gap: 8px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 5px;
  }
  .footer-legal {
    flex-direction: column;
    gap: 5px;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.article-content-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.article-content-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.article-content-section__content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content-section__content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--fg-on-page);
}

.article-content-section__content p {
    max-width: 100%;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content ul,
.article-content-section__content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content-section__callout {
    margin-top: 2rem;
    padding: clamp(16px, 3vw, 24px);
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-on-surface);
}

.article-content-section__callout p {
    margin: 0;
    color: var(--fg-on-alt);
}

.article-content-section__actions {
    margin-top: 2rem;
    text-align: center;
}

.article-content-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
    align-items: center;
  }

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

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

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: var(--shadow-sm);
  }

  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

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

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: var(--space-y);
      align-items: stretch;
    }

    .nav-link {
      display: block;
      padding: var(--space-y) var(--space-x);
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      position: static;
      background: none;
      border: none;
      box-shadow: none;
      padding: 0;
    }

    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo a {
  font-size: 24px;
  font-weight: bold;
  color: #ecf0f1;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-nav a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #ffffff;
}
.footer-contact {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-legal {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #ffffff;
}
.footer-disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: #95a5a6;
  max-width: 800px;
}
.footer-disclaimer p {
  margin: 0;
}
@media (max-width: 600px) {
  .footer-nav ul {
    flex-direction: column;
    gap: 8px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 5px;
  }
  .footer-legal {
    flex-direction: column;
    gap: 5px;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

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

        transform: translateY(-18px);
    }

    .index-recommendations-list__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: var(--neutral-600);
    }

    .index-recommendations-list__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-recommendations-list__list {
        display: grid;
        gap: 12px;
    }

    .index-recommendations-list__row {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-light);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

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

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

    .index-recommendations-list__icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-recommendations-list__title {
        font-weight: 900;
        font-size: 14px;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 30ch;
    }

    .index-recommendations-list__right {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex: 0 0 auto;
    }

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

    .index-recommendations-list__chev {
        width: 30px;
        height: 30px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 900;
        line-height: 1;
    }

    .index-recommendations-list__a {
        display: none;
        padding: 0 16px 14px;
        overflow: hidden;
    }

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

    .index-recommendations-list__actions {
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .index-recommendations-list__hint {
        font-size: 12px;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

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

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

    .index-recommendations-list__cta:hover {
        background: var(--bg-primary-hover);
    }

    @media (max-width: 560px) {
        .index-recommendations-list__tag {
            display: none;
        }
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
    align-items: center;
  }

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

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

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: var(--shadow-sm);
  }

  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

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

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: var(--space-y);
      align-items: stretch;
    }

    .nav-link {
      display: block;
      padding: var(--space-y) var(--space-x);
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      position: static;
      background: none;
      border: none;
      box-shadow: none;
      padding: 0;
    }

    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo a {
  font-size: 24px;
  font-weight: bold;
  color: #ecf0f1;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-nav a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #ffffff;
}
.footer-contact {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-legal {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #ffffff;
}
.footer-disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: #95a5a6;
  max-width: 800px;
}
.footer-disclaimer p {
  margin: 0;
}
@media (max-width: 600px) {
  .footer-nav ul {
    flex-direction: column;
    gap: 8px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 5px;
  }
  .footer-legal {
    flex-direction: column;
    gap: 5px;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.nfform-v7 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .nfform-v7__form {
        max-width: 760px;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v7 p {
        margin: 0 0 2px;
        opacity: .92;
    }

    .nfform-v7 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v7 input:not([type='checkbox']),
    .nfform-v7 textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .nfform-v7__agree {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nfform-v7 button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

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

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

    .contacts-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3vw, 2.5rem);
    }

    .contacts-fresh-v6 .columns {
        display: flex;
        gap: var(--gap);
        overflow: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: .2rem;
    }

    .contacts-fresh-v6 article {
        min-width: 260px;
        scroll-snap-align: start;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .contacts-fresh-v6 h3 {
        margin: 0 0 .5rem;
    }

    .contacts-fresh-v6 p {
        margin: 0;
    }

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
    align-items: center;
  }

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

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

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: var(--shadow-sm);
  }

  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

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

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: var(--space-y);
      align-items: stretch;
    }

    .nav-link {
      display: block;
      padding: var(--space-y) var(--space-x);
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      position: static;
      background: none;
      border: none;
      box-shadow: none;
      padding: 0;
    }

    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo a {
  font-size: 24px;
  font-weight: bold;
  color: #ecf0f1;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-nav a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #ffffff;
}
.footer-contact {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-legal {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #ffffff;
}
.footer-disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: #95a5a6;
  max-width: 800px;
}
.footer-disclaimer p {
  margin: 0;
}
@media (max-width: 600px) {
  .footer-nav ul {
    flex-direction: column;
    gap: 8px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 5px;
  }
  .footer-legal {
    flex-direction: column;
    gap: 5px;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

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

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

    .terms-layout-e .rows {
        display: grid;
        gap: 10px;
    }

    .terms-layout-e article {
        border-left: 4px solid var(--brand);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        padding: 12px 12px 12px 14px;
        box-shadow: var(--shadow-sm);
    }

    .terms-layout-e .head h3 {
        margin: 0 0 8px;
    }

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
    align-items: center;
  }

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

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

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: var(--shadow-sm);
  }

  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

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

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: var(--space-y);
      align-items: stretch;
    }

    .nav-link {
      display: block;
      padding: var(--space-y) var(--space-x);
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      position: static;
      background: none;
      border: none;
      box-shadow: none;
      padding: 0;
    }

    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo a {
  font-size: 24px;
  font-weight: bold;
  color: #ecf0f1;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-nav a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #ffffff;
}
.footer-contact {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-legal {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #ffffff;
}
.footer-disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: #95a5a6;
  max-width: 800px;
}
.footer-disclaimer p {
  margin: 0;
}
@media (max-width: 600px) {
  .footer-nav ul {
    flex-direction: column;
    gap: 8px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 5px;
  }
  .footer-legal {
    flex-direction: column;
    gap: 5px;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.policy-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

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

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

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
    align-items: center;
  }

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

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

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: var(--shadow-sm);
  }

  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

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

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: var(--space-y);
      align-items: stretch;
    }

    .nav-link {
      display: block;
      padding: var(--space-y) var(--space-x);
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      position: static;
      background: none;
      border: none;
      box-shadow: none;
      padding: 0;
    }

    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo a {
  font-size: 24px;
  font-weight: bold;
  color: #ecf0f1;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-nav a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #ffffff;
}
.footer-contact {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-legal {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #ffffff;
}
.footer-disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: #95a5a6;
  max-width: 800px;
}
.footer-disclaimer p {
  margin: 0;
}
@media (max-width: 600px) {
  .footer-nav ul {
    flex-direction: column;
    gap: 8px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 5px;
  }
  .footer-legal {
    flex-direction: column;
    gap: 5px;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.thank-mode-a {
        padding: clamp(56px, 10vw, 110px) 18px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .thank-mode-a .box {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

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

    .thank-mode-a p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .thank-mode-a a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
    align-items: center;
  }

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

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

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: var(--shadow-sm);
  }

  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

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

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: var(--space-y);
      align-items: stretch;
    }

    .nav-link {
      display: block;
      padding: var(--space-y) var(--space-x);
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      position: static;
      background: none;
      border: none;
      box-shadow: none;
      padding: 0;
    }

    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo a {
  font-size: 24px;
  font-weight: bold;
  color: #ecf0f1;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-nav a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #ffffff;
}
.footer-contact {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-legal {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #ffffff;
}
.footer-disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: #95a5a6;
  max-width: 800px;
}
.footer-disclaimer p {
  margin: 0;
}
@media (max-width: 600px) {
  .footer-nav ul {
    flex-direction: column;
    gap: 8px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 5px;
  }
  .footer-legal {
    flex-direction: column;
    gap: 5px;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.nf404-v7 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .nf404-v7__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .nf404-v7 h1 {
        margin: 0;
        font-size: clamp(34px, 6vw, 58px);
    }

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

    .nf404-v7 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }