:root {
  --font-family: "Raleway", sans-serif;
  --font-size-base: 17.1px;
  --line-height-base: 1.39;

  --max-w: 1360px;
  --space-x: 1.48rem;
  --space-y: 1.13rem;
  --gap: 2.13rem;

  --radius-xl: 1.28rem;
  --radius-lg: 0.96rem;
  --radius-md: 0.55rem;
  --radius-sm: 0.33rem;

  --shadow-sm: 0 3px 5px rgba(0,0,0,0.18);
  --shadow-md: 0 8px 22px rgba(0,0,0,0.23);
  --shadow-lg: 0 30px 50px rgba(0,0,0,0.28);

  --overlay: rgba(0,0,0,0.55);
  --anim-duration: 200ms;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #1A3C6E;
  --brand-contrast: #FFFFFF;
  --accent: #E85D3A;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F2F4F7;
  --neutral-300: #C8CDD4;
  --neutral-600: #6B7280;
  --neutral-800: #2D3748;
  --neutral-900: #1A202C;

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

  --bg-alt: #EDF2F7;
  --fg-on-alt: #2D3748;

  --surface-1: #FFFFFF;
  --surface-2: #F7F8FA;
  --fg-on-surface: #1A202C;
  --border-on-surface: #E2E6EC;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #2D3748;
  --border-on-surface-light: #E8EBF0;

  --bg-primary: #1A3C6E;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #14305A;
  --ring: #1A3C6E;

  --bg-accent: #E85D3A;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #D04A2A;

  --link: #1A3C6E;
  --link-hover: #E85D3A;

  --gradient-hero: linear-gradient(135deg, #1A3C6E 0%, #2B5A8C 100%);
  --gradient-accent: linear-gradient(135deg, #E85D3A 0%, #F27A5A 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, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: relative;
    z-index: 100;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.5rem) var(--space-x, 1rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #e63946);
    letter-spacing: 0.02em;
    line-height: 1.2;
  }

  .cta-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent, #e63946);
    color: var(--fg-on-accent, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .cta-link:hover {
    background: var(--bg-accent-hover, #c1121f);
  }

  .header-bottom {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 1rem) var(--space-y, 0.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

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

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333333);
    font-size: var(--font-size-base, 1rem);
    font-weight: 500;
    padding: 0.25rem 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #e63946);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover {
    color: var(--brand, #e63946);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  @media (max-width: 767px) {
    .header-top {
      padding: 0.5rem 1rem;
    }

    .header-bottom {
      justify-content: flex-start;
      padding: 0 1rem 0.5rem;
    }

    .burger {
      display: flex;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 99;
    }

    .nav-menu.open {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0.5rem 0;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1.5rem;
      border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover {
      background: var(--surface-light, #f5f5f5);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .footer-contact div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: center;
  }
  .footer-contact span {
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #999;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav, .footer-legal {
      justify-content: center;
    }
    .footer-contact div {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.hero {
        position: relative;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #000000;
        overflow: hidden;
    }

    .hero--compact {
        min-height: 400px;
    }

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

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

    .hero--tint .hero__overlay {
        opacity: 0.55;
    }

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

    .hero--tint .hero__content {
        background: var(--chip-bg);
        border-radius: var(--radius-lg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

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

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

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

    .values-cloud-c5__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .values-cloud-c5__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .values-cloud-c5__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

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

    .values-cloud-c5__cloud {
        display: flex;
        gap: .8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .values-cloud-c5__cloud article {
        width: min(16rem, 100%);
        padding: 1rem;
        border-radius: 1.5rem;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-cloud-c5__cloud p {
        margin: .45rem 0 0;

    }

    .values-cloud-c5__cloud span {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

.plans-lv4 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .plans-lv4__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .plans-lv4__head {
        text-align: center;
        margin-bottom: 14px;
    }

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

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

    .plans-lv4__stack {
        display: grid;
        gap: 10px;
    }

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

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

    .plans-lv4__line h3 {
        margin: 0;
    }

    .plans-lv4__line p {
        margin: 0;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv4__chips {
        margin-top: 8px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .plans-lv4__chips span {
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        padding: 5px 9px;
        font-size: .88rem;
    }

    .plans-lv4__stack button {
        margin-top: 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 11px;
    }

.why-choose {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
    }

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

    .why-choose .why-choose__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

        transform: translateY(20px);
    }

    .why-choose h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .why-choose .why-choose__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .why-choose .why-choose__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose .why-choose__item {
        background: var(--fg-on-primary);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        transition: transform var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose .why-choose__item:hover {
        transform: translateY(-4px);
    }

    .why-choose .why-choose__number {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

    .why-choose .why-choose__item h3 {
        font-size: clamp(18px, 2.2vw, 22px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .why-choose .why-choose__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

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

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

    .next-pins-l4__head {
        margin-bottom: 1.1rem;
    }

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

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

    .next-pins-l4__head span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
        max-width: 38rem;
    }

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

    .next-pins-l4__pins article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .next-pins-l4__pins div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--surface-2);
    }

    .next-pins-l4__pins h3 {
        margin: .75rem 0 .35rem;
    }

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

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

header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: relative;
    z-index: 100;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.5rem) var(--space-x, 1rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #e63946);
    letter-spacing: 0.02em;
    line-height: 1.2;
  }

  .cta-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent, #e63946);
    color: var(--fg-on-accent, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .cta-link:hover {
    background: var(--bg-accent-hover, #c1121f);
  }

  .header-bottom {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 1rem) var(--space-y, 0.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

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

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333333);
    font-size: var(--font-size-base, 1rem);
    font-weight: 500;
    padding: 0.25rem 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #e63946);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover {
    color: var(--brand, #e63946);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  @media (max-width: 767px) {
    .header-top {
      padding: 0.5rem 1rem;
    }

    .header-bottom {
      justify-content: flex-start;
      padding: 0 1rem 0.5rem;
    }

    .burger {
      display: flex;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 99;
    }

    .nav-menu.open {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0.5rem 0;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1.5rem;
      border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover {
      background: var(--surface-light, #f5f5f5);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .footer-contact div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: center;
  }
  .footer-contact span {
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #999;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav, .footer-legal {
      justify-content: center;
    }
    .footer-contact div {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.product-list {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 40px);
    }

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

    .product-list .product-list__h {
        text-align: center;
        margin-bottom: clamp(24px, 4vw, 48px);
    }

    .product-list h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .product-list .product-list__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        opacity: 0.9;
        margin: 0;
    }

    .product-list .product-list__filters {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
        margin-bottom: clamp(32px, 5vw, 48px);
        justify-content: center;
    }

    /* Si randomNumber es par (2) - primer hijo recibe order: 2 */
    .product-list .product-list__filters > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-list .product-list__filter {
        padding: 0.625rem 1.25rem;
        border-radius: var(--radius-lg);
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        backdrop-filter: blur(8px);
        font-weight: 500;
    }

    .product-list .product-list__filter:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }

    .product-list .product-list__masonry {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: clamp(20px, 3vw, 32px);
        grid-auto-rows: auto;
    }

    /* Si randomNumber es par (2) - primer hijo recibe order: 2 */
    .product-list .product-list__masonry > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-list .product-list__card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        flex-direction: column;
    }

    .product-list .product-list__card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.4);
    }

    .product-list .product-list__image-wrapper {
        position: relative;
        width: 100%;
        height: 220px;
        overflow: hidden;
    }

    .product-list .product-list__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__image {
        transform: scale(1.1);
    }

    .product-list .product-list__badge {
        position: absolute;
        top: 12px;
        right: 12px;
        padding: 0.375rem 0.75rem;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .product-list .product-list__content {
        padding: clamp(20px, 2.5vw, 28px);
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .product-list h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.4vw, 22px);
        color: var(--fg-on-primary);
        font-weight: 600;
    }

    .product-list .product-list__description {
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.6;
        margin: 0 0 1.25rem;
        font-size: 0.9rem;
        flex: 1;
    }

    .product-list .product-list__footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        margin-top: auto;
    }

    .product-list .product-list__price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--fg-on-primary);
        margin: 0;
    }

    .product-list .product-list__btn {
        padding: 0.625rem 1.25rem;
        border-radius: var(--radius-md);
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        font-size: 0.875rem;
        white-space: nowrap;
    }

    .product-list .product-list__btn:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 767px) {
        .product-list .product-list__masonry {
            grid-template-columns: 1fr;
        }

        .product-list .product-list__footer {
            flex-direction: column;
            align-items: stretch;
        }

        .product-list .product-list__btn {
            width: 100%;
            text-align: center;
        }
    }

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

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

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

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

    .education-struct-v3 article, .education-struct-v3 .row, .education-struct-v3 details, .education-struct-v3 .program {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

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

    .education-struct-v3 .grid a, .education-struct-v3 .tiers a, .education-struct-v3 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v3 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v3 .path article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .education-struct-v3 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v3 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

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

    .education-struct-v3 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v3 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

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

    .education-struct-v3 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v3 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v3 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v3 .grid, .education-struct-v3 .tiers, .education-struct-v3 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v3 .grid, .education-struct-v3 .tiers, .education-struct-v3 .combo, .education-struct-v3 .row {
            grid-template-columns:1fr
        }
    }

.capabilities-alt {

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

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

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

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

    }

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

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

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

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

        transform: translateX(-50px);
    }

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

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: relative;
    z-index: 100;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.5rem) var(--space-x, 1rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #e63946);
    letter-spacing: 0.02em;
    line-height: 1.2;
  }

  .cta-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent, #e63946);
    color: var(--fg-on-accent, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .cta-link:hover {
    background: var(--bg-accent-hover, #c1121f);
  }

  .header-bottom {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 1rem) var(--space-y, 0.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

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

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333333);
    font-size: var(--font-size-base, 1rem);
    font-weight: 500;
    padding: 0.25rem 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #e63946);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover {
    color: var(--brand, #e63946);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  @media (max-width: 767px) {
    .header-top {
      padding: 0.5rem 1rem;
    }

    .header-bottom {
      justify-content: flex-start;
      padding: 0 1rem 0.5rem;
    }

    .burger {
      display: flex;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 99;
    }

    .nav-menu.open {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0.5rem 0;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1.5rem;
      border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover {
      background: var(--surface-light, #f5f5f5);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .footer-contact div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: center;
  }
  .footer-contact span {
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #999;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav, .footer-legal {
      justify-content: center;
    }
    .footer-contact div {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.product-item {

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

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

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

        /* Si randomNumber es 2 (par) -> order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .product-item .product-item__main-image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

    .product-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-600);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__description ul {
        list-style: disc;
        padding-left: 1.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__description ul li {
        margin-bottom: 0.5rem;
        color: var(--neutral-800);
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Si randomNumber es 2 (par) -> order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--bg-page);
        color: var(--fg-on-page);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: relative;
    z-index: 100;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.5rem) var(--space-x, 1rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #e63946);
    letter-spacing: 0.02em;
    line-height: 1.2;
  }

  .cta-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent, #e63946);
    color: var(--fg-on-accent, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .cta-link:hover {
    background: var(--bg-accent-hover, #c1121f);
  }

  .header-bottom {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 1rem) var(--space-y, 0.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

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

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333333);
    font-size: var(--font-size-base, 1rem);
    font-weight: 500;
    padding: 0.25rem 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #e63946);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover {
    color: var(--brand, #e63946);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  @media (max-width: 767px) {
    .header-top {
      padding: 0.5rem 1rem;
    }

    .header-bottom {
      justify-content: flex-start;
      padding: 0 1rem 0.5rem;
    }

    .burger {
      display: flex;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 99;
    }

    .nav-menu.open {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0.5rem 0;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1.5rem;
      border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover {
      background: var(--surface-light, #f5f5f5);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .footer-contact div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: center;
  }
  .footer-contact span {
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #999;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav, .footer-legal {
      justify-content: center;
    }
    .footer-contact div {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.product-item--colored-v5 {

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

.product-item__inner {
    max-width: 720px;
    margin: 0 auto;
}

.product-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.75);
    box-shadow: var(--shadow-lg);
}

.product-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 8px;
}

.product-item__header h1 {
    margin: 0;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

.product-item__price {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
}

.product-item__desc {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--neutral-200);
}

.product-item__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.product-item__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--fg-on-accent);
}

.product-item__sku {
    opacity: 0.9;
}

header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: relative;
    z-index: 100;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.5rem) var(--space-x, 1rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #e63946);
    letter-spacing: 0.02em;
    line-height: 1.2;
  }

  .cta-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent, #e63946);
    color: var(--fg-on-accent, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .cta-link:hover {
    background: var(--bg-accent-hover, #c1121f);
  }

  .header-bottom {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 1rem) var(--space-y, 0.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

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

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333333);
    font-size: var(--font-size-base, 1rem);
    font-weight: 500;
    padding: 0.25rem 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #e63946);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover {
    color: var(--brand, #e63946);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  @media (max-width: 767px) {
    .header-top {
      padding: 0.5rem 1rem;
    }

    .header-bottom {
      justify-content: flex-start;
      padding: 0 1rem 0.5rem;
    }

    .burger {
      display: flex;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 99;
    }

    .nav-menu.open {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0.5rem 0;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1.5rem;
      border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover {
      background: var(--surface-light, #f5f5f5);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .footer-contact div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: center;
  }
  .footer-contact span {
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #999;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav, .footer-legal {
      justify-content: center;
    }
    .footer-contact div {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

    .form-layout-f .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-f .boxed {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .form-layout-f .group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

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

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

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

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

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

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

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

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

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

    .education-struct-v3 article, .education-struct-v3 .row, .education-struct-v3 details, .education-struct-v3 .program {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

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

    .education-struct-v3 .grid a, .education-struct-v3 .tiers a, .education-struct-v3 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v3 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v3 .path article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .education-struct-v3 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v3 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

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

    .education-struct-v3 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v3 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

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

    .education-struct-v3 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v3 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v3 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v3 .grid, .education-struct-v3 .tiers, .education-struct-v3 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v3 .grid, .education-struct-v3 .tiers, .education-struct-v3 .combo, .education-struct-v3 .row {
            grid-template-columns:1fr
        }
    }

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

    .nfcontacts-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .nfcontacts-v8__intro p {
        margin: 0;
        color: var(--neutral-600);
    }

    .nfcontacts-v8__intro h2 {
        margin: 7px 0;
        font-size: clamp(28px, 4vw, 42px);
        color: var(--neutral-900);
    }

    .nfcontacts-v8__intro span {
        color: var(--neutral-600);
    }

    .nfcontacts-v8__cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: var(--gap);
    }

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

    .nfcontacts-v8__cards h3 {
        margin: 0 0 6px;
    }

    .nfcontacts-v8__cards p {
        margin: 0;
        font-weight: 700;
    }

    .nfcontacts-v8__cards small {
        display: block;
        margin-top: 5px;
        color: var(--neutral-600);
    }

    .nfcontacts-v8__cards a {
        display: inline-block;
        margin-top: 8px;
        color: var(--link);
        text-decoration: none;
    }

.faq-fresh-v4 {
        padding: calc(var(--space-y) * 2.7) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .faq-fresh-v4 .shell {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap);
    }

    .faq-fresh-v4 .cover {
        padding: 1.1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        align-self: start;
    }

    .faq-fresh-v4 .cover h2 {
        margin: 0 0 .5rem;
    }

    .faq-fresh-v4 .cover p {
        margin: 0;
        opacity: .9;
    }

    .faq-fresh-v4 .rows {
        display: grid;
        gap: .75rem;
    }

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

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

    .faq-fresh-v4 details p {
        margin: .65rem 0 0;
        opacity: .9;
    }

    @media (max-width: 860px) {
        .faq-fresh-v4 .shell {
            grid-template-columns:1fr;
        }
    }

header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: relative;
    z-index: 100;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.5rem) var(--space-x, 1rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #e63946);
    letter-spacing: 0.02em;
    line-height: 1.2;
  }

  .cta-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent, #e63946);
    color: var(--fg-on-accent, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .cta-link:hover {
    background: var(--bg-accent-hover, #c1121f);
  }

  .header-bottom {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 1rem) var(--space-y, 0.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

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

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333333);
    font-size: var(--font-size-base, 1rem);
    font-weight: 500;
    padding: 0.25rem 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #e63946);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover {
    color: var(--brand, #e63946);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  @media (max-width: 767px) {
    .header-top {
      padding: 0.5rem 1rem;
    }

    .header-bottom {
      justify-content: flex-start;
      padding: 0 1rem 0.5rem;
    }

    .burger {
      display: flex;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 99;
    }

    .nav-menu.open {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0.5rem 0;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1.5rem;
      border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover {
      background: var(--surface-light, #f5f5f5);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .footer-contact div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: center;
  }
  .footer-contact span {
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #999;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav, .footer-legal {
      justify-content: center;
    }
    .footer-contact div {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: relative;
    z-index: 100;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.5rem) var(--space-x, 1rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #e63946);
    letter-spacing: 0.02em;
    line-height: 1.2;
  }

  .cta-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent, #e63946);
    color: var(--fg-on-accent, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .cta-link:hover {
    background: var(--bg-accent-hover, #c1121f);
  }

  .header-bottom {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 1rem) var(--space-y, 0.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

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

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333333);
    font-size: var(--font-size-base, 1rem);
    font-weight: 500;
    padding: 0.25rem 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #e63946);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover {
    color: var(--brand, #e63946);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  @media (max-width: 767px) {
    .header-top {
      padding: 0.5rem 1rem;
    }

    .header-bottom {
      justify-content: flex-start;
      padding: 0 1rem 0.5rem;
    }

    .burger {
      display: flex;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 99;
    }

    .nav-menu.open {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0.5rem 0;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1.5rem;
      border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover {
      background: var(--surface-light, #f5f5f5);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .footer-contact div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: center;
  }
  .footer-contact span {
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #999;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav, .footer-legal {
      justify-content: center;
    }
    .footer-contact div {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

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

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

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

    .policy-layout-d .timeline {
        border-left: 3px solid var(--brand);
        padding-left: 14px;
        display: grid;
        gap: 12px;
    }

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

    .policy-layout-d .meta {
        margin: 0;
        color: var(--brand);
        font-size: .9rem;
        font-weight: 600;
    }

    .policy-layout-d h3 {
        margin: 7px 0;
    }

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

header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: relative;
    z-index: 100;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.5rem) var(--space-x, 1rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #e63946);
    letter-spacing: 0.02em;
    line-height: 1.2;
  }

  .cta-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent, #e63946);
    color: var(--fg-on-accent, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .cta-link:hover {
    background: var(--bg-accent-hover, #c1121f);
  }

  .header-bottom {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 1rem) var(--space-y, 0.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

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

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333333);
    font-size: var(--font-size-base, 1rem);
    font-weight: 500;
    padding: 0.25rem 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #e63946);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover {
    color: var(--brand, #e63946);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  @media (max-width: 767px) {
    .header-top {
      padding: 0.5rem 1rem;
    }

    .header-bottom {
      justify-content: flex-start;
      padding: 0 1rem 0.5rem;
    }

    .burger {
      display: flex;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 99;
    }

    .nav-menu.open {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0.5rem 0;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1.5rem;
      border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover {
      background: var(--surface-light, #f5f5f5);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .footer-contact div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: center;
  }
  .footer-contact span {
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #999;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav, .footer-legal {
      justify-content: center;
    }
    .footer-contact div {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.thank-mode-b {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .thank-mode-b .card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: var(--surface-1);
        box-shadow: var(--shadow-lg);
    }

    .thank-mode-b h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 54px);
        color: var(--brand);
    }

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

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

header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: relative;
    z-index: 100;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.5rem) var(--space-x, 1rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #e63946);
    letter-spacing: 0.02em;
    line-height: 1.2;
  }

  .cta-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent, #e63946);
    color: var(--fg-on-accent, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .cta-link:hover {
    background: var(--bg-accent-hover, #c1121f);
  }

  .header-bottom {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 1rem) var(--space-y, 0.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

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

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333333);
    font-size: var(--font-size-base, 1rem);
    font-weight: 500;
    padding: 0.25rem 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #e63946);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover {
    color: var(--brand, #e63946);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  @media (max-width: 767px) {
    .header-top {
      padding: 0.5rem 1rem;
    }

    .header-bottom {
      justify-content: flex-start;
      padding: 0 1rem 0.5rem;
    }

    .burger {
      display: flex;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 99;
    }

    .nav-menu.open {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0.5rem 0;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1.5rem;
      border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover {
      background: var(--surface-light, #f5f5f5);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .footer-contact div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: center;
  }
  .footer-contact span {
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #999;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav, .footer-legal {
      justify-content: center;
    }
    .footer-contact div {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.err-slab-e {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 14px, var(--neutral-0) 14px, var(--neutral-0) 28px);
        color: var(--fg-on-page);
    }

    .err-slab-e .inner {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(26px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

    .err-slab-e a {
        display: inline-block;
        margin-top: 16px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }