:root {
  --font-family: "Archivo", sans-serif;
  --font-size-base: 15.8px;
  --line-height-base: 1.55;

  --max-w: 1280px;
  --space-x: 1.02rem;
  --space-y: 1.36rem;
  --gap: 1.11rem;

  --radius-xl: 1.03rem;
  --radius-lg: 0.7rem;
  --radius-md: 0.44rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.11);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.14);
  --shadow-lg: 0 20px 26px rgba(0,0,0,0.17);

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

  --brand: #0056b3;
  --brand-contrast: #ffffff;
  --accent: #e63946;
  --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: #0056b3;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #004494;
  --ring: #0056b3;

  --bg-accent: #ffeaea;
  --fg-on-accent: #a3151a;
  --bg-accent-hover: #ff6b6b;

  --link: #0056b3;
  --link-hover: #004494;

  --gradient-hero: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
  --gradient-accent: linear-gradient(135deg, #e63946 0%, #c1121f 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.08);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}

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

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.primary-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    flex-shrink: 0;
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-primary-hover);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 101;
}
.menu-toggle__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        transition: right var(--anim-duration) var(--anim-ease);
        justify-content: flex-start;
        z-index: 100;
    }

    .primary-nav[data-visible="true"] {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.125rem;
        display: block;
        padding: 0.5rem 0;
    }

    .cta-button {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-brand {
        flex: 1;
        min-width: 150px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
    }
    .footer-nav {
        flex: 2;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0d6efd;
    }
    .footer-contact {
        flex: 2;
        min-width: 200px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.5rem;
        color: #6c757d;
    }
    .footer-contact a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #0d6efd;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        color: #6c757d;
        font-size: 0.9rem;
    }
    .footer-copyright {
        flex: 1;
        min-width: 250px;
    }
    .footer-legal {
        flex: 1;
        min-width: 200px;
        text-align: center;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #0d6efd;
    }
    .footer-disclaimer {
        flex: 2;
        min-width: 300px;
        text-align: right;
        font-style: italic;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.8rem;
        }
        .footer-disclaimer {
            text-align: center;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.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-cards {
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(60px, 8vw, 110px) clamp(20px, 4vw, 56px);
    }

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

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

        transform: translateY(-20px);
    }

    .value-points-cards__h h2 {
        margin: 0 0 0.75rem;
        font-size: clamp(32px, 4.8vw, 52px);
        font-weight: 800;
    }

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

    .value-points-cards__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .value-points-cards__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        padding: clamp(24px, 3vw, 32px);
        display: flex;
        gap: 1rem;
        box-shadow: var(--shadow-md);

        transform: translateY(30px);
    }

    .value-points-cards__card h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(20px, 2.4vw, 26px);
    }

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

    .value-points-cards__card span {
        display: inline-flex;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 11px;
        color: var(--brand);
    }

