:root {
  --font-family: "Fira Sans", sans-serif;
  --font-size-base: 18.6px;
  --line-height-base: 1.59;

  --max-w: 1460px;
  --space-x: 1.99rem;
  --space-y: 1.5rem;
  --gap: 2.45rem;

  --radius-xl: 1.27rem;
  --radius-lg: 0.89rem;
  --radius-md: 0.58rem;
  --radius-sm: 0.25rem;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.18);
  --shadow-md: 0 8px 16px rgba(0,0,0,0.23);
  --shadow-lg: 0 20px 52px rgba(0,0,0,0.29);

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

  --brand: #2c3e50;
  --brand-contrast: #ffffff;
  --accent: #3498db;
  --accent-contrast: #ffffff;

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

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

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

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

  --surface-light: #ffffff;
  --fg-on-surface-light: #6c757d;
  --border-on-surface-light: #f1f3f4;

  --bg-primary: #2c3e50;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1a252f;
  --ring: rgba(44, 62, 80, 0.2);

  --bg-accent: #ebf5fb;
  --fg-on-accent: #2c3e50;
  --bg-accent-hover: #2980b9;

  --link: #3498db;
  --link-hover: #1d6fa5;

  --gradient-hero: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  --gradient-accent: linear-gradient(90deg, #ebf5fb 0%, #ffffff 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(--bg-page);
    color: var(--fg-on-page);
    padding: var(--space-y) var(--space-x);
    position: relative;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    flex-wrap: wrap;
}

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

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--fg-on-page);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.header-cta .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.header-cta .cta-button:hover {
    background-color: var(--bg-primary-hover);
}

.header-bottom-line {
    height: 1px;
    background-color: var(--border-on-surface-light);
    margin-top: var(--space-y);
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    z-index: 100;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 3) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 99;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .header-cta {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        padding: 2.5rem 1rem;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5530;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-style: italic;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2c5530;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        text-align: center;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #2c5530;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        text-align: center;
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #777;
        font-size: 0.9rem;
    }
    .footer-social {
        margin-bottom: 1rem;
    }
    .footer-social a {
        display: inline-block;
        margin: 0 0.5rem;
        color: #666;
        text-decoration: none;
        font-weight: bold;
    }
    .footer-social a:hover {
        color: #2c5530;
    }
    .footer-links {
        margin-bottom: 1rem;
    }
    .footer-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
        color: #2c5530;
    }
    .footer-disclaimer {
        max-width: 800px;
        margin: 1rem auto;
        line-height: 1.5;
        font-size: 0.85rem;
        color: #888;
    }
    .footer-copyright {
        margin-top: 1rem;
        color: #999;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
        }
        .footer-brand,
        .footer-nav ul,
        .footer-contact address {
            text-align: left;
            justify-content: start;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
        }
    }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__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-lv10__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

    .intro-rail .wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 12px 1fr;
        gap: 16px;
        align-items: start;
    }

    .intro-rail .rail {
        background: var(--bg-primary);
        border-radius: 999px;
        min-height: 180px;
    }

    .intro-rail .badge {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .intro-rail h1 {
        margin: 0 0 10px;
        font-size: clamp(32px, 5.2vw, 54px);
    }

    .intro-rail .subtitle,
    .intro-rail .lead {
        margin: 0 0 10px;
        color: var(--neutral-600);
    }

    .intro-rail .actions {
        margin-top: 12px;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .intro-rail .actions a {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

.next-check {
        padding: clamp(60px, 9vw, 108px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .next-check .wrap {
        max-width: 780px;
        margin: 0 auto;
        background: var(--neutral-0);
        border: 1px solid var(--border-on-surface-light);
        border-radius: 18px;
        padding: clamp(18px, 3vw, 28px);
    }

    .next-check .k {
        margin: 0;
        color: var(--bg-primary);
        font-weight: 600;
    }

    .next-check h2 {
        margin: 8px 0;
        font-size: clamp(30px, 4.2vw, 44px);
    }

    .next-check .text {
        margin: 0;
        color: var(--fg-on-accent);
    }

    .next-check ul {
        margin: 14px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .next-check li a {
        text-decoration: none;
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface-light);
        background: var(--surface-2);
        border-radius: 10px;
        padding: 9px 12px;
        display: flex;
        justify-content: space-between;
        gap: 8px;
    }

    .next-check .cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 10px 14px;
    }

.index-recommendations-split {
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.75), transparent 60%),
        linear-gradient(135deg, rgba(212, 165, 165, 0.45), rgba(248, 225, 231, 0.95));
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

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

        transform: translateY(-18px);
    }

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

    .index-recommendations-split__h p {
        margin: 0;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
    }

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

    .index-recommendations-split__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        display: grid;
        grid-template-rows: 170px 1fr;

        transform: translateY(26px);
        backdrop-filter: blur(10px);
    }

    .index-recommendations-split__card:nth-child(1) {
        grid-column: span 12;
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 1fr;
        min-height: 320px;
    }

    .index-recommendations-split__media {
        position: relative;
        background-size: cover;
        background-position: center;
        background-color: var(--neutral-100);
    }

    .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
        border-right: 1px solid var(--border-on-surface);
    }

    .index-recommendations-split__media::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
        pointer-events: none;
    }

    .index-recommendations-split__pill {
        position: absolute;
        left: 14px;
        top: 14px;
        padding: 7px 10px;
        border-radius: 999px;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-surface);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        z-index: 1;
    }

    .index-recommendations-split__body {
        padding: 18px 18px 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

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

    .index-recommendations-split__body h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-page);
        font-family: Georgia, serif;
    }

    .index-recommendations-split__body p {
        margin: 0;
        color: var(--neutral-800);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-split__link {
        margin-top: auto;
        color: var(--link);
        text-decoration: none;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

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

    .index-recommendations-split__link:hover {
        color: var(--link-hover);
    }

    @media (max-width: 900px) {
        .index-recommendations-split__grid {
            grid-template-columns: repeat(6, 1fr);
        }

        .index-recommendations-split__card {
            grid-column: span 6;
        }

        .index-recommendations-split__card:nth-child(1) {
            grid-template-columns: 1fr;
            grid-template-rows: 200px 1fr;
            min-height: 0;
        }

        .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
            border-right: 0;
            border-bottom: 1px solid var(--border-on-surface);
        }
    }

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    padding: var(--space-y) var(--space-x);
    position: relative;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    flex-wrap: wrap;
}

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

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--fg-on-page);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.header-cta .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.header-cta .cta-button:hover {
    background-color: var(--bg-primary-hover);
}

