:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 17.6px;
  --line-height-base: 1.38;

  --max-w: 1220px;
  --space-x: 1.5rem;
  --space-y: 1.09rem;
  --gap: 1.11rem;

  --radius-xl: 1.23rem;
  --radius-lg: 0.85rem;
  --radius-md: 0.68rem;
  --radius-sm: 0.33rem;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.18);
  --shadow-md: 0 14px 28px rgba(0,0,0,0.23);
  --shadow-lg: 0 20px 54px rgba(0,0,0,0.29);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 160ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 1;

  --brand: #D97706;
  --brand-contrast: #FFFFFF;
  --accent: #7C3AED;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #D4D4D4;
  --neutral-600: #525252;
  --neutral-800: #262626;
  --neutral-900: #0F0F0F;

  --bg-page: #FEFCE8;
  --fg-on-page: #1C1917;

  --bg-alt: #FEF3C7;
  --fg-on-alt: #451A03;

  --surface-1: #FFFFFF;
  --surface-2: #FAFAFA;
  --fg-on-surface: #1C1917;
  --border-on-surface: #E5E5E5;

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

  --bg-primary: #D97706;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #B45309;
  --ring: #FBBF24;

  --bg-accent: #F5F3FF;
  --fg-on-accent: #5B21B6;
  --bg-accent-hover: #6D28D9;

  --link: #7C3AED;
  --link-hover: #5B21B6;

  --gradient-hero: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  --gradient-accent: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);

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

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
    background-color: var(--chip-bg);
    padding: var(--radius-sm);
    border-radius: var(--radius-xl);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.25);
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}
.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-page);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        background-color: transparent;
        padding: 0;
        border-radius: 0;
        gap: calc(var(--gap) * 0.5);
    }
    .nav-link {
        width: 100%;
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }
    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #333;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #f0a500;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .footer-tagline {
        font-size: 0.9rem;
        color: #aaa;
        font-style: italic;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-nav a {
        color: #e0e0e0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

    .footer-nav a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact address {
        font-style: normal;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .footer-contact address p {
        margin: 0.5rem 0;
    }

    .footer-contact a {
        color: #e0e0e0;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #333;
        color: #f0a500;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }

    .footer-social a:hover {
        background-color: #f0a500;
        color: #1a1a1a;
    }

    .footer-legal {
        text-align: center;
        border-top: 1px solid #333;
        padding-top: 1.5rem;
        font-size: 0.85rem;
        color: #aaa;
        grid-column: 1 / -1;
    }

    .copyright {
        margin-bottom: 0.75rem;
    }

    .legal-links {
        margin-bottom: 0.75rem;
    }

    .legal-links a {
        color: #aaa;
        text-decoration: none;
        margin: 0 0.5rem;
    }

    .legal-links a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .disclaimer {
        line-height: 1.4;
        max-width: 800px;
        margin: 0.75rem auto 0;
        font-size: 0.8rem;
        color: #888;
    }

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
            text-align: left;
        }

        .footer-brand,
        .footer-nav,
        .footer-contact {
            text-align: left;
        }

        .footer-nav ul {
            justify-content: flex-start;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-social {
            justify-content: flex-start;
        }

        .footer-legal {
            text-align: left;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.value-points-cards {
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(60px, 8vw, 110px) clamp(20px, 4vw, 56px);
    }

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

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

        transform: translateY(-20px);
    }

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

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

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

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

        transform: translateY(30px);
    }

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

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

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

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

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

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

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

        transform: translateY(-18px);
    }

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

    .index-recommendations-list__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

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

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

        transform: translateY(24px);
    }

    .index-recommendations-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-recommendations-list__left {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-recommendations-list__icon {
        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-recommendations-list__title {
        font-weight: 900;
        font-size: 14px;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 30ch;
    }

    .index-recommendations-list__right {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex: 0 0 auto;
    }

    .index-recommendations-list__tag {
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        color: var(--neutral-800);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .index-recommendations-list__chev {
        width: 30px;
        height: 30px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 900;
        line-height: 1;
    }

    .index-recommendations-list__a {
        display: none;
        padding: 0 16px 14px;
        overflow: hidden;
    }

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

    .index-recommendations-list__actions {
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

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

    .index-recommendations-list__cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
    }

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

    .index-recommendations-list__cta:hover {
        background: var(--bg-primary-hover);
    }

    @media (max-width: 560px) {
        .index-recommendations-list__tag {
            display: none;
        }
    }

.touch-orbit {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .touch-orbit .header {
        margin-bottom: 14px;
        text-align: center;
    }

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

    .touch-orbit .header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
    }

    .touch-orbit .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .touch-orbit .card {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: orbitIn 420ms ease both;
    }

    .touch-orbit .card:nth-child(2) {
        animation-delay: 90ms;
    }

    .touch-orbit .card:nth-child(3) {
        animation-delay: 180ms;
    }

    .touch-orbit .icon,
    .touch-orbit .badge,
    .touch-orbit h3,
    .touch-orbit .card p {
        margin: 0 0 8px;
    }

    .touch-orbit .card a {
        color: var(--accent-contrast);
        text-decoration: underline;
    }

    .touch-orbit .main {
        display: inline-block;
        margin-top: 14px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
    background-color: var(--chip-bg);
    padding: var(--radius-sm);
    border-radius: var(--radius-xl);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.25);
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}
.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-page);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        background-color: transparent;
        padding: 0;
        border-radius: 0;
        gap: calc(var(--gap) * 0.5);
    }
    .nav-link {
        width: 100%;
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }
    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #333;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #f0a500;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .footer-tagline {
        font-size: 0.9rem;
        color: #aaa;
        font-style: italic;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-nav a {
        color: #e0e0e0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

    .footer-nav a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact address {
        font-style: normal;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .footer-contact address p {
        margin: 0.5rem 0;
    }

    .footer-contact a {
        color: #e0e0e0;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #333;
        color: #f0a500;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }

    .footer-social a:hover {
        background-color: #f0a500;
        color: #1a1a1a;
    }

    .footer-legal {
        text-align: center;
        border-top: 1px solid #333;
        padding-top: 1.5rem;
        font-size: 0.85rem;
        color: #aaa;
        grid-column: 1 / -1;
    }

    .copyright {
        margin-bottom: 0.75rem;
    }

    .legal-links {
        margin-bottom: 0.75rem;
    }

    .legal-links a {
        color: #aaa;
        text-decoration: none;
        margin: 0 0.5rem;
    }

    .legal-links a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .disclaimer {
        line-height: 1.4;
        max-width: 800px;
        margin: 0.75rem auto 0;
        font-size: 0.8rem;
        color: #888;
    }

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
            text-align: left;
        }

        .footer-brand,
        .footer-nav,
        .footer-contact {
            text-align: left;
        }

        .footer-nav ul {
            justify-content: flex-start;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-social {
            justify-content: flex-start;
        }

        .footer-legal {
            text-align: left;
        }
    }

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

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

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

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

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

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

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

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

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

    .partners .partners__header {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 72px);
    }

    .partners .partners__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .partners .partners__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__item {
        text-align: center;
        background: var(--bg-page);
        border-radius: var(--radius-lg);
    }

    .partners .partners__logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: clamp(20px, 3vw, 28px);
    }

    .partners .partners__logo img {
        width: 100%;
        border-top-left-radius: var(--radius-lg);
        border-top-right-radius: var(--radius-lg);
    }

    .partners .partners__text {
        padding: var(--space-y)
    }

    .partners .partners__item h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
    }

    .partners .partners__item p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

