:root {
  --font-family: "DM Sans", sans-serif;
  --font-size-base: 15.3px;
  --line-height-base: 1.54;

  --max-w: 1160px;
  --space-x: 1.08rem;
  --space-y: 1.02rem;
  --gap: 0.76rem;

  --radius-xl: 1.04rem;
  --radius-lg: 0.68rem;
  --radius-md: 0.43rem;
  --radius-sm: 0.2rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.11);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.14);
  --shadow-lg: 0 16px 26px rgba(0,0,0,0.18);

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

  --brand: #2A9D8F;
  --brand-contrast: #FFFFFF;
  --accent: #E76F51;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F9FA;
  --neutral-300: #DEE2E6;
  --neutral-600: #6C757D;
  --neutral-800: #343A40;
  --neutral-900: #212529;

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

  --bg-alt: #F8F9FA;
  --fg-on-alt: #343A40;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #212529;
  --border-on-surface: #E9ECEF;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #343A40;
  --border-on-surface-light: #DEE2E6;

  --bg-primary: #2A9D8F;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #21867A;
  --ring: rgba(42, 157, 143, 0.4);

  --bg-accent: #FEF5F3;
  --fg-on-accent: #8B3A2A;
  --bg-accent-hover: #F9DED8;

  --link: #2A9D8F;
  --link-hover: #21867A;

  --gradient-hero: linear-gradient(135deg, #2A9D8F 0%, #264653 100%);
  --gradient-accent: linear-gradient(135deg, #E9C46A 0%, #E76F51 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;}

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.8);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .contact-link {
        background-color: var(--btn-ghost-bg);
        color: var(--link);
        padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

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

    .header-bottom {
        background-color: var(--surface-2);
        padding: 0 var(--space-x);
    }

    .main-nav {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
    }

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

    .nav-link {
        display: inline-block;
        padding: calc(var(--space-y) * 0.8) 0;
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.8) 0;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
    }

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

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

        .nav-list {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            flex-direction: column;
            background-color: var(--surface-2);
            padding: var(--space-y) var(--space-x);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 1000;
            gap: 0;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }

        .nav-list.active {
            max-height: 400px;
            opacity: 1;
            padding-bottom: var(--space-y);
        }

        .nav-link {
            padding: calc(var(--space-y) * 0.8) 0;
            width: 100%;
        }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1;
    min-width: 250px;
  }
  .footer-right {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .copyright {
    color: #6c757d;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-contacts {
    color: #555;
    line-height: 1.6;
  }
  .footer-contacts p {
    margin: 0.3rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal-links {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

.nflang-v7 {
        position: fixed;
        left: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
    }

    .nflang-v7__trigger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 52px;
        min-height: 42px;
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
        padding: 8px 14px;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        box-shadow: var(--shadow-md);
        cursor: pointer;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .06em;
    }

    .nflang-v7__panel {
        margin-top: 10px;
        display: grid;
        gap: 6px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(8px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .nflang-v7__panel.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nflang-v7__panel button,
    .nflang-v7__panel a {
        min-width: 46px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        padding: 8px 10px;
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .04em;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nflang-v7__panel button:hover,
    .nflang-v7__panel a:hover {
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }

.hero-arc-v2 {
        padding: calc(var(--space-y) * 2.6) var(--space-x) 0;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

    .hero-arc-v2 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.2vw, 3.4rem);
        line-height: 1.08;
        max-width: 18ch;
    }

    .hero-arc-v2 .subtitle {
        margin: 0;
        max-width: 58ch;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v2 .split {
        display: grid;
        grid-template-columns:1.1fr .9fr;
        gap: calc(var(--gap) * 1.4);
        align-items: start;
    }

    .hero-arc-v2 .desc {
        margin: 0;
        max-width: 60ch;
    }

    .hero-arc-v2 .actions {
        display: grid;
        gap: .7rem;
        justify-items: start;
    }

    .hero-arc-v2 .actions a {
        display: inline-flex;
        padding: .66rem 1.1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .hero-arc-v2 .actions a:nth-child(even) {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

    .hero-arc-v2 .media {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: var(--gap);
        background: var(--surface-2);
        box-shadow: var(--shadow-sm);
    }

    .hero-arc-v2 .media img {
        width: 100%;
        display: block;
        border-radius: var(--radius-lg);
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    .hero-arc-v2 .rail {
        margin-top: calc(var(--space-y) * 1.4);
        background: var(--surface-2);
        border-top: 1px solid var(--border-on-surface);
        display: grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap: 1px;
    }

    .hero-arc-v2 .rail div {
        padding: 1rem var(--space-x);
        background: var(--surface-1);
        display: grid;
        gap: .3rem;
    }

    .hero-arc-v2 em {
        font-style: normal;
        color: var(--fg-on-surface-light);
        font-size: .88rem;
    }

    .hero-arc-v2 strong {
        font-size: 1.05rem;
    }

    @media (max-width: 900px) {
        .hero-arc-v2 .split {
            grid-template-columns:1fr;
        }

        .hero-arc-v2 .rail {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .bloglist-fresh-v4 .head p {
        margin: .35rem 0 0;
        opacity: .9;
    }

    .bloglist-fresh-v4 .cards {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .bloglist-fresh-v4 article {
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .bloglist-fresh-v4 img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        display: block;
    }

    .bloglist-fresh-v4 .text {
        padding: .85rem;
    }

    .bloglist-fresh-v4 h3 {
        margin: 0 0 .4rem;
    }

    .bloglist-fresh-v4 h3 a {
        text-decoration: none;
        color: var(--brand-contrast);
    }

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

    .bloglist-fresh-v4 .meta {
        margin-top: .5rem;
        font-size: .84rem;
    }

    @media (max-width: 760px) {
        .bloglist-fresh-v4 .cards {
            grid-template-columns:1fr;
        }
    }

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

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

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

        transform: translateY(20px);
    }

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

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

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

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

        transform: translateY(30px);
    }

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

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

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

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

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.8);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .contact-link {
        background-color: var(--btn-ghost-bg);
        color: var(--link);
        padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

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

    .header-bottom {
        background-color: var(--surface-2);
        padding: 0 var(--space-x);
    }

    .main-nav {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
    }

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

    .nav-link {
        display: inline-block;
        padding: calc(var(--space-y) * 0.8) 0;
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.8) 0;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
    }

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

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

        .nav-list {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            flex-direction: column;
            background-color: var(--surface-2);
            padding: var(--space-y) var(--space-x);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 1000;
            gap: 0;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }

        .nav-list.active {
            max-height: 400px;
            opacity: 1;
            padding-bottom: var(--space-y);
        }

        .nav-link {
            padding: calc(var(--space-y) * 0.8) 0;
            width: 100%;
        }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1;
    min-width: 250px;
  }
  .footer-right {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .copyright {
    color: #6c757d;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-contacts {
    color: #555;
    line-height: 1.6;
  }
  .footer-contacts p {
    margin: 0.3rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal-links {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

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

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

    .bloglist-fresh-v4 .head p {
        margin: .35rem 0 0;
        opacity: .9;
    }

    .bloglist-fresh-v4 .cards {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .bloglist-fresh-v4 article {
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .bloglist-fresh-v4 img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        display: block;
    }

    .bloglist-fresh-v4 .text {
        padding: .85rem;
    }

    .bloglist-fresh-v4 h3 {
        margin: 0 0 .4rem;
    }

    .bloglist-fresh-v4 h3 a {
        text-decoration: none;
        color: var(--brand-contrast);
    }

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

    .bloglist-fresh-v4 .meta {
        margin-top: .5rem;
        font-size: .84rem;
    }

    @media (max-width: 760px) {
        .bloglist-fresh-v4 .cards {
            grid-template-columns:1fr;
        }
    }

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

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

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

        transform: translateY(-18px);
    }

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

    .index-recommendations-steps__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .index-recommendations-steps__steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(16px, 3vw, 26px);
    }

    .index-recommendations-steps__step {
        position: relative;

        transform: translateY(26px);
    }

    .index-recommendations-steps__num {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        position: absolute;
        top: 18px;
        left: 50px;
        font-size: 12px;
        box-shadow: var(--shadow-md);
    }

    .index-recommendations-steps__box {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: 26px 18px 18px;
        height: 100%;
    }

    .index-recommendations-steps__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

    .index-recommendations-steps__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: var(--fg-on-accent);
        flex: 0 0 auto;
    }

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

    .index-recommendations-steps__box h3 {
        margin: 0 0 10px;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-surface-light);
    }

    .index-recommendations-steps__why {
        margin: 0 0 10px;
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--fg-on-surface-light);
        opacity: 0.75;
    }

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

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

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

    .index-recommendations-steps__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.8);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .contact-link {
        background-color: var(--btn-ghost-bg);
        color: var(--link);
        padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

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

    .header-bottom {
        background-color: var(--surface-2);
        padding: 0 var(--space-x);
    }

    .main-nav {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
    }

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

    .nav-link {
        display: inline-block;
        padding: calc(var(--space-y) * 0.8) 0;
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.8) 0;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
    }

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

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

        .nav-list {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            flex-direction: column;
            background-color: var(--surface-2);
            padding: var(--space-y) var(--space-x);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 1000;
            gap: 0;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }

        .nav-list.active {
            max-height: 400px;
            opacity: 1;
            padding-bottom: var(--space-y);
        }

        .nav-link {
            padding: calc(var(--space-y) * 0.8) 0;
            width: 100%;
        }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1;
    min-width: 250px;
  }
  .footer-right {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .copyright {
    color: #6c757d;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-contacts {
    color: #555;
    line-height: 1.6;
  }
  .footer-contacts p {
    margin: 0.3rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal-links {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

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

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

.blog-item__title {
    margin: 0 0 6px;
    font-size: clamp(24px,4vw,32px);
}

.blog-item__meta {
    margin: 0 0 12px;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.blog-item__text {
    margin: 0;
    font-size: 0.98rem;
    color: var(--neutral-700);
    line-height: 1.7;
}

.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 {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 56px);
    }

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

    .articles .articles__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .articles .articles__list {
        display: flex;
        flex-direction: column;
        gap: clamp(24px, 4vw, 32px);
    }

    .articles .articles__item {
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: clamp(24px, 4vw, 32px);
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 24px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .articles .articles__image {
        width: 100%;
        height: 150px;
        border-radius: var(--radius-md);
        overflow: hidden;
    }

    .articles .articles__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .articles .articles__content h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
    }

    .articles .articles__content h3 a {
        color: var(--fg-on-surface);
        text-decoration: none;
    }

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

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

    @media (max-width: 768px) {
        .articles .articles__item {
            grid-template-columns: 1fr;
        }
    }

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.8);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .contact-link {
        background-color: var(--btn-ghost-bg);
        color: var(--link);
        padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

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

    .header-bottom {
        background-color: var(--surface-2);
        padding: 0 var(--space-x);
    }

    .main-nav {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
    }

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

    .nav-link {
        display: inline-block;
        padding: calc(var(--space-y) * 0.8) 0;
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.8) 0;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
    }

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

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

        .nav-list {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            flex-direction: column;
            background-color: var(--surface-2);
            padding: var(--space-y) var(--space-x);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 1000;
            gap: 0;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }

        .nav-list.active {
            max-height: 400px;
            opacity: 1;
            padding-bottom: var(--space-y);
        }

        .nav-link {
            padding: calc(var(--space-y) * 0.8) 0;
            width: 100%;
        }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1;
    min-width: 250px;
  }
  .footer-right {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .copyright {
    color: #6c757d;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-contacts {
    color: #555;
    line-height: 1.6;
  }
  .footer-contacts p {
    margin: 0.3rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal-links {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

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

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

.blog-item__title {
    margin: 0 0 6px;
    font-size: clamp(24px,4vw,32px);
}

.blog-item__meta {
    margin: 0 0 12px;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.blog-item__text {
    margin: 0;
    font-size: 0.98rem;
    color: var(--neutral-700);
    line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

    .identity-cv3__list h3 {
        margin: 0;
    }

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

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

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

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.8);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .contact-link {
        background-color: var(--btn-ghost-bg);
        color: var(--link);
        padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

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

    .header-bottom {
        background-color: var(--surface-2);
        padding: 0 var(--space-x);
    }

    .main-nav {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
    }

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

    .nav-link {
        display: inline-block;
        padding: calc(var(--space-y) * 0.8) 0;
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.8) 0;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
    }

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

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

        .nav-list {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            flex-direction: column;
            background-color: var(--surface-2);
            padding: var(--space-y) var(--space-x);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 1000;
            gap: 0;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }

        .nav-list.active {
            max-height: 400px;
            opacity: 1;
            padding-bottom: var(--space-y);
        }

        .nav-link {
            padding: calc(var(--space-y) * 0.8) 0;
            width: 100%;
        }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1;
    min-width: 250px;
  }
  .footer-right {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .copyright {
    color: #6c757d;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-contacts {
    color: #555;
    line-height: 1.6;
  }
  .footer-contacts p {
    margin: 0.3rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal-links {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

.blog-item {

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

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

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

    .blog-item .blog-item__header {
        margin-bottom: var(--space-y);
    }

    .blog-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .blog-item .blog-item__content {
        line-height: 1.8;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__content h2 {
        color: var(--neutral-800);
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .blog-item .blog-item__content p {
        margin-bottom: 1.5rem;
    }

    .blog-item .blog-item__related {
        background: var(--surface-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .blog-item .blog-item__related h3 {
        margin: 0 0 1rem;
        font-size: 1.25rem;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__related-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .blog-item .blog-item__related-item a {
        color: var(--link);
        text-decoration: none;
    }

    .blog-item .blog-item__related-item a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

.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 {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 56px);
    }

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

    .articles .articles__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .articles .articles__list {
        display: flex;
        flex-direction: column;
        gap: clamp(24px, 4vw, 32px);
    }

    .articles .articles__item {
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: clamp(24px, 4vw, 32px);
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 24px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .articles .articles__image {
        width: 100%;
        height: 150px;
        border-radius: var(--radius-md);
        overflow: hidden;
    }

    .articles .articles__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .articles .articles__content h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
    }

    .articles .articles__content h3 a {
        color: var(--fg-on-surface);
        text-decoration: none;
    }

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

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

    @media (max-width: 768px) {
        .articles .articles__item {
            grid-template-columns: 1fr;
        }
    }

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.8);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .contact-link {
        background-color: var(--btn-ghost-bg);
        color: var(--link);
        padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

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

    .header-bottom {
        background-color: var(--surface-2);
        padding: 0 var(--space-x);
    }

    .main-nav {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
    }

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

    .nav-link {
        display: inline-block;
        padding: calc(var(--space-y) * 0.8) 0;
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.8) 0;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
    }

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

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

        .nav-list {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            flex-direction: column;
            background-color: var(--surface-2);
            padding: var(--space-y) var(--space-x);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 1000;
            gap: 0;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }

        .nav-list.active {
            max-height: 400px;
            opacity: 1;
            padding-bottom: var(--space-y);
        }

        .nav-link {
            padding: calc(var(--space-y) * 0.8) 0;
            width: 100%;
        }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1;
    min-width: 250px;
  }
  .footer-right {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .copyright {
    color: #6c757d;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-contacts {
    color: #555;
    line-height: 1.6;
  }
  .footer-contacts p {
    margin: 0.3rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal-links {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

.support-cv2 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .support-cv2__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

    .support-cv2__box h2 {
        margin: 0;
        font-size: clamp(26px, 4vw, 40px);
    }

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

    .support-cv2__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-cv2__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

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

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

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

        transform: translateY(-18px);
    }

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

    .index-recommendations-steps__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .index-recommendations-steps__steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(16px, 3vw, 26px);
    }

    .index-recommendations-steps__step {
        position: relative;

        transform: translateY(26px);
    }

    .index-recommendations-steps__num {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        position: absolute;
        top: 18px;
        left: 50px;
        font-size: 12px;
        box-shadow: var(--shadow-md);
    }

    .index-recommendations-steps__box {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: 26px 18px 18px;
        height: 100%;
    }

    .index-recommendations-steps__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

    .index-recommendations-steps__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: var(--fg-on-accent);
        flex: 0 0 auto;
    }

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

    .index-recommendations-steps__box h3 {
        margin: 0 0 10px;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-surface-light);
    }

    .index-recommendations-steps__why {
        margin: 0 0 10px;
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--fg-on-surface-light);
        opacity: 0.75;
    }

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

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

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

    .index-recommendations-steps__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.8);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .contact-link {
        background-color: var(--btn-ghost-bg);
        color: var(--link);
        padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

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

    .header-bottom {
        background-color: var(--surface-2);
        padding: 0 var(--space-x);
    }

    .main-nav {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
    }

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

    .nav-link {
        display: inline-block;
        padding: calc(var(--space-y) * 0.8) 0;
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.8) 0;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
    }

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

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

        .nav-list {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            flex-direction: column;
            background-color: var(--surface-2);
            padding: var(--space-y) var(--space-x);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 1000;
            gap: 0;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }

        .nav-list.active {
            max-height: 400px;
            opacity: 1;
            padding-bottom: var(--space-y);
        }

        .nav-link {
            padding: calc(var(--space-y) * 0.8) 0;
            width: 100%;
        }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1;
    min-width: 250px;
  }
  .footer-right {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .copyright {
    color: #6c757d;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-contacts {
    color: #555;
    line-height: 1.6;
  }
  .footer-contacts p {
    margin: 0.3rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal-links {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

.contacts-fresh-v3 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .contacts-fresh-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: calc(var(--gap) * 2);
    }

    .contacts-fresh-v3 .left h2 {
        margin: .3rem 0;
        font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    }

    .contacts-fresh-v3 .left p {
        max-width: 46ch;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v3 .right {
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v3 .row {
        padding: 1rem 1.1rem;
        border-left: 4px solid var(--bg-primary);
        background: var(--surface-2);
        border-radius: var(--radius-sm);
    }

    .contacts-fresh-v3 h3 {
        margin: 0 0 .3rem;
    }

    .contacts-fresh-v3 p {
        margin: 0;
        font-weight: 700;
    }

    .contacts-fresh-v3 small {
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v3 a {
        color: var(--link);
        text-decoration: none;
    }
    .contacts-fresh-v3 a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    @media (max-width: 900px) {
        .contacts-fresh-v3 .shell {
            grid-template-columns:1fr;
        }
    }

.support-cv2 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .support-cv2__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

    .support-cv2__box h2 {
        margin: 0;
        font-size: clamp(26px, 4vw, 40px);
    }

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

    .support-cv2__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-cv2__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

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

    .nfform-v10__form {
        max-width: 760px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v10 p {
        margin: 0;
        color: var(--neutral-600);
    }

    .nfform-v10__steps {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nfform-v10__steps span {
        padding: 4px 8px;
        border-radius: var(--radius-sm);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        color: var(--neutral-600);
        font-size: .85rem;
    }

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

    .nfform-v10 label strong {
        color: var(--neutral-800);
        font-size: .9rem;
    }

    .nfform-v10 input {
        width: 100%;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 9px;
        font: inherit;
    }

    .nfform-v10 button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        font-weight: 700;
    }

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.8);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .contact-link {
        background-color: var(--btn-ghost-bg);
        color: var(--link);
        padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

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

    .header-bottom {
        background-color: var(--surface-2);
        padding: 0 var(--space-x);
    }

    .main-nav {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
    }

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

    .nav-link {
        display: inline-block;
        padding: calc(var(--space-y) * 0.8) 0;
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.8) 0;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
    }

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

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

        .nav-list {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            flex-direction: column;
            background-color: var(--surface-2);
            padding: var(--space-y) var(--space-x);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 1000;
            gap: 0;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }

        .nav-list.active {
            max-height: 400px;
            opacity: 1;
            padding-bottom: var(--space-y);
        }

        .nav-link {
            padding: calc(var(--space-y) * 0.8) 0;
            width: 100%;
        }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1;
    min-width: 250px;
  }
  .footer-right {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .copyright {
    color: #6c757d;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-contacts {
    color: #555;
    line-height: 1.6;
  }
  .footer-contacts p {
    margin: 0.3rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal-links {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.8);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .contact-link {
        background-color: var(--btn-ghost-bg);
        color: var(--link);
        padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

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

    .header-bottom {
        background-color: var(--surface-2);
        padding: 0 var(--space-x);
    }

    .main-nav {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
    }

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

    .nav-link {
        display: inline-block;
        padding: calc(var(--space-y) * 0.8) 0;
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.8) 0;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
    }

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

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

        .nav-list {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            flex-direction: column;
            background-color: var(--surface-2);
            padding: var(--space-y) var(--space-x);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 1000;
            gap: 0;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }

        .nav-list.active {
            max-height: 400px;
            opacity: 1;
            padding-bottom: var(--space-y);
        }

        .nav-link {
            padding: calc(var(--space-y) * 0.8) 0;
            width: 100%;
        }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1;
    min-width: 250px;
  }
  .footer-right {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .copyright {
    color: #6c757d;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-contacts {
    color: #555;
    line-height: 1.6;
  }
  .footer-contacts p {
    margin: 0.3rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal-links {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

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

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

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

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

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

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

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

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

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

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.8);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .contact-link {
        background-color: var(--btn-ghost-bg);
        color: var(--link);
        padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

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

    .header-bottom {
        background-color: var(--surface-2);
        padding: 0 var(--space-x);
    }

    .main-nav {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
    }

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

    .nav-link {
        display: inline-block;
        padding: calc(var(--space-y) * 0.8) 0;
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.8) 0;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
    }

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

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

        .nav-list {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            flex-direction: column;
            background-color: var(--surface-2);
            padding: var(--space-y) var(--space-x);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 1000;
            gap: 0;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }

        .nav-list.active {
            max-height: 400px;
            opacity: 1;
            padding-bottom: var(--space-y);
        }

        .nav-link {
            padding: calc(var(--space-y) * 0.8) 0;
            width: 100%;
        }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1;
    min-width: 250px;
  }
  .footer-right {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .copyright {
    color: #6c757d;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-contacts {
    color: #555;
    line-height: 1.6;
  }
  .footer-contacts p {
    margin: 0.3rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal-links {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

.thank-mode-c {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: linear-gradient(180deg, var(--fg-on-page), var(--bg-page));
        color: var(--fg-on-page);
    }

    .thank-mode-c .panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 44px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

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

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

    .thank-mode-c a {
        display: inline-block;
        margin-top: 17px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.8);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .contact-link {
        background-color: var(--btn-ghost-bg);
        color: var(--link);
        padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

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

    .header-bottom {
        background-color: var(--surface-2);
        padding: 0 var(--space-x);
    }

    .main-nav {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
    }

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

    .nav-link {
        display: inline-block;
        padding: calc(var(--space-y) * 0.8) 0;
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.8) 0;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
    }

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

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

        .nav-list {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            flex-direction: column;
            background-color: var(--surface-2);
            padding: var(--space-y) var(--space-x);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 1000;
            gap: 0;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }

        .nav-list.active {
            max-height: 400px;
            opacity: 1;
            padding-bottom: var(--space-y);
        }

        .nav-link {
            padding: calc(var(--space-y) * 0.8) 0;
            width: 100%;
        }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1;
    min-width: 250px;
  }
  .footer-right {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .copyright {
    color: #6c757d;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  .footer-contacts {
    color: #555;
    line-height: 1.6;
  }
  .footer-contacts p {
    margin: 0.3rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal-links {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

.nf404-v12 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .nf404-v12__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-top: 6px solid var(--accent);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        border-right: 1px solid var(--border-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: clamp(28px, 4vw, 46px);
    }

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

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

    .nf404-v12 a {
        display: inline-block;
        margin-top: 16px;
        padding: 9px 14px;
        border-radius: 999px;
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-page);
    }