:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 17.2px;
  --line-height-base: 1.65;

  --max-w: 1040px;
  --space-x: 1.1rem;
  --space-y: 1.5rem;
  --gap: 0.79rem;

  --radius-xl: 0.86rem;
  --radius-lg: 0.62rem;
  --radius-md: 0.33rem;
  --radius-sm: 0.26rem;

  --shadow-sm: 0 0px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 14px 18px rgba(0,0,0,0.08);

  --overlay: rgba(0, 0, 0, 0.45);
  --anim-duration: 450ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --random-number: 2;

  --brand: #0056B3;
  --brand-contrast: #FFFFFF;
  --accent: #FF6B35;
  --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: #E9ECEF;

  --surface-light: rgba(255, 255, 255, 0.85);
  --fg-on-surface-light: #212529;
  --border-on-surface-light: rgba(222, 226, 230, 0.7);

  --bg-primary: #0056B3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004494;
  --ring: rgba(0, 86, 179, 0.4);

  --bg-accent: #FFF2EC;
  --fg-on-accent: #8B2E00;
  --bg-accent-hover: #FF8B5C;

  --link: #0056B3;
  --link-hover: #004494;

  --gradient-hero: linear-gradient(135deg, #0056B3 0%, #003D82 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #E55A2B 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);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
  }

  .header-contact .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .header-contact .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    position: relative;
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
  }

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

  .nav-list li {
    flex: 0 1 auto;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      padding: 0.75rem 0;
    }

    .main-nav {
      padding: 0;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: var(--surface-1);
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1000;
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      box-sizing: border-box;
      gap: 0;
    }

    .nav-list.active {
      display: flex;
    }

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

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
  }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem 1.5rem;
        font-family: sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
    }

    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.75rem 0;
    }

    .offer {
        color: #666;
        margin: 0;
        max-width: 90%;
    }

    .footer-nav h4,
    .contact-block h4 {
        font-size: 1.1rem;
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }

    .footer-nav li {
        margin-bottom: 0.5rem;
    }

    .footer-nav a,
    .legal-links a,
    .social-links a,
    .contact-block a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .legal-links a:hover,
    .contact-block a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: auto;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #e9ecef;
        border-radius: 50%;
        font-weight: bold;
    }

    .social-links a:hover {
        background-color: #007bff;
        color: white;
    }

    .contact-block address {
        font-style: normal;
        margin-bottom: 1.5rem;
        color: #555;
    }

    .contact-block a {
        display: inline-block;
        margin-top: 0.25rem;
    }

    .disclaimer {
        font-size: 0.85rem;
        color: #777;
        border-top: 1px solid #eee;
        padding-top: 1rem;
        margin-top: auto;
        margin-bottom: 1rem;
    }

    .disclaimer a {
        color: #777;
        text-decoration: underline;
    }

    .copyright {
        font-size: 0.85rem;
        color: #999;
        text-align: center;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            align-items: center;
            text-align: center;
        }
        .offer {
            max-width: 100%;
        }
        .legal-links {
            justify-content: center;
        }
        .contact-block address {
            text-align: center;
        }
    }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.wp-lang-switcher-v9 {
        position: fixed;
        right: clamp(14px, 2vw, 24px);
        top: clamp(14px, 2vw, 24px);
        z-index: 99999;
    }

    .wp-lang-switcher-v9__inner {
        background: color-mix(in srgb, var(--surface-1) 86%, transparent);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        backdrop-filter: blur(8px);
        padding: 8px;
    }

    .wp-lang-switcher-v9__button {
        border: 0;
        background: transparent;
        color: var(--fg-on-surface);
        font-size: 12px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        font-weight: 700;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 4px 6px;
    }

    .wp-lang-switcher-v9__button span {
        border-radius: 999px;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        padding: 4px 8px;
        min-width: 38px;
        text-align: center;
    }

    .wp-lang-switcher-v9__menu {
        margin-top: 8px;
        display: grid;
        gap: 6px;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v9__menu.open {
        max-height: 240px;
    }

    .wp-lang-switcher-v9__menu button,
    .wp-lang-switcher-v9__menu a {
        border-radius: var(--radius-sm);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        padding: 8px 10px;
        text-decoration: none;
        font-size: 12px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .wp-lang-switcher-v9__menu button:hover,
    .wp-lang-switcher-v9__menu a:hover {
        background: var(--surface-2);
    }

.intro-banner-c5 {
        padding: clamp(4rem, 9vw, 7rem) var(--space-x);
        background: linear-gradient(120deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .intro-banner-c5__wrap {
        max-width: 62rem;
        margin: 0 auto;
        text-align: center;
    }

    .intro-banner-c5__over {
        display: inline-flex;
        padding: .45rem .8rem;
        border-radius: 999px;
        background: var(--chip-bg);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-banner-c5__wrap h1 {
        margin: .8rem 0 0;
        font-size: clamp(2.6rem, 5vw, 4.8rem);
        line-height: 1;
    }

    .intro-banner-c5__sub {
        margin: 1rem auto 0;
        max-width: 40rem;
        color: rgba(255, 255, 255, .88);
    }

    .intro-banner-c5__bar {
        margin-top: 1.25rem;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .75rem;
    }

    .intro-banner-c5__bar div {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
    }

    .intro-banner-c5__cta {
        margin-top: 1rem;
        padding: .9rem 1rem;
        border-radius: var(--radius-md);
        background: rgba(17, 24, 39, .2);
    }

    @media (max-width: 640px) {
        .intro-banner-c5__bar {
            grid-template-columns: 1fr;
        }
    }

.next-grid-l8 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

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

    .next-grid-l8__copy {
        margin-bottom: 1rem;
        text-align: center;
    }

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

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

    .next-grid-l8__copy span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
    }

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

    .next-grid-l8__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

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

    .next-grid-l8__grid h3 {
        margin: .75rem 0 .35rem;
    }

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

    .next-grid-l8__foot {
        margin-top: 1rem;
        text-align: center;
    }

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

.index-recommendations-board {
        background: radial-gradient(circle at 18% 20%, rgba(248, 225, 231, 0.35), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 165, 0.35), transparent 55%),
        linear-gradient(135deg, rgba(58, 46, 61, 0.98), rgba(58, 46, 61, 0.88));
        color: var(--neutral-0);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

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

        transform: translateY(-18px);
    }

    .index-recommendations-board__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.72);
    }

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

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

    .index-recommendations-board__tile {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
        padding: 18px 18px 16px;

        transform: translateY(26px);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(12px);
    }

    .index-recommendations-board__tile:nth-child(1),
    .index-recommendations-board__tile:nth-child(2) {
        grid-column: span 6;
    }

    .index-recommendations-board__tile::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(248, 225, 231, 0.25), transparent 60%);
        opacity: 0.9;
        pointer-events: none;
    }

    .index-recommendations-board__tile h3 {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--neutral-0);
    }

    .index-recommendations-board__why {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        color: rgba(255, 255, 255, 0.72);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .index-recommendations-board__desc {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: rgba(255, 255, 255, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-board__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--gradient-accent);
        color: var(--brand-contrast);
        font-weight: 900;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

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

    .index-recommendations-board__cta:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 960px) {
        .index-recommendations-board__tile {
            grid-column: span 6;
        }
    }

    @media (max-width: 620px) {
        .index-recommendations-board__tile {
            grid-column: span 12;
        }
    }

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

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

    .visual-ledger-l2__head {
        margin-bottom: 1rem;
        text-align: center;
    }

    .visual-ledger-l2__head p {
        margin: 0;
        color: var(--neutral-600);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

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

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

    .visual-ledger-l2__deck figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .visual-ledger-l2__deck figcaption {
        padding: 1rem;
    }

    .visual-ledger-l2__deck strong {
        color: var(--brand);
    }

    .visual-ledger-l2__deck h3 {
        margin: .5rem 0 .35rem;
    }

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
  }

  .header-contact .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .header-contact .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    position: relative;
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
  }

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

  .nav-list li {
    flex: 0 1 auto;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      padding: 0.75rem 0;
    }

    .main-nav {
      padding: 0;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: var(--surface-1);
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1000;
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      box-sizing: border-box;
      gap: 0;
    }

    .nav-list.active {
      display: flex;
    }

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

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
  }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem 1.5rem;
        font-family: sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
    }

    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.75rem 0;
    }

    .offer {
        color: #666;
        margin: 0;
        max-width: 90%;
    }

    .footer-nav h4,
    .contact-block h4 {
        font-size: 1.1rem;
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }

    .footer-nav li {
        margin-bottom: 0.5rem;
    }

    .footer-nav a,
    .legal-links a,
    .social-links a,
    .contact-block a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .legal-links a:hover,
    .contact-block a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: auto;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #e9ecef;
        border-radius: 50%;
        font-weight: bold;
    }

    .social-links a:hover {
        background-color: #007bff;
        color: white;
    }

    .contact-block address {
        font-style: normal;
        margin-bottom: 1.5rem;
        color: #555;
    }

    .contact-block a {
        display: inline-block;
        margin-top: 0.25rem;
    }

    .disclaimer {
        font-size: 0.85rem;
        color: #777;
        border-top: 1px solid #eee;
        padding-top: 1rem;
        margin-top: auto;
        margin-bottom: 1rem;
    }

    .disclaimer a {
        color: #777;
        text-decoration: underline;
    }

    .copyright {
        font-size: 0.85rem;
        color: #999;
        text-align: center;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            align-items: center;
            text-align: center;
        }
        .offer {
            max-width: 100%;
        }
        .legal-links {
            justify-content: center;
        }
        .contact-block address {
            text-align: center;
        }
    }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.about-mission {

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

    .about-mission__c {
        padding: 0 var(--space-x);
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-mission .about-mission__q {
        font-size: clamp(22px, 4.5vw, 40px);
        margin: 0 0 .6rem;
        font-weight: 700;
    }

    .about-mission .about-mission__txt {
        margin: 0;
        max-width: var(--max-w);
    }

.about-timeline {

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

    .about-timeline .about-timeline__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-timeline .about-timeline__tl {
        display: grid;
        gap: 16px;
    }

    .about-timeline .about-timeline__tl .timeline {
        list-style: none;
        border-left: 3px solid var(--bg-primary);
        padding: .4rem .6rem .4rem 1rem;
    }

    .about-timeline time {
        display: block;
        font-weight: 700;
        color: var(--fg-on-page);
    }

    .about-timeline p {
        margin: .25rem 0 0;
        color: var(--neutral-600);
    }

.identity-cv3 {
        padding: clamp(54px, 8vw, 98px) clamp(16px, 4vw, 40px);
        background: var(--accent);
        color: var(--accent-contrast);
    }

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

    .identity-cv3__head {
        margin-bottom: 16px;
    }

    .identity-cv3__head span {
        display: inline-block;
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.3);
    }

    .identity-cv3__head h2 {
        margin: 8px 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .identity-cv3__head p {
        margin: 0;
        max-width: 72ch;
        opacity: .9;
    }

    .identity-cv3__list {
        display: grid;
        gap: 12px;
    }

    .identity-cv3__list article {
        display: grid;
        grid-template-columns: 90px 1fr;
        gap: 12px;
        background: rgba(255, 255, 255, 0.35);
        border-radius: var(--radius-lg);
        padding: 12px;
        color: var(--fg-on-page);
    }

    .identity-cv3__meta {
        display: grid;
        gap: 8px;
        justify-items: center;
    }

    .identity-cv3__meta b {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .identity-cv3__meta i {
        font-style: normal;
        font-size: 1.5rem;
    }

    .identity-cv3__list h3 {
        margin: 0;
    }

    .identity-cv3__list p {
        margin: 7px 0;
        color: var(--neutral-800);
    }

    .identity-cv3__list em {
        font-style: normal;
        font-weight: 700;
        color: var(--link);
    }

    @media (max-width: 640px) {
        .identity-cv3__list article {
            grid-template-columns: 1fr;
        }
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
  }

  .header-contact .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .header-contact .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    position: relative;
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
  }

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

  .nav-list li {
    flex: 0 1 auto;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      padding: 0.75rem 0;
    }

    .main-nav {
      padding: 0;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: var(--surface-1);
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1000;
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      box-sizing: border-box;
      gap: 0;
    }

    .nav-list.active {
      display: flex;
    }

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

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
  }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem 1.5rem;
        font-family: sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
    }

    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.75rem 0;
    }

    .offer {
        color: #666;
        margin: 0;
        max-width: 90%;
    }

    .footer-nav h4,
    .contact-block h4 {
        font-size: 1.1rem;
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }

    .footer-nav li {
        margin-bottom: 0.5rem;
    }

    .footer-nav a,
    .legal-links a,
    .social-links a,
    .contact-block a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .legal-links a:hover,
    .contact-block a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: auto;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #e9ecef;
        border-radius: 50%;
        font-weight: bold;
    }

    .social-links a:hover {
        background-color: #007bff;
        color: white;
    }

    .contact-block address {
        font-style: normal;
        margin-bottom: 1.5rem;
        color: #555;
    }

    .contact-block a {
        display: inline-block;
        margin-top: 0.25rem;
    }

    .disclaimer {
        font-size: 0.85rem;
        color: #777;
        border-top: 1px solid #eee;
        padding-top: 1rem;
        margin-top: auto;
        margin-bottom: 1rem;
    }

    .disclaimer a {
        color: #777;
        text-decoration: underline;
    }

    .copyright {
        font-size: 0.85rem;
        color: #999;
        text-align: center;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            align-items: center;
            text-align: center;
        }
        .offer {
            max-width: 100%;
        }
        .legal-links {
            justify-content: center;
        }
        .contact-block address {
            text-align: center;
        }
    }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

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

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

    .plans-lv2__head {
        margin-bottom: 14px;
    }

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

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

    .plans-lv2__range {
        margin-bottom: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
        display: grid;
        gap: 8px;
    }

    .plans-lv2__range label {
        font-weight: 700;
    }

    .plans-lv2__range input {
        width: 100%;
        accent-color: var(--bg-primary);
    }

    .plans-lv2__range span {
        color: var(--neutral-600);
    }

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

    .plans-lv2__grid article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: var(--space-y) var(--space-x);
    }

    .plans-lv2__grid h3 {
        margin: 0;
    }

    .plans-lv2__tier {
        margin: 5px 0 7px;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv2__price {
        margin: 0 0 6px;
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--fg-on-page);
    }

    .plans-lv2__desc {
        margin: 0;
        color: var(--neutral-600);
    }

    .plans-lv2__grid ul {
        margin: 10px 0 0;
        padding-left: 18px;
        display: grid;
        gap: 5px;
        color: var(--neutral-800);
    }

    .plans-lv2__grid button {
        width: 100%;
        margin-top: 10px;
        border: 1px solid var(--bg-primary);
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 9px 12px;
    }

.statistics {
    padding: clamp(48px, 8vw, 80px) 0;
    background: var(--gradient-hero);
    color: var(--brand-contrast);
}

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

.statistics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--gap);
    text-align: center;
}

.statistics__card {
    padding: clamp(16px, 3vw, 32px);
    background: var(--surface-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-on-surface-light);
}

.statistics__number {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--brand);
}

.statistics__label {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--fg-on-surface-light);
}

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

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

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

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

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

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

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

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

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

    .nfsocial-v8__quotes span {
        display: block;
        margin-top: 4px;
        color: var(--neutral-600);
    }

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

    .hiw-split-c6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .hiw-split-c6__media {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .hiw-split-c6__content {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .hiw-split-c6__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-lg);
    }

    .hiw-split-c6__content p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .hiw-split-c6__content h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.1rem);
    }

    .hiw-split-c6__content strong {
        display: block;
        margin-top: .8rem;
        color: var(--bg-accent);
    }

    .hiw-split-c6__copy {
        margin: .75rem 0 0;
        color: rgba(255, 255, 255, .85);
    }

    .hiw-split-c6__content ul {
        margin: 1rem 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: .65rem;
    }

    .hiw-split-c6__content li {
        padding: .8rem .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .16);
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
  }

  .header-contact .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .header-contact .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    position: relative;
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
  }

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

  .nav-list li {
    flex: 0 1 auto;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      padding: 0.75rem 0;
    }

    .main-nav {
      padding: 0;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: var(--surface-1);
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1000;
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      box-sizing: border-box;
      gap: 0;
    }

    .nav-list.active {
      display: flex;
    }

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

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
  }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem 1.5rem;
        font-family: sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
    }

    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.75rem 0;
    }

    .offer {
        color: #666;
        margin: 0;
        max-width: 90%;
    }

    .footer-nav h4,
    .contact-block h4 {
        font-size: 1.1rem;
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }

    .footer-nav li {
        margin-bottom: 0.5rem;
    }

    .footer-nav a,
    .legal-links a,
    .social-links a,
    .contact-block a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .legal-links a:hover,
    .contact-block a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: auto;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #e9ecef;
        border-radius: 50%;
        font-weight: bold;
    }

    .social-links a:hover {
        background-color: #007bff;
        color: white;
    }

    .contact-block address {
        font-style: normal;
        margin-bottom: 1.5rem;
        color: #555;
    }

    .contact-block a {
        display: inline-block;
        margin-top: 0.25rem;
    }

    .disclaimer {
        font-size: 0.85rem;
        color: #777;
        border-top: 1px solid #eee;
        padding-top: 1rem;
        margin-top: auto;
        margin-bottom: 1rem;
    }

    .disclaimer a {
        color: #777;
        text-decoration: underline;
    }

    .copyright {
        font-size: 0.85rem;
        color: #999;
        text-align: center;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            align-items: center;
            text-align: center;
        }
        .offer {
            max-width: 100%;
        }
        .legal-links {
            justify-content: center;
        }
        .contact-block address {
            text-align: center;
        }
    }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.contact-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .contact-layout-a .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .contact-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        opacity: .92;
    }

    .contact-layout-a .panel {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        padding: 18px;
        backdrop-filter: blur(6px);
    }

    .contact-layout-a h3 {
        margin: 0 0 12px;
    }

    .contact-layout-a .list p {
        margin: 0 0 10px;
        display: grid;
        gap: 2px;
    }

    .contact-layout-a .list span {
        opacity: .94;
    }

    .contact-layout-a .social-row {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .contact-layout-a .social-row a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .4);
    }

    .contact-layout-a .social-row a:hover {
        background: rgba(255, 255, 255, .15);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
  }

  .header-contact .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .header-contact .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    position: relative;
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
  }

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

  .nav-list li {
    flex: 0 1 auto;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      padding: 0.75rem 0;
    }

    .main-nav {
      padding: 0;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: var(--surface-1);
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1000;
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      box-sizing: border-box;
      gap: 0;
    }

    .nav-list.active {
      display: flex;
    }

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

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
  }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem 1.5rem;
        font-family: sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
    }

    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.75rem 0;
    }

    .offer {
        color: #666;
        margin: 0;
        max-width: 90%;
    }

    .footer-nav h4,
    .contact-block h4 {
        font-size: 1.1rem;
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }

    .footer-nav li {
        margin-bottom: 0.5rem;
    }

    .footer-nav a,
    .legal-links a,
    .social-links a,
    .contact-block a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .legal-links a:hover,
    .contact-block a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: auto;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #e9ecef;
        border-radius: 50%;
        font-weight: bold;
    }

    .social-links a:hover {
        background-color: #007bff;
        color: white;
    }

    .contact-block address {
        font-style: normal;
        margin-bottom: 1.5rem;
        color: #555;
    }

    .contact-block a {
        display: inline-block;
        margin-top: 0.25rem;
    }

    .disclaimer {
        font-size: 0.85rem;
        color: #777;
        border-top: 1px solid #eee;
        padding-top: 1rem;
        margin-top: auto;
        margin-bottom: 1rem;
    }

    .disclaimer a {
        color: #777;
        text-decoration: underline;
    }

    .copyright {
        font-size: 0.85rem;
        color: #999;
        text-align: center;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            align-items: center;
            text-align: center;
        }
        .offer {
            max-width: 100%;
        }
        .legal-links {
            justify-content: center;
        }
        .contact-block address {
            text-align: center;
        }
    }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.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);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
  }

  .header-contact .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .header-contact .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    position: relative;
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
  }

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

  .nav-list li {
    flex: 0 1 auto;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      padding: 0.75rem 0;
    }

    .main-nav {
      padding: 0;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: var(--surface-1);
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1000;
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      box-sizing: border-box;
      gap: 0;
    }

    .nav-list.active {
      display: flex;
    }

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

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
  }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem 1.5rem;
        font-family: sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
    }

    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.75rem 0;
    }

    .offer {
        color: #666;
        margin: 0;
        max-width: 90%;
    }

    .footer-nav h4,
    .contact-block h4 {
        font-size: 1.1rem;
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }

    .footer-nav li {
        margin-bottom: 0.5rem;
    }

    .footer-nav a,
    .legal-links a,
    .social-links a,
    .contact-block a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .legal-links a:hover,
    .contact-block a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: auto;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #e9ecef;
        border-radius: 50%;
        font-weight: bold;
    }

    .social-links a:hover {
        background-color: #007bff;
        color: white;
    }

    .contact-block address {
        font-style: normal;
        margin-bottom: 1.5rem;
        color: #555;
    }

    .contact-block a {
        display: inline-block;
        margin-top: 0.25rem;
    }

    .disclaimer {
        font-size: 0.85rem;
        color: #777;
        border-top: 1px solid #eee;
        padding-top: 1rem;
        margin-top: auto;
        margin-bottom: 1rem;
    }

    .disclaimer a {
        color: #777;
        text-decoration: underline;
    }

    .copyright {
        font-size: 0.85rem;
        color: #999;
        text-align: center;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            align-items: center;
            text-align: center;
        }
        .offer {
            max-width: 100%;
        }
        .legal-links {
            justify-content: center;
        }
        .contact-block address {
            text-align: center;
        }
    }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
  }

  .header-contact .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .header-contact .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    position: relative;
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
  }

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

  .nav-list li {
    flex: 0 1 auto;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      padding: 0.75rem 0;
    }

    .main-nav {
      padding: 0;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: var(--surface-1);
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1000;
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      box-sizing: border-box;
      gap: 0;
    }

    .nav-list.active {
      display: flex;
    }

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

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
  }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem 1.5rem;
        font-family: sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
    }

    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.75rem 0;
    }

    .offer {
        color: #666;
        margin: 0;
        max-width: 90%;
    }

    .footer-nav h4,
    .contact-block h4 {
        font-size: 1.1rem;
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }

    .footer-nav li {
        margin-bottom: 0.5rem;
    }

    .footer-nav a,
    .legal-links a,
    .social-links a,
    .contact-block a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .legal-links a:hover,
    .contact-block a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: auto;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #e9ecef;
        border-radius: 50%;
        font-weight: bold;
    }

    .social-links a:hover {
        background-color: #007bff;
        color: white;
    }

    .contact-block address {
        font-style: normal;
        margin-bottom: 1.5rem;
        color: #555;
    }

    .contact-block a {
        display: inline-block;
        margin-top: 0.25rem;
    }

    .disclaimer {
        font-size: 0.85rem;
        color: #777;
        border-top: 1px solid #eee;
        padding-top: 1rem;
        margin-top: auto;
        margin-bottom: 1rem;
    }

    .disclaimer a {
        color: #777;
        text-decoration: underline;
    }

    .copyright {
        font-size: 0.85rem;
        color: #999;
        text-align: center;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            align-items: center;
            text-align: center;
        }
        .offer {
            max-width: 100%;
        }
        .legal-links {
            justify-content: center;
        }
        .contact-block address {
            text-align: center;
        }
    }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

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

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

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

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
  }

  .header-contact .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .header-contact .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    position: relative;
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
  }

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

  .nav-list li {
    flex: 0 1 auto;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      padding: 0.75rem 0;
    }

    .main-nav {
      padding: 0;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: var(--surface-1);
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1000;
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      box-sizing: border-box;
      gap: 0;
    }

    .nav-list.active {
      display: flex;
    }

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

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
  }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem 1.5rem;
        font-family: sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
    }

    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.75rem 0;
    }

    .offer {
        color: #666;
        margin: 0;
        max-width: 90%;
    }

    .footer-nav h4,
    .contact-block h4 {
        font-size: 1.1rem;
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }

    .footer-nav li {
        margin-bottom: 0.5rem;
    }

    .footer-nav a,
    .legal-links a,
    .social-links a,
    .contact-block a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .legal-links a:hover,
    .contact-block a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: auto;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #e9ecef;
        border-radius: 50%;
        font-weight: bold;
    }

    .social-links a:hover {
        background-color: #007bff;
        color: white;
    }

    .contact-block address {
        font-style: normal;
        margin-bottom: 1.5rem;
        color: #555;
    }

    .contact-block a {
        display: inline-block;
        margin-top: 0.25rem;
    }

    .disclaimer {
        font-size: 0.85rem;
        color: #777;
        border-top: 1px solid #eee;
        padding-top: 1rem;
        margin-top: auto;
        margin-bottom: 1rem;
    }

    .disclaimer a {
        color: #777;
        text-decoration: underline;
    }

    .copyright {
        font-size: 0.85rem;
        color: #999;
        text-align: center;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            align-items: center;
            text-align: center;
        }
        .offer {
            max-width: 100%;
        }
        .legal-links {
            justify-content: center;
        }
        .contact-block address {
            text-align: center;
        }
    }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

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

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

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

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

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