.our-story--light-v6 {
    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.our-story__inner {
    max-width: 720px;
    margin: 0 auto;
}

.our-story__inner h2 {
    margin: 0 0 6px;
    font-size: clamp(22px,3.5vw,28px);
}

.our-story__lead {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: var(--neutral-600);
}

.our-story__text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

.identity-cv1 {
        padding: clamp(56px, 8vw, 104px) clamp(16px, 4vw, 40px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .identity-cv1__head {
        text-align: center;
        margin-bottom: 18px;
    }

    .identity-cv1__head p {
        margin: 0;
        opacity: .9;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

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

    .identity-cv1__head span {
        display: block;
        max-width: 74ch;
        margin: 0 auto;
        opacity: .92;
    }

    .identity-cv1__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    }

    .identity-cv1__grid article {
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
    }

    .identity-cv1__icon {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .identity-cv1__grid h3 {
        margin: 0;
    }

    .identity-cv1__grid p {
        margin: 7px 0;
        opacity: .92;
    }

    .identity-cv1__grid small {
        opacity: .9;
    }

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
    background-color: var(--chip-bg);
    padding: var(--radius-sm);
    border-radius: var(--radius-xl);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.25);
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}
.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-page);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        background-color: transparent;
        padding: 0;
        border-radius: 0;
        gap: calc(var(--gap) * 0.5);
    }
    .nav-link {
        width: 100%;
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }
    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #333;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #f0a500;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .footer-tagline {
        font-size: 0.9rem;
        color: #aaa;
        font-style: italic;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-nav a {
        color: #e0e0e0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

    .footer-nav a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact address {
        font-style: normal;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .footer-contact address p {
        margin: 0.5rem 0;
    }

    .footer-contact a {
        color: #e0e0e0;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #333;
        color: #f0a500;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }

    .footer-social a:hover {
        background-color: #f0a500;
        color: #1a1a1a;
    }

    .footer-legal {
        text-align: center;
        border-top: 1px solid #333;
        padding-top: 1.5rem;
        font-size: 0.85rem;
        color: #aaa;
        grid-column: 1 / -1;
    }

    .copyright {
        margin-bottom: 0.75rem;
    }

    .legal-links {
        margin-bottom: 0.75rem;
    }

    .legal-links a {
        color: #aaa;
        text-decoration: none;
        margin: 0 0.5rem;
    }

    .legal-links a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .disclaimer {
        line-height: 1.4;
        max-width: 800px;
        margin: 0.75rem auto 0;
        font-size: 0.8rem;
        color: #888;
    }

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
            text-align: left;
        }

        .footer-brand,
        .footer-nav,
        .footer-contact {
            text-align: left;
        }

        .footer-nav ul {
            justify-content: flex-start;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-social {
            justify-content: flex-start;
        }

        .footer-legal {
            text-align: left;
        }
    }

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

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

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

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

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

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

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

.index-feedback-slider {
        background: radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.65), transparent 60%), linear-gradient(135deg, rgba(212, 165, 165, 0.55), rgba(248, 225, 231, 0.9)), var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .index-feedback-slider__h {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: clamp(20px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .index-feedback-slider__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.72);
    }

    .index-feedback-slider__h h2 {
        margin: 0;
        font-size: clamp(26px, 4.2vw, 42px);
        letter-spacing: -0.02em;
    }

    .index-feedback-slider__controls {
        display: flex;
        gap: 10px;
        flex: 0 0 auto;
    }

    .index-feedback-slider__btn {
        border: 1px solid rgba(58, 46, 61, 0.18);
        background: rgba(255, 255, 255, 0.55);
        color: var(--fg-on-page);
        border-radius: 999px;
        padding: 10px 14px;
        cursor: pointer;
        box-shadow: var(--shadow-sm);
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
        backdrop-filter: blur(10px);
    }

    .index-feedback-slider__btn:hover {
        transform: translateY(-2px);
    }

    .index-feedback-slider__track {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(260px, 340px);
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 6px 2px 10px;
        
    }

    .index-feedback-slider__card {
        scroll-snap-align: start;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.62);
        border: 1px solid rgba(58, 46, 61, 0.12);
        box-shadow: var(--shadow-lg);
        padding: 18px 18px 16px;

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

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

    .index-feedback-slider__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 24px;
        flex: 0 0 auto;
    }

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

    .index-feedback-slider__chip {
        margin-left: auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-accent);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        flex: 0 0 auto;
    }

    .index-feedback-slider__quote {
        margin: 0 0 14px;
        color: rgba(58, 46, 61, 0.88);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback-slider__who {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(58, 46, 61, 0.12);
    }

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

    .index-feedback-slider__who h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 800;
        color: var(--fg-on-page);
    }

    .index-feedback-slider__who p {
        margin: 2px 0 0;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.7);
    }

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

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

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

    .plans-lv2__head {
        margin-bottom: 14px;
    }

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

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

    .plans-lv2__range {
        margin-bottom: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
        display: grid;
        gap: 8px;
    }

    .plans-lv2__range label {
        font-weight: 700;
    }

    .plans-lv2__range input {
        width: 100%;
        accent-color: var(--bg-primary);
    }

    .plans-lv2__range span {
        color: var(--neutral-600);
    }

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

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

    .plans-lv2__grid h3 {
        margin: 0;
    }

    .plans-lv2__tier {
        margin: 5px 0 7px;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv2__price {
        margin: 0 0 6px;
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--fg-on-page);
    }

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

    .plans-lv2__grid ul {
        margin: 10px 0 0;
        padding-left: 18px;
        display: grid;
        gap: 5px;
        color: var(--neutral-800);
    }

    .plans-lv2__grid button {
        width: 100%;
        margin-top: 10px;
        border: 1px solid var(--bg-primary);
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 9px 12px;
    }

.capabilities-alt {

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

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

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

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

    }

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

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

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

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

        transform: translateX(-50px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

.service-block-section--alt {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}

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

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

.service-block__image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    display: block;
}

.service-block__content h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-block__content p {
    color: var(--neutral-600);
    margin-bottom: var(--space-y);
}

.service-block__content ul {
    margin-left: 1.5rem;
    color: var(--neutral-600);
}

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
    background-color: var(--chip-bg);
    padding: var(--radius-sm);
    border-radius: var(--radius-xl);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.25);
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}
.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-page);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        background-color: transparent;
        padding: 0;
        border-radius: 0;
        gap: calc(var(--gap) * 0.5);
    }
    .nav-link {
        width: 100%;
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }
    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #333;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #f0a500;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .footer-tagline {
        font-size: 0.9rem;
        color: #aaa;
        font-style: italic;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-nav a {
        color: #e0e0e0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

    .footer-nav a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact address {
        font-style: normal;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .footer-contact address p {
        margin: 0.5rem 0;
    }

    .footer-contact a {
        color: #e0e0e0;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #333;
        color: #f0a500;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }

    .footer-social a:hover {
        background-color: #f0a500;
        color: #1a1a1a;
    }

    .footer-legal {
        text-align: center;
        border-top: 1px solid #333;
        padding-top: 1.5rem;
        font-size: 0.85rem;
        color: #aaa;
        grid-column: 1 / -1;
    }

    .copyright {
        margin-bottom: 0.75rem;
    }

    .legal-links {
        margin-bottom: 0.75rem;
    }

    .legal-links a {
        color: #aaa;
        text-decoration: none;
        margin: 0 0.5rem;
    }

    .legal-links a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .disclaimer {
        line-height: 1.4;
        max-width: 800px;
        margin: 0.75rem auto 0;
        font-size: 0.8rem;
        color: #888;
    }

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
            text-align: left;
        }

        .footer-brand,
        .footer-nav,
        .footer-contact {
            text-align: left;
        }

        .footer-nav ul {
            justify-content: flex-start;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-social {
            justify-content: flex-start;
        }

        .footer-legal {
            text-align: left;
        }
    }

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

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

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

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

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

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

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

.support-lv6 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .support-lv6__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .support-lv6__head {
        margin-bottom: 14px;
    }

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

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

    .support-lv6__table {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .support-lv6__table article {
        display: grid;
        grid-template-columns: .8fr 1.2fr;
        gap: 12px;
        padding: 12px;
        border-bottom: 1px solid var(--border-on-surface-light);
        background: var(--surface-1);
    }

    .support-lv6__table article:last-child {
        border-bottom: 0;
    }

    .support-lv6__table h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

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

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

.contact-map {

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

    .contact-map .c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .contact-map .h {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .contact-map .h h2 {
        margin: 0 0 .5rem;
        font-size: clamp(24px, 4vw, 40px);
        color: var(--fg-on-page);
    }

    .contact-map .h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .contact-map .content {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 2rem;
    }

    .contact-map .map-container {
        width: 100%;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

    .contact-map .map-container iframe {
        display: block;
        width: 100%;
        height: 420px;
        border: 0;
    }

    .contact-map .info-card {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.5vw, 28px);
        box-shadow: var(--shadow-lg);
    }

    .contact-map .info-card h3 {
        margin: 0 0 1.5rem;
        font-size: clamp(20px, 3vw, 26px);
        color: var(--fg-on-accent);
    }

    .contact-map .items {
        display: grid;
        gap: 1.5rem;
    }

    .contact-map .item {
        display: grid;
        gap: .5rem;
    }

    .contact-map .item strong {
        display: block;
        font-size: .9rem;
        opacity: .9;
    }

    .contact-map .item span {
        display: block;
        font-size: 1.05rem;
        color: var(--fg-on-accent);
    }

    @media (max-width: 1023px) {
        .contact-map .content {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
    background-color: var(--chip-bg);
    padding: var(--radius-sm);
    border-radius: var(--radius-xl);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.25);
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}
.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-page);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        background-color: transparent;
        padding: 0;
        border-radius: 0;
        gap: calc(var(--gap) * 0.5);
    }
    .nav-link {
        width: 100%;
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }
    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #333;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #f0a500;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .footer-tagline {
        font-size: 0.9rem;
        color: #aaa;
        font-style: italic;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-nav a {
        color: #e0e0e0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

    .footer-nav a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact address {
        font-style: normal;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .footer-contact address p {
        margin: 0.5rem 0;
    }

    .footer-contact a {
        color: #e0e0e0;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #333;
        color: #f0a500;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }

    .footer-social a:hover {
        background-color: #f0a500;
        color: #1a1a1a;
    }

    .footer-legal {
        text-align: center;
        border-top: 1px solid #333;
        padding-top: 1.5rem;
        font-size: 0.85rem;
        color: #aaa;
        grid-column: 1 / -1;
    }

    .copyright {
        margin-bottom: 0.75rem;
    }

    .legal-links {
        margin-bottom: 0.75rem;
    }

    .legal-links a {
        color: #aaa;
        text-decoration: none;
        margin: 0 0.5rem;
    }

    .legal-links a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .disclaimer {
        line-height: 1.4;
        max-width: 800px;
        margin: 0.75rem auto 0;
        font-size: 0.8rem;
        color: #888;
    }

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
            text-align: left;
        }

        .footer-brand,
        .footer-nav,
        .footer-contact {
            text-align: left;
        }

        .footer-nav ul {
            justify-content: flex-start;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-social {
            justify-content: flex-start;
        }

        .footer-legal {
            text-align: left;
        }
    }

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

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

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

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

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

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

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

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

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
    background-color: var(--chip-bg);
    padding: var(--radius-sm);
    border-radius: var(--radius-xl);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.25);
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}
.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-page);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        background-color: transparent;
        padding: 0;
        border-radius: 0;
        gap: calc(var(--gap) * 0.5);
    }
    .nav-link {
        width: 100%;
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }
    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #333;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #f0a500;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .footer-tagline {
        font-size: 0.9rem;
        color: #aaa;
        font-style: italic;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-nav a {
        color: #e0e0e0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

    .footer-nav a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact address {
        font-style: normal;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .footer-contact address p {
        margin: 0.5rem 0;
    }

    .footer-contact a {
        color: #e0e0e0;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #333;
        color: #f0a500;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }

    .footer-social a:hover {
        background-color: #f0a500;
        color: #1a1a1a;
    }

    .footer-legal {
        text-align: center;
        border-top: 1px solid #333;
        padding-top: 1.5rem;
        font-size: 0.85rem;
        color: #aaa;
        grid-column: 1 / -1;
    }

    .copyright {
        margin-bottom: 0.75rem;
    }

    .legal-links {
        margin-bottom: 0.75rem;
    }

    .legal-links a {
        color: #aaa;
        text-decoration: none;
        margin: 0 0.5rem;
    }

    .legal-links a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .disclaimer {
        line-height: 1.4;
        max-width: 800px;
        margin: 0.75rem auto 0;
        font-size: 0.8rem;
        color: #888;
    }

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
            text-align: left;
        }

        .footer-brand,
        .footer-nav,
        .footer-contact {
            text-align: left;
        }

        .footer-nav ul {
            justify-content: flex-start;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-social {
            justify-content: flex-start;
        }

        .footer-legal {
            text-align: left;
        }
    }

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

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

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

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

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

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

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

.terms-layout-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(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
    background-color: var(--chip-bg);
    padding: var(--radius-sm);
    border-radius: var(--radius-xl);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.25);
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}
.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-page);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        background-color: transparent;
        padding: 0;
        border-radius: 0;
        gap: calc(var(--gap) * 0.5);
    }
    .nav-link {
        width: 100%;
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }
    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #333;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #f0a500;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .footer-tagline {
        font-size: 0.9rem;
        color: #aaa;
        font-style: italic;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-nav a {
        color: #e0e0e0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

    .footer-nav a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact address {
        font-style: normal;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .footer-contact address p {
        margin: 0.5rem 0;
    }

    .footer-contact a {
        color: #e0e0e0;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #333;
        color: #f0a500;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }

    .footer-social a:hover {
        background-color: #f0a500;
        color: #1a1a1a;
    }

    .footer-legal {
        text-align: center;
        border-top: 1px solid #333;
        padding-top: 1.5rem;
        font-size: 0.85rem;
        color: #aaa;
        grid-column: 1 / -1;
    }

    .copyright {
        margin-bottom: 0.75rem;
    }

    .legal-links {
        margin-bottom: 0.75rem;
    }

    .legal-links a {
        color: #aaa;
        text-decoration: none;
        margin: 0 0.5rem;
    }

    .legal-links a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .disclaimer {
        line-height: 1.4;
        max-width: 800px;
        margin: 0.75rem auto 0;
        font-size: 0.8rem;
        color: #888;
    }

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
            text-align: left;
        }

        .footer-brand,
        .footer-nav,
        .footer-contact {
            text-align: left;
        }

        .footer-nav ul {
            justify-content: flex-start;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-social {
            justify-content: flex-start;
        }

        .footer-legal {
            text-align: left;
        }
    }

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

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

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

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

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

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

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

.thank-mode-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(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
    background-color: var(--chip-bg);
    padding: var(--radius-sm);
    border-radius: var(--radius-xl);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.25);
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}
.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-page);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        background-color: transparent;
        padding: 0;
        border-radius: 0;
        gap: calc(var(--gap) * 0.5);
    }
    .nav-link {
        width: 100%;
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }
    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #333;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #f0a500;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .footer-tagline {
        font-size: 0.9rem;
        color: #aaa;
        font-style: italic;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-nav a {
        color: #e0e0e0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

    .footer-nav a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact address {
        font-style: normal;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .footer-contact address p {
        margin: 0.5rem 0;
    }

    .footer-contact a {
        color: #e0e0e0;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #333;
        color: #f0a500;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }

    .footer-social a:hover {
        background-color: #f0a500;
        color: #1a1a1a;
    }

    .footer-legal {
        text-align: center;
        border-top: 1px solid #333;
        padding-top: 1.5rem;
        font-size: 0.85rem;
        color: #aaa;
        grid-column: 1 / -1;
    }

    .copyright {
        margin-bottom: 0.75rem;
    }

    .legal-links {
        margin-bottom: 0.75rem;
    }

    .legal-links a {
        color: #aaa;
        text-decoration: none;
        margin: 0 0.5rem;
    }

    .legal-links a:hover {
        color: #f0a500;
        text-decoration: underline;
    }

    .disclaimer {
        line-height: 1.4;
        max-width: 800px;
        margin: 0.75rem auto 0;
        font-size: 0.8rem;
        color: #888;
    }

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
            text-align: left;
        }

        .footer-brand,
        .footer-nav,
        .footer-contact {
            text-align: left;
        }

        .footer-nav ul {
            justify-content: flex-start;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-social {
            justify-content: flex-start;
        }

        .footer-legal {
            text-align: left;
        }
    }

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

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

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

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

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

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

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

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

    .err-slab-f .chip {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        position: relative;
    }

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

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

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

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