.touch-stream {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .touch-stream .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .touch-stream .header {
        margin-bottom: 12px;
    }

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

    .touch-stream .header p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .touch-stream .stream {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 8px;
    }

    .touch-stream .chip {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        padding: 10px 12px;
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
    }

    .touch-stream .chip em {
        font-style: normal;
        opacity: .85;
    }

    .touch-stream .foot {
        margin-top: 12px;
    }

    .touch-stream .foot a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: var(--radius-md);
        padding: 10px 14px;
        display: inline-block;
    }

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

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

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

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

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

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

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

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

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

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.primary-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    flex-shrink: 0;
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-primary-hover);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 101;
}
.menu-toggle__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        transition: right var(--anim-duration) var(--anim-ease);
        justify-content: flex-start;
        z-index: 100;
    }

    .primary-nav[data-visible="true"] {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.125rem;
        display: block;
        padding: 0.5rem 0;
    }

    .cta-button {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-brand {
        flex: 1;
        min-width: 150px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
    }
    .footer-nav {
        flex: 2;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0d6efd;
    }
    .footer-contact {
        flex: 2;
        min-width: 200px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.5rem;
        color: #6c757d;
    }
    .footer-contact a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #0d6efd;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        color: #6c757d;
        font-size: 0.9rem;
    }
    .footer-copyright {
        flex: 1;
        min-width: 250px;
    }
    .footer-legal {
        flex: 1;
        min-width: 200px;
        text-align: center;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #0d6efd;
    }
    .footer-disclaimer {
        flex: 2;
        min-width: 300px;
        text-align: right;
        font-style: italic;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.8rem;
        }
        .footer-disclaimer {
            text-align: center;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

    .identity-lv4__head {
        margin-bottom: 15px;
    }

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

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

    .identity-lv4__head span {
        color: var(--neutral-600);
    }

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

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

    .identity-lv4__line {
        display: flex;
        align-items: baseline;
        gap: 8px;
        flex-wrap: wrap;
    }

    .identity-lv4__line i {
        font-style: normal;
        color: var(--link);
    }

    .identity-lv4__line h3 {
        margin: 0;
    }

    .identity-lv4__stack p {
        margin: 7px 0 6px;
        color: var(--neutral-600);
    }

    .identity-lv4__stack small {
        color: var(--neutral-800);
        font-weight: 600;
    }

.team-radiance {
        background: radial-gradient(circle at top right, rgba(255, 183, 96, 0.75), rgba(255, 183, 96, 0)), var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(60px, 8vw, 110px) clamp(16px, 4vw, 48px);
    }

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

    .team-radiance__h {
        text-align: center;
        margin-bottom: clamp(40px, 5vw, 72px);

        transform: translateY(-20px);
    }

    .team-radiance__h span {
        display: inline-flex;
        padding: 0.35rem 1rem;
        border-radius: 999px;
        background: rgba(255, 206, 182, 0.2);
        border: 1px solid rgba(255, 206, 182, 0.4);
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 0.8rem;
    }

    .team-radiance__h h2 {
        margin: 0.75rem 0 0;
        font-size: clamp(34px, 4.8vw, 56px);
    }

    .team-radiance__list {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 32px);
    }

    .team-radiance__item {
        background: rgba(255, 206, 182, 0.2);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: clamp(20px, 3vw, 32px);
        box-shadow: 0 25px 45px rgba(6, 3, 19, 0.4);

        transform: translateY(26px);
    }

    .team-radiance__header {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
        align-items: center;
        margin-bottom: 1rem;
    }

    .team-radiance__photo {
        width: 72px;
        height: 72px;
        border-radius: var(--radius-sm);
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.4);
    }

    .team-radiance__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .team-radiance__header h3 {
        margin: 0;
        font-size: 1.35rem;
    }

    .team-radiance__header p {
        margin: 0.15rem 0 0;
        color: rgba(255, 255, 255, 0.7);
    }

    .team-radiance__badge {
        padding: 0.5rem 0.85rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.15);
        font-weight: 700;
        text-align: center;
    }

    .team-radiance__bio {
        margin: 0 0 0.75rem;
        color: rgba(255, 255, 255, 0.78);
    }

    .team-radiance__impact {
        font-weight: 600;
        color: #FFD1C0;
    }

.our-story {

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

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

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

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

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

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

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

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

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

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

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

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

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

    .faq-layout-c .faq-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
        counter-reset: faq;
    }

    .faq-layout-c .row {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .faq-layout-c .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        cursor: pointer;
    }

    .faq-layout-c .q span {
        display: inline-block;
        min-width: 50px;
        color: var(--brand);
        font-weight: 700;
    }

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

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

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

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

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.primary-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    flex-shrink: 0;
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-primary-hover);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 101;
}
.menu-toggle__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        transition: right var(--anim-duration) var(--anim-ease);
        justify-content: flex-start;
        z-index: 100;
    }

    .primary-nav[data-visible="true"] {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.125rem;
        display: block;
        padding: 0.5rem 0;
    }

    .cta-button {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-brand {
        flex: 1;
        min-width: 150px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
    }
    .footer-nav {
        flex: 2;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0d6efd;
    }
    .footer-contact {
        flex: 2;
        min-width: 200px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.5rem;
        color: #6c757d;
    }
    .footer-contact a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #0d6efd;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        color: #6c757d;
        font-size: 0.9rem;
    }
    .footer-copyright {
        flex: 1;
        min-width: 250px;
    }
    .footer-legal {
        flex: 1;
        min-width: 200px;
        text-align: center;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #0d6efd;
    }
    .footer-disclaimer {
        flex: 2;
        min-width: 300px;
        text-align: right;
        font-style: italic;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.8rem;
        }
        .footer-disclaimer {
            text-align: center;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

        transform: translateY(-18px);
    }

    .index-feedback-list__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: var(--neutral-600);
    }

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

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

    .index-feedback-list__row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

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

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

    .index-feedback-list__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

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

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

    .index-feedback-list__rating {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

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

    .index-feedback-list__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--fg-on-page);
    }

    .index-feedback-list__a {
        display: none;
        padding: 0 16px 14px;
        color: var(--neutral-800);
        overflow: hidden;
    }

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

    .index-feedback-list__chip {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
    }

    @media (max-width: 560px) {
        .index-feedback-list__q {
            align-items: flex-start;
        }

        .index-feedback-list__rating {
            margin-top: 2px;
        }

        .index-feedback-list__meta {
            display: none;
        }
    }

