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

  --max-w: 840px;
  --space-x: 1.1rem;
  --space-y: 1.5rem;
  --gap: 0.67rem;

  --radius-xl: 0.75rem;
  --radius-lg: 0.46rem;
  --radius-md: 0.34rem;
  --radius-sm: 0.19rem;

  --shadow-sm: 0 0px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 14px 26px rgba(0,0,0,0.1);

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

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

  --neutral-0: #ffffff;
  --neutral-100: #f8f9fa;
  --neutral-300: #dee2e6;
  --neutral-600: #6c757d;
  --neutral-800: #343a40;
  --neutral-900: #212529;

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

  --bg-alt: #f8f9fa;
  --fg-on-alt: #343a40;

  --surface-1: #ffffff;
  --surface-2: #f8f9fa;
  --fg-on-surface: #212529;
  --border-on-surface: #dee2e6;

  --surface-light: #ffffff;
  --fg-on-surface-light: #343a40;
  --border-on-surface-light: #dee2e6;

  --bg-primary: #1a5fb4;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #0d4a9c;
  --ring: rgba(26, 95, 180, 0.4);

  --bg-accent: #fef3e9;
  --fg-on-accent: #8c4a0f;
  --bg-accent-hover: #d35400;

  --link: #1a5fb4;
  --link-hover: #0d4a9c;

  --gradient-hero: linear-gradient(135deg, #1a5fb4 0%, #0d4a9c 100%);
  --gradient-accent: linear-gradient(135deg, #e67e22 0%, #d35400 100%);

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

.header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  background-color: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}
.nav-link {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.button-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.button-cta:hover {
  background-color: var(--bg-accent-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav-link {
    display: block;
    width: 100%;
    padding: var(--space-y) var(--space-x);
  }
  .button-cta {
    width: 100%;
    text-align: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
  }
  .footer-legal a {
    text-decoration: none;
    color: #666;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

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

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

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

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

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

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

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

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

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

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

.intro-cardinal-c13 {
        padding: clamp(3.8rem, 8vw, 6.9rem) var(--space-x);
        background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, .16), transparent 30%), var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .intro-cardinal-c13__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1rem;
        align-items: center;
    }

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

    .intro-cardinal-c13__copy h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.8rem);
        line-height: 1;
    }

    .intro-cardinal-c13__copy strong {
        display: block;
        margin-top: .7rem;
    }

    .intro-cardinal-c13__copy span {
        display: block;
        margin-top: .9rem;

        max-width: 38rem;
    }

    .intro-cardinal-c13__cards {
        display: grid;
        gap: .75rem;
    }

    .intro-cardinal-c13__cards div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

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

.values-grid-l2 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .values-grid-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-grid-l2__head {
        margin-bottom: 1.1rem;
    }

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

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

    .values-grid-l2__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .values-grid-l2__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-grid-l2__grid i {
        font-style: normal;
    }

    .values-grid-l2__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-grid-l2__grid p {
        margin: 0;
        color: var(--neutral-600);
    }

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

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

.visual-column-l6 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .visual-column-l6__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .visual-column-l6__head {
        margin-bottom: 1rem;
    }

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

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

    .visual-column-l6__list {
        display: grid;
        gap: .8rem;
    }

    .visual-column-l6__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .visual-column-l6__meta span {
        color: var(--neutral-600);
    }

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

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

    .visual-column-l6__content small {
        color: var(--neutral-600);
    }

    .visual-column-l6__content h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-column-l6__content p {
        margin: 0;
        color: var(--neutral-600);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  background-color: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}
.nav-link {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.button-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.button-cta:hover {
  background-color: var(--bg-accent-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav-link {
    display: block;
    width: 100%;
    padding: var(--space-y) var(--space-x);
  }
  .button-cta {
    width: 100%;
    text-align: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
  }
  .footer-legal a {
    text-decoration: none;
    color: #666;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

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

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

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

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

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

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

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

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

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

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

.product-list--light-v6 {

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

.product-list__inner {
    max-width: 640px;
    margin: 0 auto;
}

.product-list__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
}

.product-list__list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.product-list__row {
    display: grid;
    grid-template-columns: minmax(0,1.6fr) auto;
    gap: 12px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.product-list__row:first-child {
    border-top: none;
}

.product-list__row-name {
    font-size: 0.9rem;
    color: var(--neutral-800);
}

.product-list__row-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bg-primary);
}

.education-struct-v4 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-primary);
        color: var(--fg-on-primary)
    }

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

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

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

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

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

    .education-struct-v4 .grid a, .education-struct-v4 .tiers a, .education-struct-v4 .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-v4 .path {
        display: grid;
        gap: .65rem
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.features-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

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

    .features-struct-v2 h2, .features-struct-v2 h3, .features-struct-v2 p {
        margin: 0
    }

    .features-struct-v2 .head {
        display: grid;
        gap: calc(var(--gap) * .35)
    }

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

    .features-struct-v2 article {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .9rem;
        display: grid;
        gap: .5rem
    }

    .features-struct-v2 .icon {
        min-height: 2rem;
        min-width: 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-1);
        border-radius: var(--radius-sm)
    }

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

    .features-struct-v2 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

    .features-struct-v2 .chips {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem
    }

    .features-struct-v2 .chips span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v2 .list {
        display: grid;
        gap: .6rem
    }

    .features-struct-v2 .list div {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v2 .timeline {
        display: grid;
        gap: .7rem
    }

    .features-struct-v2 .timeline article {
        position: relative;
        padding-left: 1.2rem
    }

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

    .features-struct-v2 .side img, .features-struct-v2 .media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .features-struct-v2 .table {
        display: grid;
        gap: .45rem
    }

    .features-struct-v2 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .5rem;
        padding: .65rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v2 .cards {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v2 .cta {
        display: flex;
        justify-content: flex-start
    }

    .features-struct-v2 .split {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v2 details {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .features-struct-v2 .grid, .features-struct-v2 .cards {
            grid-template-columns:1fr 1fr
        }

        .features-struct-v2 .layout, .features-struct-v2 .split {
            grid-template-columns:1fr
        }
    }

    @media (max-width: 680px) {
        .features-struct-v2 .grid, .features-struct-v2 .cards, .features-struct-v2 .row {
            grid-template-columns:1fr
        }
    }

.header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  background-color: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}
.nav-link {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.button-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.button-cta:hover {
  background-color: var(--bg-accent-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav-link {
    display: block;
    width: 100%;
    padding: var(--space-y) var(--space-x);
  }
  .button-cta {
    width: 100%;
    text-align: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
  }
  .footer-legal a {
    text-decoration: none;
    color: #666;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery--colored-v5 {
    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

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

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

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

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

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

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

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

.header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  background-color: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}
.nav-link {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.button-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.button-cta:hover {
  background-color: var(--bg-accent-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav-link {
    display: block;
    width: 100%;
    padding: var(--space-y) var(--space-x);
  }
  .button-cta {
    width: 100%;
    text-align: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
  }
  .footer-legal a {
    text-decoration: none;
    color: #666;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

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

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

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

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

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

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

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

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

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

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

.product-item {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        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 par (2) - el primer hijo obtiene 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-primary);
    }

    .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-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

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

    /* Si randomNumber es par (2) - el primer hijo obtiene 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(--gradient-hero);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
    }

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

.header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  background-color: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}
.nav-link {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.button-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.button-cta:hover {
  background-color: var(--bg-accent-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav-link {
    display: block;
    width: 100%;
    padding: var(--space-y) var(--space-x);
  }
  .button-cta {
    width: 100%;
    text-align: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
  }
  .footer-legal a {
    text-decoration: none;
    color: #666;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

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

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

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

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

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

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

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

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

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

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

.product-item {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        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 par (2) - el primer hijo obtiene 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-primary);
    }

    .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-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

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

    /* Si randomNumber es par (2) - el primer hijo obtiene 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(--gradient-hero);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
    }

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

.story-column-l4 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .story-column-l4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

    .story-column-l4__copy p:first-child {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .story-column-l4__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-column-l4__copy strong {
        display: block;
        margin-top: .8rem;
    }

    .story-column-l4__copy p {
        color: var(--neutral-600);
    }

    .story-column-l4__stats {
        display: grid;
        gap: .75rem;
    }

    .story-column-l4__stats div {
        padding: .9rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-column-l4__stats span {
        display: block;
        margin-top: .25rem;
        color: var(--neutral-600);
    }

    @media (max-width: 820px) {
        .story-column-l4__wrap {
            grid-template-columns: 1fr;
        }
    }

.header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  background-color: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}
.nav-link {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.button-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.button-cta:hover {
  background-color: var(--bg-accent-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav-link {
    display: block;
    width: 100%;
    padding: var(--space-y) var(--space-x);
  }
  .button-cta {
    width: 100%;
    text-align: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
  }
  .footer-legal a {
    text-decoration: none;
    color: #666;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.education-struct-v4 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-primary);
        color: var(--fg-on-primary)
    }

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

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

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

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

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

    .education-struct-v4 .grid a, .education-struct-v4 .tiers a, .education-struct-v4 .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-v4 .path {
        display: grid;
        gap: .65rem
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .contacts-fresh-v5 .head p {
        margin: .35rem 0 0;
        opacity: .85;
    }

    .contacts-fresh-v5 .stack {
        display: grid;
        gap: .7rem;
    }

    .contacts-fresh-v5 details {
        background: var(--chip-bg);
        border-radius: var(--radius-md);
        padding: .8rem 1rem;
    }

    .contacts-fresh-v5 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .contacts-fresh-v5 .inside {
        display: grid;
        gap: .4rem;
        padding-top: .6rem;
    }

    .contacts-fresh-v5 .inside p {
        margin: 0;
    }

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

.header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  background-color: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}
.nav-link {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.button-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.button-cta:hover {
  background-color: var(--bg-accent-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav-link {
    display: block;
    width: 100%;
    padding: var(--space-y) var(--space-x);
  }
  .button-cta {
    width: 100%;
    text-align: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
  }
  .footer-legal a {
    text-decoration: none;
    color: #666;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  background-color: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}
.nav-link {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.button-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.button-cta:hover {
  background-color: var(--bg-accent-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav-link {
    display: block;
    width: 100%;
    padding: var(--space-y) var(--space-x);
  }
  .button-cta {
    width: 100%;
    text-align: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
  }
  .footer-legal a {
    text-decoration: none;
    color: #666;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  background-color: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}
.nav-link {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.button-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.button-cta:hover {
  background-color: var(--bg-accent-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav-link {
    display: block;
    width: 100%;
    padding: var(--space-y) var(--space-x);
  }
  .button-cta {
    width: 100%;
    text-align: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
  }
  .footer-legal a {
    text-decoration: none;
    color: #666;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .nfthank-v8 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-color: var(--surface-1);
  color: var(--fg-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  background-color: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}
.nav-link {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.button-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.button-cta:hover {
  background-color: var(--bg-accent-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav-link {
    display: block;
    width: 100%;
    padding: var(--space-y) var(--space-x);
  }
  .button-cta {
    width: 100%;
    text-align: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
  }
  .footer-legal a {
    text-decoration: none;
    color: #666;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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