:root {
  --font-family: "Open Sans", sans-serif;
  --font-size-base: 13.5px;
  --line-height-base: 1.26;

  --max-w: 1020px;
  --space-x: 0.64rem;
  --space-y: 0.83rem;
  --gap: 0.81rem;

  --radius-xl: 0.85rem;
  --radius-lg: 0.54rem;
  --radius-md: 0.3rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.13);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);

  --overlay: rgba(255, 255, 255, 0.85);
  --anim-duration: 180ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 1;

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

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

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

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

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

  --surface-light: #ffffff;
  --fg-on-surface-light: #343a40;
  --border-on-surface-light: #dee2e6;

  --bg-primary: #2c3e50;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1a252f;
  --ring: rgba(52, 152, 219, 0.4);

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

  --link: #3498db;
  --link-hover: #2980b9;

  --gradient-hero: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  --gradient-accent: linear-gradient(90deg, #3498db 0%, #2980b9 100%);

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

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

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

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    background-color: var(--btn-ghost-bg);
    position: relative;
    z-index: 1001;
}

.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon {
    top: 50%;
    transform: translate(-50%, -50%);
}

.menu-toggle-icon::before {
    content: '';
    top: -6px;
}

.menu-toggle-icon::after {
    content: '';
    top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: translateX(-50%) rotate(-45deg);
}