.capabilities-alt {

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

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

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

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

    }

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

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

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

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

        transform: translateX(-50px);
    }

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

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

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

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

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

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

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

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

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

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

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

.hiw-l2 {

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

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

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

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

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

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

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

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

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

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

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

    .hiw-l2__panes {
        padding: 16px;
    }

    .hiw-l2__pane {
        display: none;
    }

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

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

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

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

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

        .hiw-l2__tab {
            transition: none;
        }
    }

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

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

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

    .plans-cv2__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv2__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

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

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

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

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

    .plans-cv2__line h3 {
        margin: 0;
    }

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

    .plans-cv2__price {
        margin: 10px 0 8px;
        font-size: 1.45rem;
        font-weight: 800;
    }

    .plans-cv2__list p {
        margin: 0 0 6px;
        opacity: .92;
    }

    .plans-cv2__card button {
        width: 100%;
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.primary-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    flex-shrink: 0;
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-primary-hover);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 101;
}
.menu-toggle__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        transition: right var(--anim-duration) var(--anim-ease);
        justify-content: flex-start;
        z-index: 100;
    }

    .primary-nav[data-visible="true"] {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.125rem;
        display: block;
        padding: 0.5rem 0;
    }

    .cta-button {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-brand {
        flex: 1;
        min-width: 150px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
    }
    .footer-nav {
        flex: 2;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0d6efd;
    }
    .footer-contact {
        flex: 2;
        min-width: 200px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.5rem;
        color: #6c757d;
    }
    .footer-contact a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #0d6efd;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        color: #6c757d;
        font-size: 0.9rem;
    }
    .footer-copyright {
        flex: 1;
        min-width: 250px;
    }
    .footer-legal {
        flex: 1;
        min-width: 200px;
        text-align: center;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #0d6efd;
    }
    .footer-disclaimer {
        flex: 2;
        min-width: 300px;
        text-align: right;
        font-style: italic;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.8rem;
        }
        .footer-disclaimer {
            text-align: center;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

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

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

    .contact-layout-a .panel {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        padding: 18px;
        backdrop-filter: blur(6px);
    }

    .contact-layout-a h3 {
        margin: 0 0 12px;
    }

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

    .contact-layout-a .list span {
        opacity: .94;
    }

    .contact-layout-a .social-row {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .contact-layout-a .social-row a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .4);
    }

    .contact-layout-a .social-row a:hover {
        background: rgba(255, 255, 255, .15);
    }

.support-lv4 {
        padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .support-lv4__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }

    .support-lv4__wrap article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .support-lv4__wrap h3 {
        margin: 0 0 7px;
        color: var(--brand);
    }

    .support-lv4__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    @media (max-width: 700px) {
        .support-lv4__wrap {
            grid-template-columns: 1fr;
        }
    }