.header-bottom-line {
    height: 1px;
    background-color: var(--border-on-surface-light);
    margin-top: var(--space-y);
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    z-index: 100;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 3) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 99;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .header-cta {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        padding: 2.5rem 1rem;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5530;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-style: italic;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2c5530;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        text-align: center;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #2c5530;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        text-align: center;
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #777;
        font-size: 0.9rem;
    }
    .footer-social {
        margin-bottom: 1rem;
    }
    .footer-social a {
        display: inline-block;
        margin: 0 0.5rem;
        color: #666;
        text-decoration: none;
        font-weight: bold;
    }
    .footer-social a:hover {
        color: #2c5530;
    }
    .footer-links {
        margin-bottom: 1rem;
    }
    .footer-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
        color: #2c5530;
    }
    .footer-disclaimer {
        max-width: 800px;
        margin: 1rem auto;
        line-height: 1.5;
        font-size: 0.85rem;
        color: #888;
    }
    .footer-copyright {
        margin-top: 1rem;
        color: #999;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
        }
        .footer-brand,
        .footer-nav ul,
        .footer-contact address {
            text-align: left;
            justify-content: start;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
        }
    }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__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-lv10__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

    .faq-layout-a .section-head {
        margin-bottom: 14px;
    }

    .faq-layout-a h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--neutral-900);
        font-family: Georgia, 'Times New Roman', Times, serif;
    }

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

    .faq-layout-a .list {
        display: grid;
        gap: 10px;
    }

    .faq-layout-a .item {
        border-radius: var(--radius-md);
        overflow: hidden;
        border: 1px solid var(--neutral-300);
        background: var(--neutral-0);
    }

    .faq-layout-a .q {
        width: 100%;
        border: 0;
        background: transparent;
        color: var(--neutral-900);
        text-align: left;
        padding: 12px;
        font: inherit;
        font-weight: 600;
        cursor: pointer;
        font-family: Georgia, 'Times New Roman', Times, serif;
    }

    .faq-layout-a .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-a .a p {
        margin: 0;
        padding: 0 12px 12px;
        opacity: .95;
        color: var(--neutral-800);
    }

    .faq-layout-a .item.open .a {
        max-height: 240px;
    }

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

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

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

.two-column-section__media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    display: block;
}

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
    font-family: Georgia, 'Times New Roman', Times, serif;
}

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

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

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

.identity-cv5 {
        padding: clamp(52px, 8vw, 96px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .identity-cv5__hero {
        position: relative;
        border-radius: var(--radius-xl);
        overflow: hidden;
        min-height: 220px;
    }

    .identity-cv5__hero img {
        width: 100%;
        height: 100%;
        min-height: 220px;
        object-fit: cover;
        display: block;
    }

    .identity-cv5__overlay {
        position: absolute;
        inset: auto 0 0 0;
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0), var(--overlay));
    }

    .identity-cv5__overlay h2 {
        margin: 0;
        font-size: clamp(26px, 4vw, 42px);
    }

    .identity-cv5__overlay span {
        opacity: .92;
    }

    .identity-cv5__grid {
        margin-top: 14px;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: var(--gap);
    }

    .identity-cv5__grid p {
        margin: 0 0 10px;
    }

    .identity-cv5__grid ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .identity-cv5__grid li {
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: var(--radius-md);
        padding: 10px 12px;
    }

    @media (max-width: 800px) {
        .identity-cv5__grid {
            grid-template-columns: 1fr;
        }
    }

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    padding: var(--space-y) var(--space-x);
    position: relative;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    flex-wrap: wrap;
}

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

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--fg-on-page);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.header-cta .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.header-cta .cta-button:hover {
    background-color: var(--bg-primary-hover);
}

.header-bottom-line {
    height: 1px;
    background-color: var(--border-on-surface-light);
    margin-top: var(--space-y);
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    z-index: 100;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 3) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 99;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .header-cta {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        padding: 2.5rem 1rem;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5530;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-style: italic;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2c5530;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        text-align: center;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #2c5530;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        text-align: center;
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #777;
        font-size: 0.9rem;
    }
    .footer-social {
        margin-bottom: 1rem;
    }
    .footer-social a {
        display: inline-block;
        margin: 0 0.5rem;
        color: #666;
        text-decoration: none;
        font-weight: bold;
    }
    .footer-social a:hover {
        color: #2c5530;
    }
    .footer-links {
        margin-bottom: 1rem;
    }
    .footer-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
        color: #2c5530;
    }
    .footer-disclaimer {
        max-width: 800px;
        margin: 1rem auto;
        line-height: 1.5;
        font-size: 0.85rem;
        color: #888;
    }
    .footer-copyright {
        margin-top: 1rem;
        color: #999;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
        }
        .footer-brand,
        .footer-nav ul,
        .footer-contact address {
            text-align: left;
            justify-content: start;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
        }
    }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__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-lv10__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

    .index-feedback-summary__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);
        transform: translateY(-18px);
    }

    .index-feedback-summary__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        font-family: Georgia, 'Times New Roman', serif;
        color: var(--neutral-900);
    }

    .index-feedback-summary__h p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 1.1rem;
    }

    .index-feedback-summary__layout {
        display: grid;
        grid-template-columns: minmax(260px, 340px) 1fr;
        gap: clamp(16px, 3vw, 28px);
        align-items: start;
    }

    .index-feedback-summary__panel {
        border-radius: var(--radius-xl);
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        padding: clamp(18px, 3vw, 26px);
        box-shadow: var(--shadow-md);
        transform: translateY(22px);
        position: sticky;
        top: 16px;
    }

    .index-feedback-summary__kpi {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 14px;
    }

    .index-feedback-summary__avg {
        width: 72px;
        height: 72px;
        border-radius: 22px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 22px;
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
        font-family: Georgia, 'Times New Roman', serif;
    }

    .index-feedback-summary__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 14px;
        line-height: 1;
        margin-bottom: 6px;
    }

    .index-feedback-summary__count {
        font-size: 12px;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .index-feedback-summary__note {
        color: var(--fg-on-accent);
        font-size: 14px;
        line-height: 1.5;
    }

    .index-feedback-summary__cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-feedback-summary__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        padding: 18px 18px 16px;
        transform: translateY(22px);
    }

    .index-feedback-summary__head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

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

    .index-feedback-summary__avatar {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        font-size: 18px;
    }

    .index-feedback-summary__who h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 900;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-summary__who p {
        margin: 2px 0 0;
        font-size: 12px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

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

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

    @media (max-width: 860px) {
        .index-feedback-summary__layout {
            grid-template-columns: 1fr;
        }

        .index-feedback-summary__panel {
            position: relative;
            top: 0;
        }
    }

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

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

    .plans-cv2__head {
        margin-bottom: 16px;
    }

    .plans-cv2__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
        color: var(--neutral-900);
        font-family: Georgia, serif;
    }

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

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

    .plans-cv2__card {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
        color: var(--fg-on-surface);
    }

    .plans-cv2__card.is-active {
        transform: translateY(-4px);
        border-color: var(--bg-accent);
        background: var(--surface-2);
    }

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

    .plans-cv2__line h3 {
        margin: 0;
        color: var(--neutral-900);
        font-family: Georgia, serif;
    }

    .plans-cv2__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--chip-bg);
        color: var(--neutral-800);
    }

    .plans-cv2__price {
        margin: 10px 0 8px;
        font-size: 1.45rem;
        font-weight: 800;
        color: var(--neutral-900);
    }

    .plans-cv2__list p {
        margin: 0 0 6px;
        opacity: .92;
        color: var(--neutral-600);
    }

    .plans-cv2__card button {
        width: 100%;
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 600;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .plans-cv2__card button:hover {
        background: var(--bg-accent-hover);
    }

.hiw-l2 {

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

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

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

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

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

    .hiw-l2__wrap {
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .hiw-l2__tabs {
        position: relative;
        display: flex;
        gap: 8px;
        padding: 12px;
        border-bottom: 1px solid var(--border-on-surface);
        overflow: auto;
    }

    .hiw-l2__tab {
        flex: 0 0 auto;
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-page);
        padding: 10px 12px;
        border-radius: 999px;
        font-weight: 900;
        cursor: pointer;
        white-space: nowrap;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .hiw-l2__tab:hover {
        transform: translateY(-1px);
    }

    .hiw-l2__tab.is-on {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: rgba(255, 107, 53, 0.35);
    }

    .hiw-l2__underline {
        position: absolute;
        height: 3px;
        bottom: 6px;
        left: 12px;
        width: 40px;
        border-radius: 999px;
        background: var(--bg-primary);
        transform: translateX(0);
        transition: transform 420ms var(--anim-ease), width 420ms var(--anim-ease);
    }

    .hiw-l2__panes {
        padding: 16px;
    }

    .hiw-l2__pane {
        display: none;
    }

    .hiw-l2__pane.is-on {
        display: block;
    }

    .hiw-l2__n {
        width: 44px;
        height: 44px;
        border-radius: 18px;
        display: grid;
        place-items: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 900;
    }

    .hiw-l2__pTitle {
        margin-top: 12px;
        font-weight: 900;
        letter-spacing: -.01em;
        font-size: clamp(18px, 2.2vw, 22px);
        color: var(--fg-on-page);
    }

    .hiw-l2__pText {
        margin-top: 8px;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (prefers-reduced-motion: reduce) {
        .hiw-l2__underline {
            transition: none;
        }

        .hiw-l2__tab {
            transition: 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);
    }

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    padding: var(--space-y) var(--space-x);
    position: relative;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    flex-wrap: wrap;
}

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

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--fg-on-page);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.header-cta .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.header-cta .cta-button:hover {
    background-color: var(--bg-primary-hover);
}

.header-bottom-line {
    height: 1px;
    background-color: var(--border-on-surface-light);
    margin-top: var(--space-y);
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    z-index: 100;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 3) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 99;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .header-cta {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        padding: 2.5rem 1rem;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5530;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-style: italic;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2c5530;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        text-align: center;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #2c5530;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        text-align: center;
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #777;
        font-size: 0.9rem;
    }
    .footer-social {
        margin-bottom: 1rem;
    }
    .footer-social a {
        display: inline-block;
        margin: 0 0.5rem;
        color: #666;
        text-decoration: none;
        font-weight: bold;
    }
    .footer-social a:hover {
        color: #2c5530;
    }
    .footer-links {
        margin-bottom: 1rem;
    }
    .footer-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
        color: #2c5530;
    }
    .footer-disclaimer {
        max-width: 800px;
        margin: 1rem auto;
        line-height: 1.5;
        font-size: 0.85rem;
        color: #888;
    }
    .footer-copyright {
        margin-top: 1rem;
        color: #999;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
        }
        .footer-brand,
        .footer-nav ul,
        .footer-contact address {
            text-align: left;
            justify-content: start;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
        }
    }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__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-lv10__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

    .contact-layout-a h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
        font-family: Georgia, 'Times New Roman', serif;
        color: var(--neutral-900);
    }

    .contact-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        opacity: .92;
        color: var(--neutral-800);
    }

    .contact-layout-a .panel {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: 18px;
        backdrop-filter: blur(6px);
        color: var(--fg-on-surface);
    }

    .contact-layout-a h3 {
        margin: 0 0 12px;
        font-family: Georgia, 'Times New Roman', serif;
        color: var(--neutral-900);
    }

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

    .contact-layout-a .list strong {
        color: var(--neutral-900);
    }

    .contact-layout-a .list span {
        opacity: .94;
        color: var(--neutral-600);
    }

    .contact-layout-a .social-row {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
        color: var(--neutral-800);
    }

    .contact-layout-a .social-row a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        text-decoration: none;
        color: var(--neutral-800);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
    }

    .contact-layout-a .social-row a:hover {
        background: var(--neutral-100);
    }

.clarifications-l1 {

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

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

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

    .clarifications-l1__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--fg-on-page);
    }

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

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

    .clarifications-l1__note {
        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;
        overflow: hidden;
        animation: l1Float 6s var(--anim-ease) infinite;
    }

    .clarifications-l1__note:nth-child(2n) {
        animation-duration: 7.2s
    }

    .clarifications-l1__note:nth-child(3n) {
        animation-duration: 8.2s
    }

    @keyframes l1Float {
        0%, 100% {
            transform: translateY(0px)
        }
        50% {
            transform: translateY(-6px)
        }
    }

    .clarifications-l1__note::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(240px 120px at 20% 10%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(220px 140px at 85% 30%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
    }

    .clarifications-l1__cap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }

    .clarifications-l1__badge {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 800;
        font-size: 0.9rem;
    }

    .clarifications-l1__spark {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0);
        animation: l1Pulse 2.4s ease-in-out infinite;
    }

    @keyframes l1Pulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0)
        }
        50% {
            transform: scale(1.15);
            box-shadow: 0 0 0 10px rgba(0, 86, 179, 0.12)
        }
    }

    .clarifications-l1__q {
        margin: 0 0 8px;
        position: relative;
        z-index: 1;
        font-size: 1.05rem;
        letter-spacing: -.01em;
    }

    .clarifications-l1__a {
        margin: 0;
        position: relative;
        z-index: 1;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .clarifications-l1__note:hover {
        transform: translateY(-10px) rotate(-0.2deg);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

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

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

    @media (prefers-reduced-motion: reduce) {
        .clarifications-l1__note, .clarifications-l1__spark {
            animation: none;
        }
    }

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

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

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

    .form-layout-a h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--neutral-900);
        font-family: Georgia, 'Times New Roman', Times, serif;
    }

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

    .form-layout-a .card {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: 32px;
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .form-layout-a label {
        display: grid;
        gap: 6px;
        margin-bottom: 16px;
        color: var(--neutral-800);
        font-weight: 500;
    }

    .form-layout-a input:not([type="checkbox"]), .form-layout-a textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--neutral-0);
        color: var(--neutral-900);
        padding: 12px 14px;
        font: inherit;
        transition: border-color var(--anim-duration) var(--anim-ease);
    }

    .form-layout-a input:not([type="checkbox"]):focus, .form-layout-a textarea:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .form-layout-a input::placeholder,
    .form-layout-a textarea::placeholder {
        color: var(--input-placeholder, var(--neutral-300));
    }

    .form-layout-a .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 8px;
        margin-bottom: 20px;
        color: var(--neutral-600);
        font-size: 0.95em;
    }

    .form-layout-a .agree a {
        color: var(--link);
        text-decoration: none;
    }

    .form-layout-a .agree a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    .form-layout-a button {
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 14px 28px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        font-size: 1em;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
        width: 100%;
    }

    .form-layout-a button:hover {
        background: var(--bg-primary-hover);
    }

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    padding: var(--space-y) var(--space-x);
    position: relative;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    flex-wrap: wrap;
}

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

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--fg-on-page);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.header-cta .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.header-cta .cta-button:hover {
    background-color: var(--bg-primary-hover);
}

.header-bottom-line {
    height: 1px;
    background-color: var(--border-on-surface-light);
    margin-top: var(--space-y);
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    z-index: 100;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 3) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 99;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .header-cta {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        padding: 2.5rem 1rem;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5530;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-style: italic;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2c5530;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        text-align: center;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #2c5530;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        text-align: center;
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #777;
        font-size: 0.9rem;
    }
    .footer-social {
        margin-bottom: 1rem;
    }
    .footer-social a {
        display: inline-block;
        margin: 0 0.5rem;
        color: #666;
        text-decoration: none;
        font-weight: bold;
    }
    .footer-social a:hover {
        color: #2c5530;
    }
    .footer-links {
        margin-bottom: 1rem;
    }
    .footer-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
        color: #2c5530;
    }
    .footer-disclaimer {
        max-width: 800px;
        margin: 1rem auto;
        line-height: 1.5;
        font-size: 0.85rem;
        color: #888;
    }
    .footer-copyright {
        margin-top: 1rem;
        color: #999;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
        }
        .footer-brand,
        .footer-nav ul,
        .footer-contact address {
            text-align: left;
            justify-content: start;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
        }
    }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__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-lv10__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    padding: var(--space-y) var(--space-x);
    position: relative;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    flex-wrap: wrap;
}

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

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--fg-on-page);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.header-cta .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.header-cta .cta-button:hover {
    background-color: var(--bg-primary-hover);
}

.header-bottom-line {
    height: 1px;
    background-color: var(--border-on-surface-light);
    margin-top: var(--space-y);
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    z-index: 100;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 3) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 99;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .header-cta {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        padding: 2.5rem 1rem;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5530;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-style: italic;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2c5530;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        text-align: center;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #2c5530;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        text-align: center;
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #777;
        font-size: 0.9rem;
    }
    .footer-social {
        margin-bottom: 1rem;
    }
    .footer-social a {
        display: inline-block;
        margin: 0 0.5rem;
        color: #666;
        text-decoration: none;
        font-weight: bold;
    }
    .footer-social a:hover {
        color: #2c5530;
    }
    .footer-links {
        margin-bottom: 1rem;
    }
    .footer-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
        color: #2c5530;
    }
    .footer-disclaimer {
        max-width: 800px;
        margin: 1rem auto;
        line-height: 1.5;
        font-size: 0.85rem;
        color: #888;
    }
    .footer-copyright {
        margin-top: 1rem;
        color: #999;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
        }
        .footer-brand,
        .footer-nav ul,
        .footer-contact address {
            text-align: left;
            justify-content: start;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
        }
    }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__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-lv10__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

    .thank-mode-b .card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: var(--surface-1);
        box-shadow: var(--shadow-lg);
    }

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

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

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

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    padding: var(--space-y) var(--space-x);
    position: relative;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    flex-wrap: wrap;
}

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

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--fg-on-page);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.header-cta .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.header-cta .cta-button:hover {
    background-color: var(--bg-primary-hover);
}

.header-bottom-line {
    height: 1px;
    background-color: var(--border-on-surface-light);
    margin-top: var(--space-y);
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    z-index: 100;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 3) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 99;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .header-cta {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        padding: 2.5rem 1rem;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5530;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-style: italic;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2c5530;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        text-align: center;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #2c5530;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        text-align: center;
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #777;
        font-size: 0.9rem;
    }
    .footer-social {
        margin-bottom: 1rem;
    }
    .footer-social a {
        display: inline-block;
        margin: 0 0.5rem;
        color: #666;
        text-decoration: none;
        font-weight: bold;
    }
    .footer-social a:hover {
        color: #2c5530;
    }
    .footer-links {
        margin-bottom: 1rem;
    }
    .footer-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
        color: #2c5530;
    }
    .footer-disclaimer {
        max-width: 800px;
        margin: 1rem auto;
        line-height: 1.5;
        font-size: 0.85rem;
        color: #888;
    }
    .footer-copyright {
        margin-top: 1rem;
        color: #999;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
        }
        .footer-brand,
        .footer-nav ul,
        .footer-contact address {
            text-align: left;
            justify-content: start;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
        }
    }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__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-lv10__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);
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--neutral-900);
}

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.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;
    border: 1px solid var(--border-on-surface);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.err-slab-a a:hover {
    background-color: var(--bg-alt);
}