.site-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--brand);
    transform: scaleX(0);
    transition: transform var(--anim-duration) var(--anim-ease);
    border-radius: 1px;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

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

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: min(80vw, 300px);
        padding: 5rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .site-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }

    .nav-link::after {
        left: 1rem;
        right: auto;
        width: 2rem;
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        color: #333;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .legal-links {
        margin-bottom: 1rem;
    }
    .legal-links a {
        color: #3498db;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.9rem;
        color: #7f8c8d;
        margin-top: auto;
    }
    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #3498db;
    }
    .contact-block p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-block a {
        color: #3498db;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .disclaimer {
            max-width: 100%;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.intro-focus-alt {

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

    .intro-focus-alt::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: var(--accent);
        border-radius: 50%;
        opacity: 0.1;
        filter: blur(80px);
        animation: pulseGlow 4s ease-in-out infinite;
    }

    @keyframes pulseGlow {
        0%, 100% {
            transform: scale(1);
            opacity: 0.1;
        }
        50% {
            transform: scale(1.2);
            opacity: 0.15;
        }
    }

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

    .intro-focus-alt .intro-focus-alt__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(32px, 5vw, 64px);
        align-items: center;
    }

    @media (min-width: 768px) {
        .intro-focus-alt .intro-focus-alt__grid {
            grid-template-columns: 1.2fr 1fr;
        }
    }

    .intro-focus-alt .intro-focus-alt__visual {
        order: var(--random-number);
    }

    .intro-focus-alt .intro-focus-alt__title {
        font-size: clamp(32px, 6vw, 56px);
        font-weight: 800;
        margin: 0 0 1.5rem;
        line-height: 1.1;
        position: relative;
    }

    .intro-focus-alt .intro-focus-alt__title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 80px;
        height: 4px;
        background: var(--accent);
        border-radius: var(--radius-sm);
        animation: expandLine 1s ease-out 0.8s forwards;
        transform: scaleX(0);
        transform-origin: left;
    }

    @keyframes expandLine {
        to {
            transform: scaleX(1);
        }
    }

    .intro-focus-alt .intro-focus-alt__description {
        font-size: clamp(16px, 2vw, 20px);
        margin: 2rem 0 0;
        opacity: 0.9;
        line-height: var(--line-height-base);
    }

    .intro-focus-alt .intro-focus-alt__card {
        background: var(--brand-contrast);
        padding: clamp(32px, 4vw, 48px);
        border-radius: var(--radius-xl);
        text-align: center;
        box-shadow: var(--shadow-lg);
        position: relative;
        overflow: hidden;
    }

    .intro-focus-alt .intro-focus-alt__card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
        to {
            left: 100%;
        }
    }

    .intro-focus-alt .intro-focus-alt__icon {
        color: var(--fg-on-surface-light);
        font-size: clamp(48px, 6vw, 64px);
        margin-bottom: 1rem;
    }

    .intro-focus-alt .intro-focus-alt__fact {
        font-size: clamp(40px, 6vw, 56px);
        font-weight: 900;
        color: var(--brand);
        margin-bottom: 0.5rem;
        line-height: 1;
    }

    .intro-focus-alt .intro-focus-alt__caption {
        font-size: clamp(14px, 1.5vw, 18px);
        color: var(--neutral-600);
        font-weight: 600;
    }

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

    .value-pills .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .value-pills h2 {
        margin: 0;
        font-size: clamp(30px, 4.8vw, 52px);
        font-family: Georgia, 'Times New Roman', Times, serif;
        color: var(--neutral-900);
    }

    .value-pills .lead {
        margin: 10px 0 16px;
        color: var(--neutral-600);
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .value-pills .pills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 32px;
    }

    .value-pills .pill {
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
        background: var(--surface-1);
        padding: 8px 12px;
        display: flex;
        gap: 8px;
        align-items: center;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .value-pills .pill:hover {
        background: var(--surface-2);
        border-color: var(--neutral-300);
        box-shadow: var(--shadow-sm);
    }

    .value-pills .pill strong {
        font-weight: 600;
        color: var(--neutral-800);
        white-space: nowrap;
    }

    .value-pills .pill span {
        color: var(--neutral-600);
        font-size: .85rem;
    }

    .value-pills .note {
        margin: 24px 0 0;
        color: var(--neutral-600);
        font-style: italic;
        font-size: 0.95rem;
    }

.social-c2 {

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

    .social-c2::before {
        content: '';
        position: absolute;
        inset: -30%;
        background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
        radial-gradient(circle at 80% 55%, rgba(255, 107, 53, 0.18), transparent 55%);
        filter: blur(18px);
        animation: socialC2Bg 7s var(--anim-ease) infinite;
        pointer-events: none;
    }

    @keyframes socialC2Bg {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1)
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.04)
        }
    }

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

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

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

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

    .social-c2__grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 14px;
        align-items: stretch;
    }

    .social-c2__quotes {
        position: relative;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-c2__quote {
        display: none;
        padding: 18px 18px 16px;
    }

    .social-c2__quote.is-on {
        display: block;
    }

    .social-c2__qText {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: rgba(255, 255, 255, .92);
    }

    .social-c2__qMeta {
        margin-top: 14px;
        display: flex;
        gap: 10px;
        align-items: baseline;
        flex-wrap: wrap;
        color: rgba(255, 255, 255, .86);
    }

    .social-c2__qName {
        font-weight: 900;
    }

    .social-c2__qRole {
        opacity: .85;
    }

    .social-c2__metrics {
        display: grid;
        gap: 12px;
    }

    .social-c2__metric {
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-md);
        padding: 16px;
    }

    .social-c2__mVal {
        font-weight: 900;
        font-size: clamp(22px, 3vw, 32px);
        letter-spacing: -.01em;
    }

    .social-c2__mLbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .82);
    }

    @media (max-width: 980px) {
        .social-c2__grid {
            grid-template-columns:1fr;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .social-c2::before {
            animation: none;
        }
    }

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

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

    .touch-column .head {
        margin-bottom: 14px;
    }

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

    .touch-column .head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .touch-column .cols {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .touch-column .left,
    .touch-column .right {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 12px;
    }

    .touch-column .list-title {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .touch-column article {
        padding: 8px 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .touch-column article:last-child {
        border-bottom: 0;
    }

    .touch-column h3 {
        margin: 0 0 6px;
    }

    .touch-column article p {
        margin: 0 0 6px;
        color: var(--neutral-600);
    }

    .touch-column article a {
        color: var(--link);
        text-decoration: none;
    }

    .touch-column .right img {
        width: 100%;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface-light);
    }

    .touch-column .right a {
        display: inline-block;
        margin-top: 10px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 860px) {
        .touch-column .cols {
            grid-template-columns: 1fr;
        }
    }

.visual-highlights-flow {

        background: radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.25), transparent 55%),
        var(--gradient-accent),
        var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(70px, 9vw, 120px) clamp(20px, 4vw, 60px);
        position: relative;
        overflow: hidden;
    }

    .visual-highlights-flow::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.18), transparent 55%);
        pointer-events: none;
    }

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

    .visual-highlights-flow__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 88px);

        transform: translateY(-20px);
    }

    .visual-highlights-flow h2 {
        margin: 0 0 1rem;
        font-size: clamp(34px, 5vw, 60px);
        font-weight: 800;
    }

    .visual-highlights-flow__subtitle {
        margin: 0;
        font-size: clamp(16px, 2vw, 20px);
        color: rgba(255, 255, 255, 0.82);
    }

    .visual-highlights-flow__rail {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: clamp(24px, 3vw, 40px);
    }

    .visual-highlights-flow__panel {
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.15);
        overflow: hidden;
        box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);

        transform: translateY(40px);
    }

    .visual-highlights-flow__media {
        position: relative;
        padding-top: 62%;
        background-size: cover;
        background-position: center;
    }

    .visual-highlights-flow__glow {
        position: absolute;
        inset: 0;

        transition: opacity 0.4s ease;
        background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.35), transparent 60%);
    }

    .visual-highlights-flow__panel:hover .visual-highlights-flow__glow {
        opacity: 1;
    }

    .visual-highlights-flow__step {
        position: absolute;
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--accent);
        color: var(--accent-contrast);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: 800;
        letter-spacing: 0.04em;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    }

    .visual-highlights-flow__content {
        padding: clamp(24px, 3vw, 32px);
    }

    .visual-highlights-flow__caption {
        margin: 0 0 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.65);
    }

    .visual-highlights-flow__content h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(20px, 2.5vw, 26px);
        color: var(--neutral-0);
    }

    .visual-highlights-flow__content p {
        margin: 0;
        color: rgba(255, 255, 255, 0.78);
        line-height: var(--line-height-base);
    }

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

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

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    background-color: var(--btn-ghost-bg);
    position: relative;
    z-index: 1001;
}