.connect {
        color: var(--accent-contrast);
        background: var(--accent);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .connect .connect__header {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 56px);
    }

    .connect .connect__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

    .connect .connect__header p {
        font-size: clamp(16px, 2vw, 18px);
        margin: 0;
    }

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

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .connect .connect__item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .connect .connect__icon {
        font-size: clamp(40px, 7vw, 64px);
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

    .connect .connect__name {
        font-size: clamp(16px, 2.5vw, 18px);
        font-weight: 600;
        color: var(--fg-on-page);
    }

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

    .form-layout-b .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-b .split {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 16px;
    }

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

    .form-layout-b aside h3 {
        margin: 0;
    }

    .form-layout-b aside p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .form-layout-b form {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
    }

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

    .form-layout-b input, .form-layout-b textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

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

    @media (max-width: 760px) {
        .form-layout-b .split {
            grid-template-columns: 1fr;
        }
    }

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

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.primary-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    flex-shrink: 0;
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-primary-hover);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 101;
}
.menu-toggle__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        transition: right var(--anim-duration) var(--anim-ease);
        justify-content: flex-start;
        z-index: 100;
    }

    .primary-nav[data-visible="true"] {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.125rem;
        display: block;
        padding: 0.5rem 0;
    }

    .cta-button {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-brand {
        flex: 1;
        min-width: 150px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
    }
    .footer-nav {
        flex: 2;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0d6efd;
    }
    .footer-contact {
        flex: 2;
        min-width: 200px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.5rem;
        color: #6c757d;
    }
    .footer-contact a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #0d6efd;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        color: #6c757d;
        font-size: 0.9rem;
    }
    .footer-copyright {
        flex: 1;
        min-width: 250px;
    }
    .footer-legal {
        flex: 1;
        min-width: 200px;
        text-align: center;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #0d6efd;
    }
    .footer-disclaimer {
        flex: 2;
        min-width: 300px;
        text-align: right;
        font-style: italic;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.8rem;
        }
        .footer-disclaimer {
            text-align: center;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

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

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

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

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

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

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

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

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

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.primary-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    flex-shrink: 0;
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-primary-hover);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 101;
}
.menu-toggle__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        transition: right var(--anim-duration) var(--anim-ease);
        justify-content: flex-start;
        z-index: 100;
    }

    .primary-nav[data-visible="true"] {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.125rem;
        display: block;
        padding: 0.5rem 0;
    }

    .cta-button {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-brand {
        flex: 1;
        min-width: 150px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
    }
    .footer-nav {
        flex: 2;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0d6efd;
    }
    .footer-contact {
        flex: 2;
        min-width: 200px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.5rem;
        color: #6c757d;
    }
    .footer-contact a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #0d6efd;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        color: #6c757d;
        font-size: 0.9rem;
    }
    .footer-copyright {
        flex: 1;
        min-width: 250px;
    }
    .footer-legal {
        flex: 1;
        min-width: 200px;
        text-align: center;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #0d6efd;
    }
    .footer-disclaimer {
        flex: 2;
        min-width: 300px;
        text-align: right;
        font-style: italic;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.8rem;
        }
        .footer-disclaimer {
            text-align: center;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

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

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

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

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

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

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

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

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

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.primary-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    flex-shrink: 0;
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-primary-hover);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 101;
}
.menu-toggle__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        transition: right var(--anim-duration) var(--anim-ease);
        justify-content: flex-start;
        z-index: 100;
    }

    .primary-nav[data-visible="true"] {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.125rem;
        display: block;
        padding: 0.5rem 0;
    }

    .cta-button {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-brand {
        flex: 1;
        min-width: 150px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
    }
    .footer-nav {
        flex: 2;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0d6efd;
    }
    .footer-contact {
        flex: 2;
        min-width: 200px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.5rem;
        color: #6c757d;
    }
    .footer-contact a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #0d6efd;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        color: #6c757d;
        font-size: 0.9rem;
    }
    .footer-copyright {
        flex: 1;
        min-width: 250px;
    }
    .footer-legal {
        flex: 1;
        min-width: 200px;
        text-align: center;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #0d6efd;
    }
    .footer-disclaimer {
        flex: 2;
        min-width: 300px;
        text-align: right;
        font-style: italic;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.8rem;
        }
        .footer-disclaimer {
            text-align: center;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.thank-mode-e {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: repeating-linear-gradient(135deg, var(--bg-alt), var(--bg-alt) 16px, var(--neutral-0) 16px, var(--neutral-0) 32px);
        color: var(--fg-on-page);
    }

    .thank-mode-e .wrap {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

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

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

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.primary-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    flex-shrink: 0;
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-primary-hover);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 101;
}
.menu-toggle__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        transition: right var(--anim-duration) var(--anim-ease);
        justify-content: flex-start;
        z-index: 100;
    }

    .primary-nav[data-visible="true"] {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.125rem;
        display: block;
        padding: 0.5rem 0;
    }

    .cta-button {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-brand {
        flex: 1;
        min-width: 150px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
    }
    .footer-nav {
        flex: 2;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0d6efd;
    }
    .footer-contact {
        flex: 2;
        min-width: 200px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.5rem;
        color: #6c757d;
    }
    .footer-contact a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #0d6efd;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        color: #6c757d;
        font-size: 0.9rem;
    }
    .footer-copyright {
        flex: 1;
        min-width: 250px;
    }
    .footer-legal {
        flex: 1;
        min-width: 200px;
        text-align: center;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #0d6efd;
    }
    .footer-disclaimer {
        flex: 2;
        min-width: 300px;
        text-align: right;
        font-style: italic;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.8rem;
        }
        .footer-disclaimer {
            text-align: center;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.err-slab-e {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 14px, var(--neutral-0) 14px, var(--neutral-0) 28px);
        color: var(--fg-on-page);
    }

    .err-slab-e .inner {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(26px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

    .err-slab-e a {
        display: inline-block;
        margin-top: 16px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }