:root {
  --font-family: "Epilogue", sans-serif;
  --font-size-base: 14.4px;
  --line-height-base: 2;

  --max-w: 1160px;
  --space-x: 1.86rem;
  --space-y: 1.5rem;
  --gap: 0.98rem;

  --radius-xl: 1.36rem;
  --radius-lg: 1rem;
  --radius-md: 0.66rem;
  --radius-sm: 0.34rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.06);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 360ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 1;

  --brand: #0F2D52;
  --brand-contrast: #FFFFFF;
  --accent: #E6B325;
  --accent-contrast: #0F2D52;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D9E6;
  --neutral-600: #7A8CA5;
  --neutral-800: #3A4A5F;
  --neutral-900: #1A2535;

  --bg-page: #FFFFFF;
  --fg-on-page: #1A2535;

  --bg-alt: #F5F7FA;
  --fg-on-alt: #3A4A5F;

  --surface-1: #FFFFFF;
  --surface-2: #F5F7FA;
  --fg-on-surface: #1A2535;
  --border-on-surface: #D1D9E6;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #3A4A5F;
  --border-on-surface-light: #E8EDF5;

  --bg-primary: #0F2D52;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1A3D6B;
  --ring: rgba(15, 45, 82, 0.3);

  --bg-accent: rgba(230, 179, 37, 0.1);
  --fg-on-accent: #0F2D52;
  --bg-accent-hover: #D4A21E;

  --link: #0F2D52;
  --link-hover: #1A3D6B;

  --gradient-hero: linear-gradient(135deg, #0F2D52 0%, #1A3D6B 100%);
  --gradient-accent: linear-gradient(90deg, #E6B325 0%, #F2C94C 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(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(8px);
        background-color: rgba(var(--bg-page-rgb, 255, 255, 255), 0.9);
    }

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .header__nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        gap: calc(var(--gap) * 2);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__link {
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .header__cta.btn {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
        text-align: center;
    }

    .header__cta.btn:hover {
        background-color: var(--bg-primary-hover);
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger__line {
        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__nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 3) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            display: block;
            z-index: 999;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: var(--space-y);
        }

        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

        .header__cta.btn {
            display: none;
        }

        .header__burger {
            display: flex;
        }

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

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

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

        .header__container {
            position: relative;
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 2.5rem 1rem;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
  }
  .footer-contacts address {
    font-style: normal;
    text-align: center;
    line-height: 1.6;
    color: #555;
  }
  .footer-contacts strong {
    color: #2c3e50;
  }
  .footer-contacts a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    color: #777;
    font-size: 0.85rem;
  }
  .legal-links {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #7f8c8d;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-brand,
    .footer-nav,
    .footer-contacts {
      text-align: left;
    }
    .footer-nav .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.75rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

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

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

.intro-band {
        padding: clamp(60px, 9vw, 120px) clamp(16px, 3vw, 40px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .intro-band .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .intro-band .eyebrow {
        margin: 0 0 8px;
        opacity: 0.9;
        font-size: 0.9rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .intro-band h1 {
        margin: 0 0 10px;
        font-size: clamp(34px, 5.6vw, 60px);
        line-height: 1.2;
        font-weight: 700;
    }

    .intro-band .lead {
        margin: 0 0 16px;
        max-width: 70ch;
        opacity: 0.9;
        font-size: 1.2rem;
        line-height: 1.7;
    }

    .intro-band .row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
        margin-top: 24px;
    }

    .intro-band .fact {
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.05);
        padding: 20px;
    }

    .intro-band .label {
        margin: 0;
        opacity: 0.85;
        font-size: 0.9rem;
    }

    .intro-band .number {
        margin: 6px 0 0;
        font-size: clamp(24px, 4vw, 36px);
        font-weight: 600;
        color: var(--accent);
    }

    .intro-band .actions {
        margin-top: 32px;
    }

    .intro-band .actions a {
        text-decoration: none;
        padding: 14px 28px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
        font-weight: 600;
        display: inline-block;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .intro-band .actions a:hover {
        background: var(--accent-hover);
    }

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

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

    .faq-layout-e .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .faq-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .faq-layout-e .accordion {
        border-top: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .entry {
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .question {
        width: 100%;
        text-align: left;
        border: 0;
        background: transparent;
        padding: 12px 0;
        font: inherit;
        font-weight: 600;
        color: var(--brand);
        cursor: pointer;
    }

    .faq-layout-e .answer {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        color: var(--neutral-600);
        padding: 0;
    }

    .faq-layout-e .entry.open .answer {
        max-height: 220px;
        padding-bottom: 12px;
    }

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

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

    .visual-board-l4__head {
        margin-bottom: 1rem;
        text-align: center;
    }

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

    .visual-board-l4__head p {
        margin: .6rem 0 0;
        color: var(--neutral-600);
    }

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

    .visual-board-l4__grid figure {
        margin: 0;
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-board-l4__grid figcaption strong {
        color: var(--brand);
    }

    .visual-board-l4__grid h3 {
        margin: .45rem 0 .35rem;
    }

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

    .visual-board-l4__grid img {
        display: block;
        width: 100%;
        height: 12rem;
        object-fit: cover;
        border-radius: var(--radius-md);
        margin-top: .85rem;
    }

.header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(8px);
        background-color: rgba(var(--bg-page-rgb, 255, 255, 255), 0.9);
    }

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .header__nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        gap: calc(var(--gap) * 2);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__link {
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .header__cta.btn {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
        text-align: center;
    }

    .header__cta.btn:hover {
        background-color: var(--bg-primary-hover);
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger__line {
        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__nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 3) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            display: block;
            z-index: 999;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: var(--space-y);
        }

        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

        .header__cta.btn {
            display: none;
        }

        .header__burger {
            display: flex;
        }

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

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

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

        .header__container {
            position: relative;
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 2.5rem 1rem;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
  }
  .footer-contacts address {
    font-style: normal;
    text-align: center;
    line-height: 1.6;
    color: #555;
  }
  .footer-contacts strong {
    color: #2c3e50;
  }
  .footer-contacts a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    color: #777;
    font-size: 0.85rem;
  }
  .legal-links {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #7f8c8d;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-brand,
    .footer-nav,
    .footer-contacts {
      text-align: left;
    }
    .footer-nav .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.75rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

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

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

.review-list--colored-v5 {

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

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

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

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

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

.review-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 16px;
}

.review-list__card {
    border-radius: var(--radius-xl);
    padding: 16px 18px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
    box-shadow: var(--shadow-md);
}

.review-list__top {
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
}

.review-list__avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-contrast);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.review-list__meta h3 {
    margin: 0 0 2px;
    font-size: 0.95rem;
}

.review-list__meta p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--neutral-300);
}

.review-list__stars {
    font-size: 0.9rem;
    color: var(--accent);
}

.review-list__text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

.add-review--light-v6 {
    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.add-review__inner {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.add-review__title {
    margin: 0 0 6px;
    font-size: clamp(22px,3.5vw,28px);
}

.add-review__text {
    margin: 0 0 16px;
    color: var(--neutral-600);
}

.add-review__button {
    border-radius: 999px;
    border: 1px solid var(--border-on-surface-light);
    background: var(--bg-accent);
    color: var(--fg-on-primary);
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(8px);
        background-color: rgba(var(--bg-page-rgb, 255, 255, 255), 0.9);
    }

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .header__nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        gap: calc(var(--gap) * 2);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__link {
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .header__cta.btn {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
        text-align: center;
    }

    .header__cta.btn:hover {
        background-color: var(--bg-primary-hover);
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger__line {
        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__nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 3) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            display: block;
            z-index: 999;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: var(--space-y);
        }

        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

        .header__cta.btn {
            display: none;
        }

        .header__burger {
            display: flex;
        }

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

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

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

        .header__container {
            position: relative;
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 2.5rem 1rem;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
  }
  .footer-contacts address {
    font-style: normal;
    text-align: center;
    line-height: 1.6;
    color: #555;
  }
  .footer-contacts strong {
    color: #2c3e50;
  }
  .footer-contacts a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    color: #777;
    font-size: 0.85rem;
  }
  .legal-links {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #7f8c8d;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-brand,
    .footer-nav,
    .footer-contacts {
      text-align: left;
    }
    .footer-nav .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.75rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

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

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

.review-item {

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

    .review-item .review-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .review-item .review-item__review {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .review-item .review-item__author-info {
        display: flex;
        gap: 1rem;
        margin-bottom: var(--space-y);
        align-items: flex-start;
    }

    .review-item .review-item__avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.5rem;
    }

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

    .review-item .review-item__author {
        color: var(--neutral-600);
        margin-bottom: 0.5rem;
    }

    .review-item .review-item__rating {
        color: #ffd700;
        font-size: 1.25rem;
    }

    .review-item .review-item__content {
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .review-item .review-item__meta {
        padding-top: var(--space-y);
        border-top: 1px solid var(--ring);
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

.header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(8px);
        background-color: rgba(var(--bg-page-rgb, 255, 255, 255), 0.9);
    }

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .header__nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        gap: calc(var(--gap) * 2);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__link {
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .header__cta.btn {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
        text-align: center;
    }

    .header__cta.btn:hover {
        background-color: var(--bg-primary-hover);
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger__line {
        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__nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 3) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            display: block;
            z-index: 999;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: var(--space-y);
        }

        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

        .header__cta.btn {
            display: none;
        }

        .header__burger {
            display: flex;
        }

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

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

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

        .header__container {
            position: relative;
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 2.5rem 1rem;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
  }
  .footer-contacts address {
    font-style: normal;
    text-align: center;
    line-height: 1.6;
    color: #555;
  }
  .footer-contacts strong {
    color: #2c3e50;
  }
  .footer-contacts a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    color: #777;
    font-size: 0.85rem;
  }
  .legal-links {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #7f8c8d;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-brand,
    .footer-nav,
    .footer-contacts {
      text-align: left;
    }
    .footer-nav .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.75rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

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

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

.review-item--colored-v5 {
    padding: 56px 20px;
    background: radial-gradient(circle at top left, rgba(15, 45, 82, 0.4), transparent),
                radial-gradient(circle at bottom right, rgba(230, 179, 37, 0.2), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

.review-item__inner {
    max-width: 640px;
    margin: 0 auto;
}

.review-item__card {
    background: rgba(15, 45, 82, 0.95);
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    border: 1px solid rgba(230, 179, 37, 0.3);
    box-shadow: var(--shadow-lg);
}

.review-item__header {
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.review-item__avatar {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-contrast);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.review-item__meta h3 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    color: var(--brand-contrast);
    font-weight: 600;
}

.review-item__meta p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.review-item__rating {
    font-size: 1.1rem;
    color: var(--accent);
    letter-spacing: 2px;
}

.review-item__text {
    margin: 0;
    font-size: 1rem;
    color: var(--neutral-100);
    line-height: 1.8;
}

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

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

    .identity-lv2__head {
        text-align: center;
        margin-bottom: 16px;
    }

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

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

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

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

    .identity-lv2__grid h3 {
        margin: 0;
    }

    .identity-lv2__grid strong {
        display: block;
        margin: 6px 0;
        color: var(--brand);
    }

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

    .identity-lv2__grid blockquote {
        margin: 0;
        padding: 8px 10px;
        border-left: 3px solid var(--brand);
        background: var(--surface-2);
        color: var(--neutral-800);
    }

.header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(8px);
        background-color: rgba(var(--bg-page-rgb, 255, 255, 255), 0.9);
    }

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .header__nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        gap: calc(var(--gap) * 2);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__link {
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .header__cta.btn {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
        text-align: center;
    }

    .header__cta.btn:hover {
        background-color: var(--bg-primary-hover);
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger__line {
        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__nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 3) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            display: block;
            z-index: 999;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: var(--space-y);
        }

        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

        .header__cta.btn {
            display: none;
        }

        .header__burger {
            display: flex;
        }

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

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

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

        .header__container {
            position: relative;
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 2.5rem 1rem;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
  }
  .footer-contacts address {
    font-style: normal;
    text-align: center;
    line-height: 1.6;
    color: #555;
  }
  .footer-contacts strong {
    color: #2c3e50;
  }
  .footer-contacts a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    color: #777;
    font-size: 0.85rem;
  }
  .legal-links {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #7f8c8d;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-brand,
    .footer-nav,
    .footer-contacts {
      text-align: left;
    }
    .footer-nav .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.75rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

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

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

.review-item--colored-v5 {
    padding: 56px 20px;
    background: radial-gradient(circle at top left, rgba(15, 45, 82, 0.4), transparent),
                radial-gradient(circle at bottom right, rgba(230, 179, 37, 0.4), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

.review-item__inner {
    max-width: 640px;
    margin: 0 auto;
}

.review-item__card {
    background: rgba(15, 45, 82, 0.98);
    border-radius: var(--radius-xl);
    padding: 18px 20px;
    border: 1px solid rgba(230, 179, 37, 0.7);
    box-shadow: var(--shadow-lg);
}

.review-item__header {
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.review-item__avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.review-item__meta h3 {
    margin: 0 0 2px;
    font-size: 1rem;
    color: var(--brand-contrast);
}

.review-item__meta p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.review-item__rating {
    font-size: 0.9rem;
    color: var(--accent);
}

.review-item__text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-100);
    line-height: 1.7;
}

.header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(8px);
        background-color: rgba(var(--bg-page-rgb, 255, 255, 255), 0.9);
    }

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .header__nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        gap: calc(var(--gap) * 2);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__link {
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .header__cta.btn {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
        text-align: center;
    }

    .header__cta.btn:hover {
        background-color: var(--bg-primary-hover);
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger__line {
        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__nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 3) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            display: block;
            z-index: 999;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: var(--space-y);
        }

        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

        .header__cta.btn {
            display: none;
        }

        .header__burger {
            display: flex;
        }

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

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

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

        .header__container {
            position: relative;
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 2.5rem 1rem;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
  }
  .footer-contacts address {
    font-style: normal;
    text-align: center;
    line-height: 1.6;
    color: #555;
  }
  .footer-contacts strong {
    color: #2c3e50;
  }
  .footer-contacts a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    color: #777;
    font-size: 0.85rem;
  }
  .legal-links {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #7f8c8d;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-brand,
    .footer-nav,
    .footer-contacts {
      text-align: left;
    }
    .footer-nav .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.75rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

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

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

.two-column-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
    align-items: start;
}

.two-column-section--split .two-column-section__text {
    padding: 0 0 0 0;
    border-left: 2px solid var(--border-on-surface);
    padding-left: var(--space-x);
}

.two-column-section--split .two-column-section__text:first-child {
    border-left: 0;
    padding-left: 0;
}

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
}

.two-column-section__text p {
    margin-bottom: var(--space-y);
    color: var(--neutral-600);
}

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

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

    .connect .connect__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(24px, 4vw, 32px);
        color: var(--fg-on-page);
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: clamp(20px, 3vw, 28px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        padding: var(--space-x);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 2px solid var(--border-on-surface);
        text-decoration: none;
        color: inherit;
        transition: all 0.3s;
    }

    .connect .connect__item:hover {
        transform: translateY(-6px);
        border-color: var(--bg-accent);
        box-shadow: var(--shadow-md);
    }

    .connect .connect__icon {
        font-size: clamp(46px, 8vw, 70px);
        width: clamp(95px, 13.5vw, 135px);
        height: clamp(95px, 13.5vw, 135px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-2);
        border-radius: 50%;
        border: 2px solid var(--border-on-surface);
    }

    .connect .connect__item span {
        font-size: clamp(17px, 2.8vw, 20px);
        font-weight: 600;
        color: var(--fg-on-surface);
    }

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

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

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

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

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

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

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

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

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

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

.articles {

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

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

    .articles .articles__header {
        margin-bottom: clamp(32px, 5vw, 48px);
    }

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

    .articles .articles__list {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 28px);
    }

    .articles .articles__item {
        padding-bottom: clamp(20px, 3vw, 28px);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .articles .articles__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .articles .articles__link {
        display: block;
        text-decoration: none;
        color: inherit;
    }

    .articles .articles__link h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
    }

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

    .articles .articles__link p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0 0 0.75rem;
    }

    .articles .articles__meta {
        font-size: clamp(13px, 2vw, 15px);
        color: var(--neutral-600);
    }

.header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(8px);
        background-color: rgba(var(--bg-page-rgb, 255, 255, 255), 0.9);
    }

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .header__nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        gap: calc(var(--gap) * 2);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__link {
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .header__cta.btn {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
        text-align: center;
    }

    .header__cta.btn:hover {
        background-color: var(--bg-primary-hover);
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger__line {
        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__nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 3) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            display: block;
            z-index: 999;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: var(--space-y);
        }

        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

        .header__cta.btn {
            display: none;
        }

        .header__burger {
            display: flex;
        }

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

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

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

        .header__container {
            position: relative;
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 2.5rem 1rem;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
  }
  .footer-contacts address {
    font-style: normal;
    text-align: center;
    line-height: 1.6;
    color: #555;
  }
  .footer-contacts strong {
    color: #2c3e50;
  }
  .footer-contacts a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    color: #777;
    font-size: 0.85rem;
  }
  .legal-links {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #7f8c8d;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-brand,
    .footer-nav,
    .footer-contacts {
      text-align: left;
    }
    .footer-nav .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.75rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

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

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

    .form-layout-a .wrap {
        max-width: 820px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-a .card {
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: rgba(255, 255, 255, .1);
    }

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

    .form-layout-a input:not([type="checkbox"]), .form-layout-a textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .34);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .15);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

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

    .form-layout-a button {
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--accent);
        color: var(--accent-contrast);
        font-weight: bold;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
        width: 100%;
    }
    .form-layout-a button:hover {
        background: var(--accent-hover);
    }
    .form-layout-a input::placeholder,
    .form-layout-a textarea::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

.gallery--light-v6 {

    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.gallery__title {
    margin: 0 0 12px;
    font-size: clamp(22px,3.5vw,28px);
}

.gallery__strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery__thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    min-width: 120px;
}

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

.partners {

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

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

    .partners .partners__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--fg-on-page);
    }

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__content {
        padding: clamp(32px, 5vw, 40px);
    }

    .partners .partners__card {
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        text-align: center;
    }

    .partners .partners__logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partners .partners__logo img {
        width: 100%;
        border-top-left-radius: var(--radius-xl);
        border-top-right-radius: var(--radius-xl);
    }

    .partners .partners__content h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

    .partners .partners__content p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

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

    .contact-layout-e .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .contact-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .contact-layout-e .rail {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 16px;
    }

    .contact-layout-e aside {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: 16px;
    }

    .contact-layout-e aside h3 {
        margin: 0 0 10px;
    }

    .contact-layout-e aside p {
        margin: 0 0 10px;
        opacity: .9;
    }

    .contact-layout-e .social {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .contact-layout-e .social a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .16);
        padding: 6px 10px;
        border-radius: var(--radius-sm);
    }

    .contact-layout-e .content {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        display: grid;
        gap: 10px;
    }

    .contact-layout-e .row {
        display: grid;
        gap: 3px;
        padding-bottom: 10px;
        border-bottom: 1px dashed var(--neutral-300);
    }

    .contact-layout-e .row:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    @media (max-width: 760px) {
        .contact-layout-e .rail {
            grid-template-columns: 1fr;
        }
    }

.header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(8px);
        background-color: rgba(var(--bg-page-rgb, 255, 255, 255), 0.9);
    }

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .header__nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        gap: calc(var(--gap) * 2);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__link {
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .header__cta.btn {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
        text-align: center;
    }

    .header__cta.btn:hover {
        background-color: var(--bg-primary-hover);
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger__line {
        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__nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 3) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            display: block;
            z-index: 999;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: var(--space-y);
        }

        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

        .header__cta.btn {
            display: none;
        }

        .header__burger {
            display: flex;
        }

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

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

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

        .header__container {
            position: relative;
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 2.5rem 1rem;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
  }
  .footer-contacts address {
    font-style: normal;
    text-align: center;
    line-height: 1.6;
    color: #555;
  }
  .footer-contacts strong {
    color: #2c3e50;
  }
  .footer-contacts a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    color: #777;
    font-size: 0.85rem;
  }
  .legal-links {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #7f8c8d;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-brand,
    .footer-nav,
    .footer-contacts {
      text-align: left;
    }
    .footer-nav .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.75rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

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

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

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

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

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

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

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

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

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

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

.header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(8px);
        background-color: rgba(var(--bg-page-rgb, 255, 255, 255), 0.9);
    }

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .header__nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        gap: calc(var(--gap) * 2);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__link {
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .header__cta.btn {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
        text-align: center;
    }

    .header__cta.btn:hover {
        background-color: var(--bg-primary-hover);
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger__line {
        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__nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 3) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            display: block;
            z-index: 999;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: var(--space-y);
        }

        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

        .header__cta.btn {
            display: none;
        }

        .header__burger {
            display: flex;
        }

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

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

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

        .header__container {
            position: relative;
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 2.5rem 1rem;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
  }
  .footer-contacts address {
    font-style: normal;
    text-align: center;
    line-height: 1.6;
    color: #555;
  }
  .footer-contacts strong {
    color: #2c3e50;
  }
  .footer-contacts a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    color: #777;
    font-size: 0.85rem;
  }
  .legal-links {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #7f8c8d;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-brand,
    .footer-nav,
    .footer-contacts {
      text-align: left;
    }
    .footer-nav .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.75rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

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

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

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

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

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

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

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

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

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

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

.header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(8px);
        background-color: rgba(var(--bg-page-rgb, 255, 255, 255), 0.9);
    }

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .header__nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        gap: calc(var(--gap) * 2);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__link {
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .header__cta.btn {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
        text-align: center;
    }

    .header__cta.btn:hover {
        background-color: var(--bg-primary-hover);
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger__line {
        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__nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 3) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            display: block;
            z-index: 999;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: var(--space-y);
        }

        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

        .header__cta.btn {
            display: none;
        }

        .header__burger {
            display: flex;
        }

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

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

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

        .header__container {
            position: relative;
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 2.5rem 1rem;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
  }
  .footer-contacts address {
    font-style: normal;
    text-align: center;
    line-height: 1.6;
    color: #555;
  }
  .footer-contacts strong {
    color: #2c3e50;
  }
  .footer-contacts a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    color: #777;
    font-size: 0.85rem;
  }
  .legal-links {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #7f8c8d;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-brand,
    .footer-nav,
    .footer-contacts {
      text-align: left;
    }
    .footer-nav .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.75rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

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

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

.thank-mode-f {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .thank-mode-f .shell {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        border: 1px solid var(--border-on-surface-light);
    }

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

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

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

.header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(8px);
        background-color: rgba(var(--bg-page-rgb, 255, 255, 255), 0.9);
    }

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .header__nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        gap: calc(var(--gap) * 2);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__link {
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 500;
        padding: var(--radius-sm) var(--radius-md);
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .header__cta.btn {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
        text-align: center;
    }

    .header__cta.btn:hover {
        background-color: var(--bg-primary-hover);
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger__line {
        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__nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 3) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            display: block;
            z-index: 999;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: var(--space-y);
        }

        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

        .header__cta.btn {
            display: none;
        }

        .header__burger {
            display: flex;
        }

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

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

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

        .header__container {
            position: relative;
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 2.5rem 1rem;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
  }
  .footer-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
  }
  .footer-contacts address {
    font-style: normal;
    text-align: center;
    line-height: 1.6;
    color: #555;
  }
  .footer-contacts strong {
    color: #2c3e50;
  }
  .footer-contacts a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    color: #777;
    font-size: 0.85rem;
  }
  .legal-links {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #7f8c8d;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-brand,
    .footer-nav,
    .footer-contacts {
      text-align: left;
    }
    .footer-nav .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.75rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .legal-links {
      justify-content: flex-start;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

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

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

.err-slab-b {
    padding: clamp(56px, 10vw, 112px) 20px;
    background: var(--bg-alt);
    color: var(--fg-on-page);
}

.err-slab-b .frame {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(28px, 4vw, 46px);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-xl);
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
}

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

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

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