.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon {
    top: 50%;
    transform: translate(-50%, -50%);
}

.menu-toggle-icon::before {
    content: '';
    top: -6px;
}

.menu-toggle-icon::after {
    content: '';
    top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: translateX(-50%) rotate(-45deg);
}

.site-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--brand);
    transform: scaleX(0);
    transition: transform var(--anim-duration) var(--anim-ease);
    border-radius: 1px;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

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

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: min(80vw, 300px);
        padding: 5rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .site-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }

    .nav-link::after {
        left: 1rem;
        right: auto;
        width: 2rem;
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        color: #333;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .legal-links {
        margin-bottom: 1rem;
    }
    .legal-links a {
        color: #3498db;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.9rem;
        color: #7f8c8d;
        margin-top: auto;
    }
    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #3498db;
    }
    .contact-block p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-block a {
        color: #3498db;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .disclaimer {
            max-width: 100%;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .identity-cv3__list h3 {
        margin: 0;
    }

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

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

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

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

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

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

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

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
}

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

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

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

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

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

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    background-color: var(--btn-ghost-bg);
    position: relative;
    z-index: 1001;
}

.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon {
    top: 50%;
    transform: translate(-50%, -50%);
}

.menu-toggle-icon::before {
    content: '';
    top: -6px;
}

.menu-toggle-icon::after {
    content: '';
    top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: translateX(-50%) rotate(-45deg);
}

.site-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--brand);
    transform: scaleX(0);
    transition: transform var(--anim-duration) var(--anim-ease);
    border-radius: 1px;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

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

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: min(80vw, 300px);
        padding: 5rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .site-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }

    .nav-link::after {
        left: 1rem;
        right: auto;
        width: 2rem;
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        color: #333;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .legal-links {
        margin-bottom: 1rem;
    }
    .legal-links a {
        color: #3498db;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.9rem;
        color: #7f8c8d;
        margin-top: auto;
    }
    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #3498db;
    }
    .contact-block p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-block a {
        color: #3498db;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .disclaimer {
            max-width: 100%;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.hiw-c2 {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .plans-lv4__line h3 {
        margin: 0;
    }

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

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

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

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

.statistics {
    padding: clamp(48px, 8vw, 80px) 0;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

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

.statistics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--gap);
    text-align: center;
}

.statistics__card {
    padding: clamp(16px, 3vw, 32px);
}

.statistics__number {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--brand);
}

