:root {
  --font-family: "Raleway", sans-serif;
  --font-size-base: 18.6px;
  --line-height-base: 1.68;

  --max-w: 1340px;
  --space-x: 1.42rem;
  --space-y: 1.5rem;
  --gap: 1.77rem;

  --radius-xl: 1.25rem;
  --radius-lg: 0.77rem;
  --radius-md: 0.52rem;
  --radius-sm: 0.28rem;

  --shadow-sm: 0 1px 8px rgba(0,0,0,0.12);
  --shadow-md: 0 12px 16px rgba(0,0,0,0.15);
  --shadow-lg: 0 14px 46px rgba(0,0,0,0.19);

  --overlay: rgba(0, 0, 0, 0.45);
  --anim-duration: 480ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #1a5fb4;
  --brand-contrast: #ffffff;
  --accent: #e95420;
  --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: #495057;

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

  --surface-light: #ffffff;
  --fg-on-surface-light: #495057;
  --border-on-surface-light: #e9ecef;

  --bg-primary: #1a5fb4;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #0f4a94;
  --ring: rgba(26, 95, 180, 0.3);

  --bg-accent: #fef6f2;
  --fg-on-accent: #8b2e0c;
  --bg-accent-hover: #d34615;

  --link: #1a5fb4;
  --link-hover: #0f4a94;

  --gradient-hero: linear-gradient(135deg, #1a5fb4 0%, #2c7fd1 100%);
  --gradient-accent: linear-gradient(135deg, #e95420 0%, #ff6b3a 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;}

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.header__logo:hover {
    color: var(--link-hover);
}
.header__nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 0.75);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) * 0.25);
    border-radius: var(--radius-xl);
}
.nav__item {
    display: inline-block;
}
.nav__link {
    display: block;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav__link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav__cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 1);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.nav__cta:hover {
    background-color: var(--bg-accent-hover);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.header__burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-2);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: var(--gap);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 101;
        overflow-y: auto;
    }
    .header__nav.active {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        width: 100%;
        background-color: transparent;
        padding: 0;
        gap: calc(var(--gap) * 0.5);
    }
    .nav__link {
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 0.5);
        border-radius: var(--radius-md);
    }
    .nav__cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .header__burger.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }
    .header__burger.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        color: #333;
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #dee2e6;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 300px;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        color: #495057;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .contact-info li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        line-height: 1.5;
        color: #555;
    }
    .contact-phone a,
    .contact-email a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #007bff;
    }
    .footer-bottom {
        text-align: center;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .disclaimer {
        max-width: 800px;
        margin: 0 auto;
    }
    .disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }
    .disclaimer a:hover {
        color: #0056b3;
    }
    #currentYear {
        font-weight: 600;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .footer-container {
            padding: 2rem 1rem 1rem;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.wp-lang-switcher-v4 {
        position: fixed;
        right: clamp(16px, 2vw, 24px);
        bottom: clamp(16px, 2vw, 24px);
        z-index: 99999;

        --local-random: var(--random-number, 1);
    }

    .wp-lang-switcher-v4__container {
        display: flex;
        align-items: center;
        gap: 0;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: calc(var(--radius-xl) + var(--local-random) * 4px);
        padding: calc(5px + var(--local-random) * 1px);
        box-shadow: var(--shadow-lg);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v4__container.expanded {
        gap: calc(4px + var(--local-random) * 2px);
    }

    .wp-lang-switcher-v4__toggle {
        width: calc(42px + var(--local-random) * 2px);
        height: calc(42px + var(--local-random) * 2px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        border-radius: calc(var(--radius-lg) - var(--local-random) * 2px);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--anim-duration) var(--anim-ease);
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }

    .wp-lang-switcher-v4__toggle::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: spin calc(2.8s + var(--local-random) * 0.4s) linear infinite;
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

    .wp-lang-switcher-v4__icon {
        font-size: calc(18px + var(--local-random) * 2px);
        position: relative;
        z-index: 1;
    }

    .wp-lang-switcher-v4__toggle:hover {
        transform: scale(calc(1.03 + var(--local-random) * 0.02));
    }

    .wp-lang-switcher-v4__list {
        display: flex;
        gap: calc(5px + var(--local-random) * 1px);
        max-width: 0;
        opacity: 0;
        transition: all var(--anim-duration) cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .wp-lang-switcher-v4__container.expanded .wp-lang-switcher-v4__list {
        max-width: 300px;
        opacity: 1;
    }

    .wp-lang-switcher-v4__list button,
    .wp-lang-switcher-v4__list a {
        width: calc(38px + var(--local-random) * 2px);
        height: calc(38px + var(--local-random) * 2px);
        border: 2px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        cursor: pointer;

        font-size: 12px;
        font-weight: 700;
        border-radius: calc(var(--radius-md) - var(--local-random) * 2px);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        flex-shrink: 0;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .wp-lang-switcher-v4__list button::before,
    .wp-lang-switcher-v4__list a::before {
        content: '';
        position: absolute;
        inset: calc(-2px - var(--local-random) * 0.5px);
        border-radius: calc(var(--radius-md) - var(--local-random) * 2px);
        background: var(--gradient-accent);

        z-index: -1;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v4__list button:hover,
    .wp-lang-switcher-v4__list a:hover {
        border-color: transparent;
        color: var(--fg-on-primary);
        transform: translateY(calc(-2px - var(--local-random) * 1px));
    }

    .wp-lang-switcher-v4__list button:hover::before,
    .wp-lang-switcher-v4__list a:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v4__list button span,
    .wp-lang-switcher-v4__list a span {
        position: relative;
        z-index: 1;
    }

.hero--light-v6 {
        padding: 80px 20px;
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .hero--light-v6 {
        background: linear-gradient(45deg, var(--fg-on-page) 0%, var(--fg-on-primary) 50%, var(--accent) 100%);
        background-size: 400% 400%;
        animation: gradientWave 6s ease infinite;
    }

    @keyframes gradientWave {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

    .hero__inner {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .hero__title {
        margin: 0 0 8px;
        font-size: clamp(28px, 5vw, 40px);
    }

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

.value-points-columns {

        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(60px, 8vw, 100px) clamp(18px, 4vw, 48px);
    }

    .value-points-columns__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .value-points-columns__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 70px);

        transform: translateY(-20px);
    }

    .value-points-columns__h p {
        margin: 0 0 0.75rem;
        color: var(--brand);
        letter-spacing: 0.2em;
        text-transform: uppercase;
        font-size: 12px;
    }

    .value-points-columns__h h2 {
        margin: 0;
        font-size: clamp(32px, 4.8vw, 52px);
        font-weight: 800;
        color: var(--fg-on-alt);
    }

    .value-points-columns__wrap {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: clamp(18px, 3vw, 28px);
    }

    .value-points-columns__item {
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        padding: clamp(22px, 3vw, 30px);
        box-shadow: var(--shadow-sm);

        transform: translateY(30px);
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .value-points-columns__item h3 {
        margin: 0;
        font-size: clamp(18px, 2.4vw, 24px);
    }

    .value-points-columns__item p {
        margin: 0;
        color: var(--neutral-600);
    }

    .value-points-columns__item span {
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 11px;
        color: var(--accent);
    }

.next-stages {
        padding: clamp(60px, 9vw, 108px) clamp(16px, 3vw, 36px);
        background: linear-gradient(150deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

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

    .next-stages .intro {
        max-width: 66ch;
        margin: 0 auto 14px;
        text-align: center;
    }

    .next-stages .intro p {
        margin: 8px 0 0;
        opacity: .9;
    }

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

    .next-stages .stages {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }

    .next-stages article {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: stageIn 420ms ease both;
    }

    .next-stages article:nth-child(2) {
        animation-delay: 80ms;
    }

    .next-stages article:nth-child(3) {
        animation-delay: 160ms;
    }

    .next-stages article:nth-child(4) {
        animation-delay: 240ms;
    }

    .next-stages .icon {
        margin: 0 0 6px;
        opacity: .92;
    }

    .next-stages h3 {
        margin: 0 0 8px;
        font-size: 1rem;
    }

    .next-stages a {
        color: var(--fg-on-primary);
        text-decoration: underline;
    }

    @keyframes stageIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

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

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

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

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

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

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

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

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

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

    .why-choose-light .why-choose-light__item p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.header__logo:hover {
    color: var(--link-hover);
}
.header__nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 0.75);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) * 0.25);
    border-radius: var(--radius-xl);
}
.nav__item {
    display: inline-block;
}
.nav__link {
    display: block;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav__link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav__cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 1);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.nav__cta:hover {
    background-color: var(--bg-accent-hover);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.header__burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-2);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: var(--gap);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 101;
        overflow-y: auto;
    }
    .header__nav.active {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        width: 100%;
        background-color: transparent;
        padding: 0;
        gap: calc(var(--gap) * 0.5);
    }
    .nav__link {
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 0.5);
        border-radius: var(--radius-md);
    }
    .nav__cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .header__burger.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }
    .header__burger.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        color: #333;
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #dee2e6;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 300px;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        color: #495057;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .contact-info li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        line-height: 1.5;
        color: #555;
    }
    .contact-phone a,
    .contact-email a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #007bff;
    }
    .footer-bottom {
        text-align: center;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .disclaimer {
        max-width: 800px;
        margin: 0 auto;
    }
    .disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }
    .disclaimer a:hover {
        color: #0056b3;
    }
    #currentYear {
        font-weight: 600;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .footer-container {
            padding: 2rem 1rem 1rem;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

    .identity-lv6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: var(--gap);
        align-items: start;
    }

    .identity-lv6__img img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .identity-lv6__body h3 {
        margin: 0 0 10px;
        color: var(--brand);
        font-size: 1rem;
    }

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

    .identity-lv6__body ul {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 6px;
        color: var(--neutral-800);
    }

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

.our-story {

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

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

    .our-story .our-story__header {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

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

    .our-story .our-story__content {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: clamp(24px, 4vw, 48px);
        align-items: center;
    }

    .our-story .our-story__image {
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

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

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

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

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

    .faq-layout-b .wrap {
        max-width: 940px;
        margin: 0 auto;
    }

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

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

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

    .faq-layout-b .grid {
        display: grid;
        gap: var(--gap);
    }

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

    .faq-layout-b summary {
        cursor: pointer;
        font-weight: 600;
        color: var(--brand);
    }

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

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.header__logo:hover {
    color: var(--link-hover);
}
.header__nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 0.75);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) * 0.25);
    border-radius: var(--radius-xl);
}
.nav__item {
    display: inline-block;
}
.nav__link {
    display: block;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav__link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav__cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 1);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.nav__cta:hover {
    background-color: var(--bg-accent-hover);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.header__burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-2);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: var(--gap);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 101;
        overflow-y: auto;
    }
    .header__nav.active {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        width: 100%;
        background-color: transparent;
        padding: 0;
        gap: calc(var(--gap) * 0.5);
    }
    .nav__link {
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 0.5);
        border-radius: var(--radius-md);
    }
    .nav__cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .header__burger.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }
    .header__burger.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        color: #333;
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #dee2e6;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 300px;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        color: #495057;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .contact-info li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        line-height: 1.5;
        color: #555;
    }
    .contact-phone a,
    .contact-email a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #007bff;
    }
    .footer-bottom {
        text-align: center;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .disclaimer {
        max-width: 800px;
        margin: 0 auto;
    }
    .disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }
    .disclaimer a:hover {
        color: #0056b3;
    }
    #currentYear {
        font-weight: 600;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .footer-container {
            padding: 2rem 1rem 1rem;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.hiw-c2 {

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

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

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

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

    .hiw-c2__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .hiw-c2__wrap {
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .hiw-c2__bar {
        height: 6px;
        background: rgba(0, 0, 0, 0.16);
        position: relative;
    }

    .hiw-c2__fill {
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.85));
        transition: width 600ms var(--anim-ease);
    }

    .hiw-c2__list {
        display: grid;
        gap: 10px;
        padding: var(--space-y) var(--space-x);
    }

    .hiw-c2__row {
        display: grid;
        grid-template-columns: 48px 1fr;
        gap: 12px;
        padding: 12px 12px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .hiw-c2__row.is-on {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.10);
        border-color: rgba(255, 255, 255, 0.18);
    }

    .hiw-c2__n {
        width: 40px;
        height: 40px;
        border-radius: 16px;
        display: grid;
        place-items: center;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        font-weight: 900;
    }

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

    .hiw-c2__d {
        margin-top: 6px;
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

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

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

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

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

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

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

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

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

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

.capabilities-spectrum {

        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(64px, 8vw, 120px) clamp(18px, 4vw, 48px);
        position: relative;
        overflow: hidden;
    }

    .capabilities-spectrum::before,
    .capabilities-spectrum::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 55%);
        
        opacity: 0.6;
    }

    .capabilities-spectrum::after {
        background: radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.12), transparent 50%);
    }

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

    .capabilities-spectrum__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 88px);

        transform: translateY(-20px);
    }

    .capabilities-spectrum__eyebrow {
        font-size: clamp(14px, 2vw, 18px);
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--accent, #ff9d5c);
        margin: 0 0 0.75rem;
    }

    .capabilities-spectrum h2 {
        font-size: clamp(34px, 5vw, 60px);
        font-weight: 800;
        line-height: 1.1;
        margin: 0;
    }

    .capabilities-spectrum__mosaic {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(20px, 3vw, 32px);
        position: relative;
    }

    .capabilities-spectrum__mosaic::before {
        content: '';
        position: absolute;
        inset: 10%;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-xxl, 32px);
        pointer-events: none;
    }

    .capabilities-spectrum__tile {
        background: var(--surface-1, rgba(14, 16, 32, 0.8));
        backdrop-filter: blur(14px);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 36px);
        position: relative;
        overflow: hidden;
        isolation: isolate;
        border: 1px solid rgba(255, 255, 255, 0.08);

        transform: translateY(40px) scale(0.97);
    }

    .capabilities-spectrum__halo {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 65%);

        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .capabilities-spectrum__tile:hover .capabilities-spectrum__halo {
        opacity: 1;
    }

    .capabilities-spectrum__meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1.5rem;
    }

    .capabilities-spectrum__step {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        font-weight: 700;
        font-size: 18px;
        color: var(--accent-contrast, #0c0a0f);
        background: var(--accent, #ff9d5c);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    }

    .capabilities-spectrum__icon {
        font-size: 42px;
        color: var(--fg-on-primary);
        filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.7));
    }

    .capabilities-spectrum__tile h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(20px, 2.5vw, 26px);
        font-weight: 700;
        color: var(--fg-on-surface-light, #f5f5ff);
    }

    .capabilities-spectrum__tile p {
        margin: 0;
        color: var(--neutral-300, rgba(255, 255, 255, 0.78));
        line-height: var(--line-height-base, 1.6);
    }

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.header__logo:hover {
    color: var(--link-hover);
}
.header__nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 0.75);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) * 0.25);
    border-radius: var(--radius-xl);
}
.nav__item {
    display: inline-block;
}
.nav__link {
    display: block;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav__link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav__cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 1);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.nav__cta:hover {
    background-color: var(--bg-accent-hover);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.header__burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-2);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: var(--gap);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 101;
        overflow-y: auto;
    }
    .header__nav.active {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        width: 100%;
        background-color: transparent;
        padding: 0;
        gap: calc(var(--gap) * 0.5);
    }
    .nav__link {
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 0.5);
        border-radius: var(--radius-md);
    }
    .nav__cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .header__burger.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }
    .header__burger.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        color: #333;
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #dee2e6;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 300px;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        color: #495057;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .contact-info li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        line-height: 1.5;
        color: #555;
    }
    .contact-phone a,
    .contact-email a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #007bff;
    }
    .footer-bottom {
        text-align: center;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .disclaimer {
        max-width: 800px;
        margin: 0 auto;
    }
    .disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }
    .disclaimer a:hover {
        color: #0056b3;
    }
    #currentYear {
        font-weight: 600;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .footer-container {
            padding: 2rem 1rem 1rem;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

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

    .form-layout-a button {
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

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

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

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

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

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

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

    .contact-layout-f .capsule article {
        border-radius: 12px;
        border: 1px solid var(--border-on-surface-light);
        padding: 14px 16px;
        background: var(--surface-1);
    }

    .contact-layout-f .capsule h3 {
        margin: 0;
        font-size: .96rem;
        color: var(--brand);
    }

    .contact-layout-f .capsule p {
        margin: 5px 0 0;
    }

    .contact-layout-f .social-strip {
        margin-top: 18px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .contact-layout-f .social-strip a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: 7px 11px;
        border-radius: var(--radius-sm);
    }

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.header__logo:hover {
    color: var(--link-hover);
}
.header__nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 0.75);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) * 0.25);
    border-radius: var(--radius-xl);
}
.nav__item {
    display: inline-block;
}
.nav__link {
    display: block;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav__link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav__cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 1);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.nav__cta:hover {
    background-color: var(--bg-accent-hover);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.header__burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-2);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: var(--gap);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 101;
        overflow-y: auto;
    }
    .header__nav.active {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        width: 100%;
        background-color: transparent;
        padding: 0;
        gap: calc(var(--gap) * 0.5);
    }
    .nav__link {
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 0.5);
        border-radius: var(--radius-md);
    }
    .nav__cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .header__burger.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }
    .header__burger.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        color: #333;
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #dee2e6;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 300px;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        color: #495057;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .contact-info li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        line-height: 1.5;
        color: #555;
    }
    .contact-phone a,
    .contact-email a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #007bff;
    }
    .footer-bottom {
        text-align: center;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .disclaimer {
        max-width: 800px;
        margin: 0 auto;
    }
    .disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }
    .disclaimer a:hover {
        color: #0056b3;
    }
    #currentYear {
        font-weight: 600;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .footer-container {
            padding: 2rem 1rem 1rem;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

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

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

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

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

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.header__logo:hover {
    color: var(--link-hover);
}
.header__nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 0.75);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) * 0.25);
    border-radius: var(--radius-xl);
}
.nav__item {
    display: inline-block;
}
.nav__link {
    display: block;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav__link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav__cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 1);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.nav__cta:hover {
    background-color: var(--bg-accent-hover);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.header__burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-2);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: var(--gap);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 101;
        overflow-y: auto;
    }
    .header__nav.active {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        width: 100%;
        background-color: transparent;
        padding: 0;
        gap: calc(var(--gap) * 0.5);
    }
    .nav__link {
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 0.5);
        border-radius: var(--radius-md);
    }
    .nav__cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .header__burger.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }
    .header__burger.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        color: #333;
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #dee2e6;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 300px;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        color: #495057;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .contact-info li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        line-height: 1.5;
        color: #555;
    }
    .contact-phone a,
    .contact-email a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #007bff;
    }
    .footer-bottom {
        text-align: center;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .disclaimer {
        max-width: 800px;
        margin: 0 auto;
    }
    .disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }
    .disclaimer a:hover {
        color: #0056b3;
    }
    #currentYear {
        font-weight: 600;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .footer-container {
            padding: 2rem 1rem 1rem;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

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

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

    .policy-layout-a .meta {
        margin: 0;
        color: var(--brand);
        font-weight: 600;
    }

    .policy-layout-a h3 {
        margin: 8px 0;
    }

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

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.header__logo:hover {
    color: var(--link-hover);
}
.header__nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 0.75);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) * 0.25);
    border-radius: var(--radius-xl);
}
.nav__item {
    display: inline-block;
}
.nav__link {
    display: block;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav__link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav__cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 1);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.nav__cta:hover {
    background-color: var(--bg-accent-hover);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.header__burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-2);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: var(--gap);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 101;
        overflow-y: auto;
    }
    .header__nav.active {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        width: 100%;
        background-color: transparent;
        padding: 0;
        gap: calc(var(--gap) * 0.5);
    }
    .nav__link {
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 0.5);
        border-radius: var(--radius-md);
    }
    .nav__cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .header__burger.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }
    .header__burger.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        color: #333;
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #dee2e6;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 300px;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        color: #495057;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .contact-info li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        line-height: 1.5;
        color: #555;
    }
    .contact-phone a,
    .contact-email a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #007bff;
    }
    .footer-bottom {
        text-align: center;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .disclaimer {
        max-width: 800px;
        margin: 0 auto;
    }
    .disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }
    .disclaimer a:hover {
        color: #0056b3;
    }
    #currentYear {
        font-weight: 600;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .footer-container {
            padding: 2rem 1rem 1rem;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

    .thank-mode-d .core {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .24);
    }

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

    .thank-mode-d p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .thank-mode-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        background: var(--accent-contrast);
        color: var(--accent);
        font-weight: 600;
        border: 1px solid transparent;
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .thank-mode-d a:hover {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: var(--accent-contrast);
    }

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.header__logo:hover {
    color: var(--link-hover);
}
.header__nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 0.75);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) * 0.25);
    border-radius: var(--radius-xl);
}
.nav__item {
    display: inline-block;
}
.nav__link {
    display: block;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav__link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav__cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 1);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.nav__cta:hover {
    background-color: var(--bg-accent-hover);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.header__burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-2);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: var(--gap);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 101;
        overflow-y: auto;
    }
    .header__nav.active {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        width: 100%;
        background-color: transparent;
        padding: 0;
        gap: calc(var(--gap) * 0.5);
    }
    .nav__link {
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 0.5);
        border-radius: var(--radius-md);
    }
    .nav__cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .header__burger.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }
    .header__burger.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        color: #333;
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #dee2e6;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 300px;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        color: #495057;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .contact-info li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        line-height: 1.5;
        color: #555;
    }
    .contact-phone a,
    .contact-email a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #007bff;
    }
    .footer-bottom {
        text-align: center;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .disclaimer {
        max-width: 800px;
        margin: 0 auto;
    }
    .disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }
    .disclaimer a:hover {
        color: #0056b3;
    }
    #currentYear {
        font-weight: 600;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .footer-container {
            padding: 2rem 1rem 1rem;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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