:root {
  --font-family: "IBM Plex Sans", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.67;

  --max-w: 920px;
  --space-x: 1.53rem;
  --space-y: 1.46rem;
  --gap: 0.77rem;

  --radius-xl: 0.69rem;
  --radius-lg: 0.57rem;
  --radius-md: 0.33rem;
  --radius-sm: 0.18rem;

  --shadow-sm: 0 0px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 2px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 360ms;
  --anim-ease: ease;
  --random-number: 2;

  --brand: #1a472a;
  --brand-contrast: #ffffff;
  --accent: #d4a017;
  --accent-contrast: #000000;

  --neutral-0: #ffffff;
  --neutral-100: #f5f5f5;
  --neutral-300: #d4d4d4;
  --neutral-600: #525252;
  --neutral-800: #262626;
  --neutral-900: #0a0a0a;

  --bg-page: #f9f9f7;
  --fg-on-page: #1a1a1a;

  --bg-alt: #f0efe8;
  --fg-on-alt: #1a1a1a;

  --surface-1: #ffffff;
  --surface-2: #f8f8f8;
  --fg-on-surface: #1a1a1a;
  --border-on-surface: #e5e5e5;

  --surface-light: rgba(255, 255, 255, 0.85);
  --fg-on-surface-light: #1a1a1a;
  --border-on-surface-light: rgba(229, 229, 229, 0.7);

  --bg-primary: #1a472a;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #0f351f;
  --ring: rgba(26, 71, 42, 0.4);

  --bg-accent: rgba(212, 160, 23, 0.1);
  --fg-on-accent: #8b6914;
  --bg-accent-hover: #b88a14;

  --link: #1a472a;
  --link-hover: #0f351f;

  --gradient-hero: linear-gradient(135deg, #1a472a 0%, #2d5a3e 50%, #3d6b4f 100%);
  --gradient-accent: linear-gradient(90deg, #d4a017 0%, #e8b82e 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.08);
  --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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
}

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

.burger-line {
    display: block;
    height: 3px;
    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);
}

.site-nav {
    order: 2;
    width: 100%;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: relative;
        right: 0;
        top: 0;
    }

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

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

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

    .site-nav {
        order: 4;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .site-nav.active {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding-top: var(--space-y);
        gap: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 0 0 0;
        font-family: sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eaeaea;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
        font-size: 1rem;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
        font-size: 1.2rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .contact-block li {
        color: #555;
        font-size: 1rem;
    }
    .contact-block a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .contact-block a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        padding: 1.5rem 0;
        color: #666;
        font-size: 0.9rem;
    }
    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 5px;
        transition: color 0.2s;
    }
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .disclaimer {
        max-width: 800px;
        line-height: 1.4;
        color: #777;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-section {
            width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-bottom-content {
            align-items: flex-start;
            text-align: left;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.intro-focus-light {

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

    .intro-focus-light::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: var(--bg-alt);
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
        z-index: 0;
    }

    .intro-focus-light .intro-focus-light__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .intro-focus-light .intro-focus-light__hero {
        max-width: 900px;

    }

    .intro-focus-light .intro-focus-light__question {
        font-size: clamp(16px, 2vw, 20px);
        color: var(--accent);
        font-weight: 700;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 2px;

        transform: translateY(20px);
    }

    .intro-focus-light .intro-focus-light__headline {
        font-size: clamp(40px, 7vw, 72px);
        font-weight: 900;
        margin: 0 0 1.5rem;
        line-height: 1.05;
        transform: translateY(30px);
    }

    .intro-focus-light .intro-focus-light__lead {
        font-size: clamp(18px, 2.5vw, 24px);
        margin: 0 0 3rem;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
        max-width: 700px;

        transform: translateY(30px);
    }

    .intro-focus-light .intro-focus-light__stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--gap);

    }

    .intro-focus-light .intro-focus-light__stat {
        padding: 1.5rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        text-align: center;
        transition: transform var(--anim-duration) var(--anim-ease);

        transform: translateY(20px);
    }

    .intro-focus-light .intro-focus-light__stat:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .intro-focus-light .intro-focus-light__stat-value {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 900;
        color: var(--brand);
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .intro-focus-light .intro-focus-light__stat-label {
        font-size: clamp(12px, 1.5vw, 14px);
        color: var(--neutral-600);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.value-lanes {
        padding: clamp(60px, 8vw, 110px) clamp(16px, 3vw, 40px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .value-lanes .wrap {
        max-width: 960px;
        margin: 0 auto;
    }

    .value-lanes .header {
        margin-bottom: 14px;
    }

    .value-lanes h2 {
        margin: 0;
        font-size: clamp(30px, 4.8vw, 52px);
    }

    .value-lanes header p {
        margin: 10px 0 0;
        opacity: 0.9;
    }

    .value-lanes .lanes {
        display: grid;
        gap: 10px;
    }

    .value-lanes article {
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 10px;
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        padding: 12px;
    }

    .value-lanes .step {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        display: grid;
        place-items: center;
        font-weight: 600;
    }

    .value-lanes h3 {
        margin: 0 0 6px;
    }

    .value-lanes article p {
        margin: 0 0 6px;
        opacity: 0.9;
    }

    .value-lanes article span {
        font-size: .85rem;
        opacity: 0.8;
    }

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

.next-arrow {
        padding: clamp(60px, 9vw, 108px) 16px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .next-arrow .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        text-align: center;
    }

    .next-arrow h2 {
        margin: 0;
        font-size: clamp(30px, 4.5vw, 46px);
    }

    .next-arrow p {
        margin: 10px auto 0;
        max-width: 62ch;
    }

    .next-arrow .flow {
        margin-top: 16px;
        display: flex;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-arrow .flow a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid var(--chip-bg);
        border-radius: 999px;
        background: var(--chip-bg);
        padding: 9px 13px;
        display: inline-flex;
        gap: 6px;
        align-items: center;
    }

    .next-arrow .flow .final {
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
        border-color: var(--fg-on-primary);
    }

.why-choose-light {

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

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

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

        transform: translateY(20px);
    }

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

    .why-choose-light .why-choose-light__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

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

    .why-choose-light .why-choose-light__item {
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        transition: box-shadow var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose-light .why-choose-light__item:hover {
        box-shadow: var(--shadow-md);
    }

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

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

    .why-choose-light .why-choose-light__item p {
        margin: 0;
        color: var(--neutral-600);
        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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
}

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

.burger-line {
    display: block;
    height: 3px;
    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);
}

.site-nav {
    order: 2;
    width: 100%;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: relative;
        right: 0;
        top: 0;
    }

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

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

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

    .site-nav {
        order: 4;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .site-nav.active {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding-top: var(--space-y);
        gap: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 0 0 0;
        font-family: sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eaeaea;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
        font-size: 1rem;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
        font-size: 1.2rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .contact-block li {
        color: #555;
        font-size: 1rem;
    }
    .contact-block a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .contact-block a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        padding: 1.5rem 0;
        color: #666;
        font-size: 0.9rem;
    }
    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 5px;
        transition: color 0.2s;
    }
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .disclaimer {
        max-width: 800px;
        line-height: 1.4;
        color: #777;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-section {
            width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-bottom-content {
            align-items: flex-start;
            text-align: left;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.our-story {

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

    .our-story .our-story__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .our-story .our-story__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(32px, 5vw, 56px);
        align-items: center;
    }

    .our-story .our-story__image {
        border-radius: var(--radius-md);
        overflow: hidden;
    }

    .our-story .our-story__image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .our-story .our-story__text h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1.5rem;
        color: var(--fg-on-surface-light);
    }

    .our-story .our-story__text p {
        font-size: clamp(16px, 2vw, 18px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0 0 1.5rem;
    }

    @media (max-width: 768px) {
        .our-story .our-story__content {
            grid-template-columns: 1fr;
        }
    }

.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: 50%;
        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;
        }
    }

.faq-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: white;
        color: black;
    }

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

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

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

    .faq-layout-d .section-head p {
        margin: 10px auto 0;
        max-width: 68ch;
    }

    .faq-layout-d .cards {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    }

    .faq-layout-d .card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        background: var(--accent);
        color: var(--accent-contrast);
        padding: var(--space-y) var(--space-x);
    }

    .faq-layout-d .card h3 {
        margin: 0;
        font-size: 1.05rem;
    }

    .faq-layout-d .card p {
        margin: 9px 0 0;
        color: var(--neutral-100);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
}

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

.burger-line {
    display: block;
    height: 3px;
    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);
}

.site-nav {
    order: 2;
    width: 100%;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: relative;
        right: 0;
        top: 0;
    }

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

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

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

    .site-nav {
        order: 4;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .site-nav.active {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding-top: var(--space-y);
        gap: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 0 0 0;
        font-family: sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eaeaea;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
        font-size: 1rem;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
        font-size: 1.2rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .contact-block li {
        color: #555;
        font-size: 1rem;
    }
    .contact-block a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .contact-block a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        padding: 1.5rem 0;
        color: #666;
        font-size: 0.9rem;
    }
    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 5px;
        transition: color 0.2s;
    }
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .disclaimer {
        max-width: 800px;
        line-height: 1.4;
        color: #777;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-section {
            width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-bottom-content {
            align-items: flex-start;
            text-align: left;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.hiw-l1 {

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

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

    .hiw-l1__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .hiw-l1__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

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

    .hiw-l1__grid {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
        position: relative;
    }

    .hiw-l1__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
    }

    /* коннектор к следующему карточке (пульсирует постоянно) */
    .hiw-l1__card:not(:nth-child(3n))::after {
        content: '';
        position: absolute;
        right: -16px;
        top: 50%;
        width: 15px;
        height: 4px;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(0, 86, 179, 0.25), rgba(0, 86, 179, 0.75), rgba(0, 86, 179, 0.25));
        transform: translateY(-50%);
        animation: hiwL1Link 1.9s ease-in-out infinite;
    }

    @keyframes hiwL1Link {
        0%, 100% {
            opacity: .45;
            filter: blur(0px)
        }
        50% {
            opacity: 1;
            filter: blur(0.3px)
        }
    }

    .hiw-l1__head {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .hiw-l1__n {
        width: 40px;
        height: 40px;
        border-radius: 16px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
    }

    .hiw-l1__t {
        font-weight: 900;
        letter-spacing: -.01em;
    }

    .hiw-l1__d {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .hiw-l1__card:hover {
        transform: translateY(-3px);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 980px) {
        .hiw-l1__card {
            grid-column: span 6;
        }

        .hiw-l1__card:not(:nth-child(2n))::after {
            display: none;
        }
    }

    @media (max-width: 640px) {
        .hiw-l1__card {
            grid-column: span 12;
        }

        .hiw-l1__card::after {
            display: none;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .hiw-l1__card::after {
            animation: none;
        }
    }

.capabilities-alt {

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

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

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

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

    }

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

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

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

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

        transform: translateX(-50px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .plans-lv4__line h3 {
        margin: 0;
    }

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

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

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

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

.index-feedback-accordion {
        background: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.75), transparent 60%),
        var(--gradient-hero);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .index-feedback-accordion__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .index-feedback-accordion__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-feedback-accordion__h p {
        margin: 0;
        color: rgba(255, 255, 255, 0.85);
    }

    .index-feedback-accordion__list {
        display: grid;
        gap: 12px;
    }

    .index-feedback-accordion__row {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(26, 71, 42, 0.92);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-feedback-accordion__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--bg-page);
        font: inherit;
    }

    .index-feedback-accordion__left {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-feedback-accordion__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-accordion__name {
        font-weight: 800;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
        color: var(--neutral-0);
    }

    .index-feedback-accordion__meta {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-accordion__right {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .index-feedback-accordion__stars {
        color: var(--accent-color);
        letter-spacing: 0.08em;
        font-size: 13px;
        line-height: 1;
    }

    .index-feedback-accordion__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--bg-page);
    }

    .index-feedback-accordion__a {
        display: none;
        padding: 0 16px 14px;
        color: rgba(255, 255, 255, 0.9);
        overflow: hidden;
    }

    .index-feedback-accordion__quote {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback-accordion__badge {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(212, 160, 23, 0.15);
        border: 1px solid rgba(212, 160, 23, 0.3);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
        color: var(--accent-color);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
}

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

.burger-line {
    display: block;
    height: 3px;
    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);
}

.site-nav {
    order: 2;
    width: 100%;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: relative;
        right: 0;
        top: 0;
    }

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

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

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

    .site-nav {
        order: 4;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .site-nav.active {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding-top: var(--space-y);
        gap: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 0 0 0;
        font-family: sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eaeaea;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
        font-size: 1rem;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
        font-size: 1.2rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .contact-block li {
        color: #555;
        font-size: 1rem;
    }
    .contact-block a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .contact-block a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        padding: 1.5rem 0;
        color: #666;
        font-size: 0.9rem;
    }
    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 5px;
        transition: color 0.2s;
    }
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .disclaimer {
        max-width: 800px;
        line-height: 1.4;
        color: #777;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-section {
            width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-bottom-content {
            align-items: flex-start;
            text-align: left;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.connect--colored-v5 {
        padding: 64px 20px;
        background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.35), transparent),
        radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.45), transparent),
        var(--neutral-900);
        color: var(--neutral-0);
    }

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

    .connect__header {
        text-align: center;
        margin-bottom: 32px;
    }

    .connect__eyebrow {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: rgba(191, 219, 254, 0.9);
        margin: 0 0 0.5rem;
    }

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

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

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

    .connect__channel {
        background: rgba(15, 23, 42, 0.95);
        border-radius: var(--radius-xl);
        padding: 16px 18px;
        border: 1px solid rgba(148, 163, 184, 0.7);
        display: grid;
        gap: 8px;
        box-shadow: var(--shadow-md);
    }

    .connect__icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(17, 24, 39, 0.96);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .connect__channel-title {
        margin: 0;
        font-size: 1rem;
        color: var(--brand-contrast);
    }

    .connect__channel-text {
        margin: 0;
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .connect__channel-link {
        margin-top: 4px;
        font-size: 0.88rem;
        color: var(--bg-accent);
        text-decoration: none;
    }

    .connect__channel-link:hover {
        text-decoration: underline;
    }

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

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

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

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

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

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

    .contact-layout-b .item-card {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

    .contact-layout-b .item-card h3 {
        margin: 0;
        color: var(--brand);
    }

    .contact-layout-b .item-card p {
        margin: 8px 0 0;
        color: var(--neutral-700, var(--neutral-600));
    }

    .contact-layout-b footer {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

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

    .contact-layout-b .social a {
        text-decoration: none;
        color: var(--link);
        padding: 6px 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
    }

.form-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--neutral-0);
    }

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

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

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

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

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

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

    .form-layout-e input:not([type="checkbox"]), .form-layout-e textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .07);
        color: var(--neutral-0);
        padding: 9px;
        font: inherit;
    }

    .form-layout-e .end {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 8px;
    }

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
}

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

.burger-line {
    display: block;
    height: 3px;
    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);
}

.site-nav {
    order: 2;
    width: 100%;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: relative;
        right: 0;
        top: 0;
    }

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

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

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

    .site-nav {
        order: 4;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .site-nav.active {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding-top: var(--space-y);
        gap: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 0 0 0;
        font-family: sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eaeaea;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
        font-size: 1rem;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
        font-size: 1.2rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .contact-block li {
        color: #555;
        font-size: 1rem;
    }
    .contact-block a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .contact-block a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        padding: 1.5rem 0;
        color: #666;
        font-size: 0.9rem;
    }
    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 5px;
        transition: color 0.2s;
    }
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .disclaimer {
        max-width: 800px;
        line-height: 1.4;
        color: #777;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-section {
            width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-bottom-content {
            align-items: flex-start;
            text-align: left;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
}

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

.burger-line {
    display: block;
    height: 3px;
    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);
}

.site-nav {
    order: 2;
    width: 100%;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: relative;
        right: 0;
        top: 0;
    }

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

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

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

    .site-nav {
        order: 4;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .site-nav.active {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding-top: var(--space-y);
        gap: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 0 0 0;
        font-family: sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eaeaea;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
        font-size: 1rem;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
        font-size: 1.2rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .contact-block li {
        color: #555;
        font-size: 1rem;
    }
    .contact-block a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .contact-block a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        padding: 1.5rem 0;
        color: #666;
        font-size: 0.9rem;
    }
    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 5px;
        transition: color 0.2s;
    }
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .disclaimer {
        max-width: 800px;
        line-height: 1.4;
        color: #777;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-section {
            width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-bottom-content {
            align-items: flex-start;
            text-align: left;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.policy-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

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

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

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

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

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
}

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

.burger-line {
    display: block;
    height: 3px;
    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);
}

.site-nav {
    order: 2;
    width: 100%;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: relative;
        right: 0;
        top: 0;
    }

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

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

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

    .site-nav {
        order: 4;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .site-nav.active {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding-top: var(--space-y);
        gap: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 0 0 0;
        font-family: sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eaeaea;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
        font-size: 1rem;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
        font-size: 1.2rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .contact-block li {
        color: #555;
        font-size: 1rem;
    }
    .contact-block a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .contact-block a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        padding: 1.5rem 0;
        color: #666;
        font-size: 0.9rem;
    }
    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 5px;
        transition: color 0.2s;
    }
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .disclaimer {
        max-width: 800px;
        line-height: 1.4;
        color: #777;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-section {
            width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-bottom-content {
            align-items: flex-start;
            text-align: left;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
}

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

.burger-line {
    display: block;
    height: 3px;
    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);
}

.site-nav {
    order: 2;
    width: 100%;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: relative;
        right: 0;
        top: 0;
    }

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

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

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

    .site-nav {
        order: 4;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .site-nav.active {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding-top: var(--space-y);
        gap: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 0 0 0;
        font-family: sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eaeaea;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
        font-size: 1rem;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
        font-size: 1.2rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .contact-block li {
        color: #555;
        font-size: 1rem;
    }
    .contact-block a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .contact-block a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        padding: 1.5rem 0;
        color: #666;
        font-size: 0.9rem;
    }
    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 5px;
        transition: color 0.2s;
    }
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .disclaimer {
        max-width: 800px;
        line-height: 1.4;
        color: #777;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-section {
            width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-bottom-content {
            align-items: flex-start;
            text-align: left;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.err-slab-a {
    padding: clamp(56px, 10vw, 110px) 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

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

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

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
}

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