.statistics__label {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--neutral-800);
}

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

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

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

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    background-color: var(--btn-ghost-bg);
    position: relative;
    z-index: 1001;
}

.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon {
    top: 50%;
    transform: translate(-50%, -50%);
}

.menu-toggle-icon::before {
    content: '';
    top: -6px;
}

.menu-toggle-icon::after {
    content: '';
    top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: translateX(-50%) rotate(-45deg);
}

.site-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--brand);
    transform: scaleX(0);
    transition: transform var(--anim-duration) var(--anim-ease);
    border-radius: 1px;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

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

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: min(80vw, 300px);
        padding: 5rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .site-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }

    .nav-link::after {
        left: 1rem;
        right: auto;
        width: 2rem;
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        color: #333;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .legal-links {
        margin-bottom: 1rem;
    }
    .legal-links a {
        color: #3498db;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.9rem;
        color: #7f8c8d;
        margin-top: auto;
    }
    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #3498db;
    }
    .contact-block p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-block a {
        color: #3498db;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .disclaimer {
            max-width: 100%;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.clarifications-c1 {

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

    .clarifications-c1::before {
        content: '';
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.18), transparent 52%);
        filter: blur(18px);
        animation: c1Glow 6s var(--anim-ease) infinite;
        opacity: .8;
        pointer-events: none;
    }

    @keyframes c1Glow {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1);
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.03);
        }
    }

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

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

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

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

    .clarifications-c1__grid {
        display: grid;
        gap: 12px;
    }

    .clarifications-c1__item {
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
        overflow: hidden;
        backdrop-filter: blur(8px);
    }

    .clarifications-c1__q {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: transparent;
        border: 0;
        color: inherit;
        cursor: pointer;
        text-align: left;
    }

    .clarifications-c1__dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--accent);
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.12);
        flex: 0 0 auto;
        animation: c1Dot 1.8s ease-in-out infinite;
    }

    @keyframes c1Dot {
        0%, 100% {
            transform: scale(1);
            opacity: .9
        }
        50% {
            transform: scale(1.15);
            opacity: 1
        }
    }

    .clarifications-c1__qText {
        font-weight: 800;
        letter-spacing: -.01em
    }

    .clarifications-c1__chev {
        margin-left: auto;
        opacity: .85;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c1__a {
        display: none;
        padding: 0 16px 16px 38px;
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    .clarifications-c1__item.is-open .clarifications-c1__chev {
        transform: rotate(180deg);
    }

    .clarifications-c1__item.is-open .clarifications-c1__a {
        display: block;
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-c1::before, .clarifications-c1__dot {
            animation: none;
        }
    }

.connect--light-v6 {
        padding: 40px 20px;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
    }

    .connect__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: 20px;
        align-items: center;
    }

    .connect__content h2 {
        margin: 0 0 6px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--fg-on-page);
    }

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

    .connect__chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .connect__chip {
        padding: 6px 12px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .connect__chip {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    @media (max-width: 768px) {
        .connect__inner {
            grid-template-columns: minmax(0, 1fr);
        }

        .connect__chips {
            justify-content: flex-start;
        }
    }

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

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

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    background-color: var(--btn-ghost-bg);
    position: relative;
    z-index: 1001;
}

.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon {
    top: 50%;
    transform: translate(-50%, -50%);
}

.menu-toggle-icon::before {
    content: '';
    top: -6px;
}

.menu-toggle-icon::after {
    content: '';
    top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: translateX(-50%) rotate(-45deg);
}

.site-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--brand);
    transform: scaleX(0);
    transition: transform var(--anim-duration) var(--anim-ease);
    border-radius: 1px;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

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

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: min(80vw, 300px);
        padding: 5rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .site-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }

    .nav-link::after {
        left: 1rem;
        right: auto;
        width: 2rem;
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        color: #333;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .legal-links {
        margin-bottom: 1rem;
    }
    .legal-links a {
        color: #3498db;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.9rem;
        color: #7f8c8d;
        margin-top: auto;
    }
    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #3498db;
    }
    .contact-block p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-block a {
        color: #3498db;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .disclaimer {
            max-width: 100%;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    background-color: var(--btn-ghost-bg);
    position: relative;
    z-index: 1001;
}

.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon {
    top: 50%;
    transform: translate(-50%, -50%);
}

.menu-toggle-icon::before {
    content: '';
    top: -6px;
}

.menu-toggle-icon::after {
    content: '';
    top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: translateX(-50%) rotate(-45deg);
}

.site-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--brand);
    transform: scaleX(0);
    transition: transform var(--anim-duration) var(--anim-ease);
    border-radius: 1px;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

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

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: min(80vw, 300px);
        padding: 5rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .site-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }

    .nav-link::after {
        left: 1rem;
        right: auto;
        width: 2rem;
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        color: #333;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .legal-links {
        margin-bottom: 1rem;
    }
    .legal-links a {
        color: #3498db;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.9rem;
        color: #7f8c8d;
        margin-top: auto;
    }
    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #3498db;
    }
    .contact-block p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-block a {
        color: #3498db;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .disclaimer {
            max-width: 100%;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

    .terms-layout-b h3 {
        margin: 0 0 8px;
        color: var(--brand);
    }

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

    .terms-layout-b p, .terms-layout-b li {
        color: var(--neutral-600);
        margin-top: 0;
    }

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

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

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    background-color: var(--btn-ghost-bg);
    position: relative;
    z-index: 1001;
}

.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon {
    top: 50%;
    transform: translate(-50%, -50%);
}

.menu-toggle-icon::before {
    content: '';
    top: -6px;
}

.menu-toggle-icon::after {
    content: '';
    top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: translateX(-50%) rotate(-45deg);
}

.site-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--brand);
    transform: scaleX(0);
    transition: transform var(--anim-duration) var(--anim-ease);
    border-radius: 1px;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

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

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: min(80vw, 300px);
        padding: 5rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .site-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }

    .nav-link::after {
        left: 1rem;
        right: auto;
        width: 2rem;
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        color: #333;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .legal-links {
        margin-bottom: 1rem;
    }
    .legal-links a {
        color: #3498db;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.9rem;
        color: #7f8c8d;
        margin-top: auto;
    }
    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #3498db;
    }
    .contact-block p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-block a {
        color: #3498db;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .disclaimer {
            max-width: 100%;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    background-color: var(--btn-ghost-bg);
    position: relative;
    z-index: 1001;
}

.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon {
    top: 50%;
    transform: translate(-50%, -50%);
}

.menu-toggle-icon::before {
    content: '';
    top: -6px;
}

.menu-toggle-icon::after {
    content: '';
    top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: translateX(-50%) rotate(-45deg);
}

.site-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--brand);
    transform: scaleX(0);
    transition: transform var(--anim-duration) var(--anim-ease);
    border-radius: 1px;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

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

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: min(80vw, 300px);
        padding: 5rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .site-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }

    .nav-link::after {
        left: 1rem;
        right: auto;
        width: 2rem;
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        color: #333;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .legal-links {
        margin-bottom: 1rem;
    }
    .legal-links a {
        color: #3498db;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.9rem;
        color: #7f8c8d;
        margin-top: auto;
    }
    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #3498db;
    }
    .contact-block p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-block a {
        color: #3498db;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .disclaimer {
            max-width: 100%;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.err-slab-d {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: var(--accent);
        color: var(--neutral-0);
    }

    .err-slab-d .plate {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 50px);
        border-radius: var(--radius-xl);
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .err-slab-d p {
        margin: 12px 0 0;
        color: var(--neutral-100);
    }

    .err-slab-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
        text-decoration: none;
    }