:root {
  --font-family: "Rubik", sans-serif;
  --font-size-base: 15.4px;
  --line-height-base: 1.5;

  --max-w: 1060px;
  --space-x: 1.25rem;
  --space-y: 1.21rem;
  --gap: 1.18rem;

  --radius-xl: 0.9rem;
  --radius-lg: 0.68rem;
  --radius-md: 0.39rem;
  --radius-sm: 0.26rem;

  --shadow-sm: 0 2px 3px rgba(0,0,0,0.09);
  --shadow-md: 0 8px 10px rgba(0,0,0,0.12);
  --shadow-lg: 0 18px 24px rgba(0,0,0,0.14);

  --overlay: rgba(0, 0, 0, 0.4);
  --anim-duration: 240ms;
  --anim-ease: ease;
  --random-number: 2;

  --brand: #4A6FA5;
  --brand-contrast: #FFFFFF;
  --accent: #E67E22;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F9FA;
  --neutral-300: #DEE2E6;
  --neutral-600: #6C757D;
  --neutral-800: #343A40;
  --neutral-900: #212529;

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

  --bg-alt: #F8F9FA;
  --fg-on-alt: #343A40;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #212529;
  --border-on-surface: #DEE2E6;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #343A40;
  --border-on-surface-light: #E9ECEF;

  --bg-primary: #4A6FA5;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #3A5A8C;
  --ring: rgba(74, 111, 165, 0.4);

  --bg-accent: #FEF6EC;
  --fg-on-accent: #8B4513;
  --bg-accent-hover: #D35400;

  --link: #4A6FA5;
  --link-hover: #3A5A8C;

  --gradient-hero: linear-gradient(135deg, #4A6FA5 0%, #6A8FC5 100%);
  --gradient-accent: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    z-index: 1001;
    flex-direction: column;
    gap: 4px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    border-radius: var(--radius-sm);
    transition: width var(--anim-duration) var(--anim-ease), left var(--anim-duration) var(--anim-ease);
}

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

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

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

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

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #ddd;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e0e0e0;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1.2rem;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-section h4 {
        margin-bottom: 1.2rem;
        color: #222;
    }
    .contact-info address,
    .contact-info p {
        margin-bottom: 0.5rem;
        color: #555;
        line-height: 1.5;
    }
    .contact-info a {
        color: #555;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1.2rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #ddd;
        border-radius: 50%;
        color: #333;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.2s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    .footer-bottom {
        text-align: center;
        color: #666;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .legal-links {
        margin-bottom: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #888;
        max-width: 800px;
        margin: 1rem auto 0;
        font-style: italic;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .legal-links a {
            margin: 0;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

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

    .wp-lang-switcher-v2__btn {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: calc(10px + var(--local-random) * 2px) calc(16px + var(--local-random) * 2px);
        border-radius: calc(var(--radius-lg) + var(--local-random) * 4px);
        cursor: pointer;
        display: flex;
        gap: 10px;
        align-items: center;
        box-shadow: var(--shadow-lg);
        transition: all var(--anim-duration) var(--anim-ease);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .wp-lang-switcher-v2__btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);

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

    .wp-lang-switcher-v2__btn:hover {
        transform: translateY(calc(-2px - var(--local-random) * 1px));
        box-shadow: 0 12px 32px rgba(59, 130, 246, calc(0.3 + var(--local-random) * 0.1));
    }

    .wp-lang-switcher-v2__btn:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v2__icon {
        font-size: calc(18px + var(--local-random) * 2px);
        animation: rotate calc(18s + var(--local-random) * 4s) linear infinite;
    }

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

    .wp-lang-switcher-v2__label {
        font-weight: 600;
        font-size: 14px;
        letter-spacing: calc(0.3px + var(--local-random) * 0.2px);
    }

    .wp-lang-switcher-v2__panel {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 12px);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: calc(var(--radius-lg) - var(--local-random) * 2px);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        min-width: calc(190px + var(--local-random) * 10px);

        transform: translateY(10px);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__panel.open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .wp-lang-switcher-v2__panel button,
    .wp-lang-switcher-v2__panel a {
        width: 100%;
        text-align: left;
        padding: calc(10px + var(--local-random) * 2px) calc(14px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;

        font-size: 15px;
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        text-decoration: none;
    }

    .wp-lang-switcher-v2__panel button::before,
    .wp-lang-switcher-v2__panel a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: calc(2px + var(--local-random) * 1px);
        background: var(--bg-primary);
        transform: scaleY(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__panel button:hover,
    .wp-lang-switcher-v2__panel a:hover {
        background: var(--bg-alt);
        padding-left: calc(18px + var(--local-random) * 4px);
    }

    .wp-lang-switcher-v2__panel button:hover::before,
    .wp-lang-switcher-v2__panel a:hover::before {
        transform: scaleY(1);
    }

    .wp-lang-switcher-v2__flag {
        font-size: 20px;
    }

.intro-metrics-l4 {
        padding: clamp(3.6rem, 8vw, 6.6rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .intro-metrics-l4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .intro-metrics-l4__copy {
        text-align: center;
        max-width: 44rem;
        margin: 0 auto;
    }

    .intro-metrics-l4__copy p {
        margin: 0;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .intro-metrics-l4__copy h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        line-height: 1.04;
    }

    .intro-metrics-l4__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-metrics-l4__stats {
        margin-top: 1.3rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
        gap: var(--gap);
    }

    .intro-metrics-l4__stats article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        text-align: center;
    }

    .intro-metrics-l4__stats strong {
        display: block;
        font-size: 1.6rem;
        color: var(--brand);
    }

    .intro-metrics-l4__stats span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .intro-metrics-l4__footer {
        margin-top: 1rem;
        text-align: center;
        color: var(--neutral-800);
    }

.values-flare-c9 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .15), transparent 25%), var(--gradient-accent);
        color: var(--gradient-accent);
    }

    .values-flare-c9__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-flare-c9__head {
        margin-bottom: 1.1rem;
    }

    .values-flare-c9__head p {
        margin: 0;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
        color: var(--fg-on-accent);
    }

    .values-flare-c9__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--fg-on-accent);
    }

    .values-flare-c9__head span {
        display: block;
        margin-top: .8rem;
        color: var(--fg-on-accent);
    }

    .values-flare-c9__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .values-flare-c9__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-flare-c9__meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .values-flare-c9__meta i {
        font-style: normal;
        font-size: 1.5rem;
    }

    .values-flare-c9__meta span {
        color: var(--bg-accent);
        font-weight: 600;
        font-size: 0.85rem;
    }

    .values-flare-c9__grid h3 {
        margin: .75rem 0 .35rem;
        color: var(--fg-on-surface);
    }

    .values-flare-c9__grid p {
        margin: 0;
        color: var(--fg-on-surface);
    }

    .values-flare-c9__grid small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-600);
        font-style: italic;
    }

.next-strip-l2 {
        padding: clamp(3rem, 7vw, 5.6rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .next-strip-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

    .next-strip-l2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .next-strip-l2__wrap h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-strip-l2__wrap a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

    .next-strip-l2__actions {
        max-width: var(--max-w);
        margin: 1rem auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: .75rem;
    }

    .next-strip-l2__actions a {
        display: block;
        padding: .95rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        color: var(--fg-on-page);
    }

    .next-strip-l2__actions span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    /* macro-bg:next-strip-l2__wrap */
    .next-strip-l2 {
        overflow: hidden;
    }

    .next-strip-l2__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/4050344/pexels-photo-4050344.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: clamp(2rem, 5vw, 3.5rem) var(--space-x);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    z-index: 1001;
    flex-direction: column;
    gap: 4px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    border-radius: var(--radius-sm);
    transition: width var(--anim-duration) var(--anim-ease), left var(--anim-duration) var(--anim-ease);
}

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

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

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

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

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #ddd;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e0e0e0;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1.2rem;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-section h4 {
        margin-bottom: 1.2rem;
        color: #222;
    }
    .contact-info address,
    .contact-info p {
        margin-bottom: 0.5rem;
        color: #555;
        line-height: 1.5;
    }
    .contact-info a {
        color: #555;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1.2rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #ddd;
        border-radius: 50%;
        color: #333;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.2s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    .footer-bottom {
        text-align: center;
        color: #666;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .legal-links {
        margin-bottom: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #888;
        max-width: 800px;
        margin: 1rem auto 0;
        font-style: italic;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .legal-links a {
            margin: 0;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.story-column-l4 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .story-column-l4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

    .story-column-l4__copy p:first-child {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .story-column-l4__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-column-l4__copy strong {
        display: block;
        margin-top: .8rem;
    }

    .story-column-l4__copy p {
        color: var(--neutral-600);
    }

    .story-column-l4__stats {
        display: grid;
        gap: .75rem;
    }

    .story-column-l4__stats div {
        padding: .9rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-column-l4__stats span {
        display: block;
        margin-top: .25rem;
        color: var(--neutral-600);
    }

    @media (max-width: 820px) {
        .story-column-l4__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.partners {

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

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

    .partners .partners__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--fg-on-page);
    }

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

    .partners .partners__content {
        padding: clamp(32px, 5vw, 40px);
    }

    .partners .partners__card {
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        text-align: center;
    }

    .partners .partners__logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

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

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    z-index: 1001;
    flex-direction: column;
    gap: 4px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    border-radius: var(--radius-sm);
    transition: width var(--anim-duration) var(--anim-ease), left var(--anim-duration) var(--anim-ease);
}

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

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

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

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

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #ddd;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e0e0e0;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1.2rem;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-section h4 {
        margin-bottom: 1.2rem;
        color: #222;
    }
    .contact-info address,
    .contact-info p {
        margin-bottom: 0.5rem;
        color: #555;
        line-height: 1.5;
    }
    .contact-info a {
        color: #555;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1.2rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #ddd;
        border-radius: 50%;
        color: #333;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.2s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    .footer-bottom {
        text-align: center;
        color: #666;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .legal-links {
        margin-bottom: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #888;
        max-width: 800px;
        margin: 1rem auto 0;
        font-style: italic;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .legal-links a {
            margin: 0;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.capabilities-light-alt {

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

    .capabilities-light-alt .capabilities-light-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .capabilities-light-alt .capabilities-light-alt__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

    }

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

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

    .capabilities-light-alt .capabilities-light-alt__steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: clamp(24px, 4vw, 48px);
        position: relative;
    }

    .capabilities-light-alt .capabilities-light-alt__step {
        position: relative;

        transform: translateY(30px);
    }

    .capabilities-light-alt .capabilities-light-alt__number {
        width: 56px;
        height: 56px;
        background: var(--brand);
        color: var(--fg-on-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 900;
        margin: 0 auto 1.5rem;
        box-shadow: var(--shadow-md);
        position: relative;
        z-index: 2;
    }

    .capabilities-light-alt .capabilities-light-alt__number::before {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        background: var(--brand);
        opacity: 0.2;
        animation: ripple 2s ease-out infinite;
    }

    @keyframes ripple {
        0% {
            transform: scale(1);
            opacity: 0.2;
        }
        100% {
            transform: scale(1.5);

        }
    }

    .capabilities-light-alt .capabilities-light-alt__box {
        background: var(--surface-1);
        border: 2px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: clamp(24px, 3vw, 32px);
        text-align: center;
        position: relative;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .capabilities-light-alt .capabilities-light-alt__step:hover .capabilities-light-alt__box {
        border-color: var(--brand);
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .capabilities-light-alt .capabilities-light-alt__box h3 {
        font-size: clamp(20px, 2.5vw, 24px);
        font-weight: 700;
        margin: 0 0 1rem;
        color: var(--fg-on-surface);
    }

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

    .capabilities-light-alt .capabilities-light-alt__arrow {
        position: absolute;
        bottom: -32px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
        font-size: 32px;
        color: var(--brand);
        opacity: 0.5;
    }

    .capabilities-light-alt .capabilities-light-alt__step:last-child .capabilities-light-alt__arrow {
        display: none;
    }

    @media (min-width: 768px) {
        .capabilities-light-alt .capabilities-light-alt__arrow {
            bottom: auto;
            top: 50%;
            left: auto;
            right: -40px;
            transform: translateY(-50%) rotate(0deg);
        }
    }

.index-feedback-accordion {
        background: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.75), transparent 60%),
        var(--gradient-hero);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

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

        transform: translateY(-18px);
    }

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

    .index-feedback-accordion__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

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

    .index-feedback-accordion__row {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(248, 225, 231, 0.95);
        background: rgba(58, 46, 61, 0.92);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-feedback-accordion__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(--bg-page);
        font: inherit;
    }

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

    .index-feedback-accordion__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-accordion__name {
        font-weight: 800;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-accordion__meta {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-accordion__right {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

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

    .index-feedback-accordion__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--bg-page);
    }

    .index-feedback-accordion__a {
        display: none;
        padding: 0 16px 14px;
        color: rgba(255, 255, 255, 0.85);
        overflow: hidden;
    }

    .index-feedback-accordion__quote {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback-accordion__badge {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.78);
    }

.hiw-ledger-l2 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .hiw-ledger-l2__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

    .hiw-ledger-l2__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .hiw-ledger-l2__head p {
        margin: 0;
        color: var(--neutral-600);
    }

    .hiw-ledger-l2__head h2 {
        margin: .45rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hiw-ledger-l2__rows {
        display: grid;
        gap: .8rem;
    }

    .hiw-ledger-l2__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .hiw-ledger-l2__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--brand);
        box-shadow: var(--shadow-sm);
    }

    .hiw-ledger-l2__rows h3 {
        margin: 0;
    }

    .hiw-ledger-l2__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    z-index: 1001;
    flex-direction: column;
    gap: 4px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    border-radius: var(--radius-sm);
    transition: width var(--anim-duration) var(--anim-ease), left var(--anim-duration) var(--anim-ease);
}

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

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

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

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

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #ddd;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e0e0e0;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1.2rem;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-section h4 {
        margin-bottom: 1.2rem;
        color: #222;
    }
    .contact-info address,
    .contact-info p {
        margin-bottom: 0.5rem;
        color: #555;
        line-height: 1.5;
    }
    .contact-info a {
        color: #555;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1.2rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #ddd;
        border-radius: 50%;
        color: #333;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.2s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    .footer-bottom {
        text-align: center;
        color: #666;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .legal-links {
        margin-bottom: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #888;
        max-width: 800px;
        margin: 1rem auto 0;
        font-style: italic;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .legal-links a {
            margin: 0;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .form-layout-c .row {
        display: grid;
        gap: 10px;
    }

    .form-layout-c .row.two {
        grid-template-columns: 1fr 1fr;
    }

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

    .form-layout-c input:not([type="checkbox"]), .form-layout-c textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

    .form-layout-c .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 2px;
    }

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

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

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

    .support-lv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

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

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

    .support-lv1__grid {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
    }

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

    .support-lv1__grid h3 {
        margin: 0 0 6px;
    }

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

    .support-lv1__grid a {
        color: var(--link);
        text-decoration: none;
        font-weight: 600;
    }

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

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    z-index: 1001;
    flex-direction: column;
    gap: 4px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    border-radius: var(--radius-sm);
    transition: width var(--anim-duration) var(--anim-ease), left var(--anim-duration) var(--anim-ease);
}

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

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

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

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

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #ddd;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e0e0e0;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1.2rem;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-section h4 {
        margin-bottom: 1.2rem;
        color: #222;
    }
    .contact-info address,
    .contact-info p {
        margin-bottom: 0.5rem;
        color: #555;
        line-height: 1.5;
    }
    .contact-info a {
        color: #555;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1.2rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #ddd;
        border-radius: 50%;
        color: #333;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.2s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    .footer-bottom {
        text-align: center;
        color: #666;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .legal-links {
        margin-bottom: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #888;
        max-width: 800px;
        margin: 1rem auto 0;
        font-style: italic;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .legal-links a {
            margin: 0;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

    .policy-layout-b .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .policy-layout-b ol {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

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

    .policy-layout-b h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    z-index: 1001;
    flex-direction: column;
    gap: 4px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    border-radius: var(--radius-sm);
    transition: width var(--anim-duration) var(--anim-ease), left var(--anim-duration) var(--anim-ease);
}

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

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

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

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

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #ddd;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e0e0e0;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1.2rem;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-section h4 {
        margin-bottom: 1.2rem;
        color: #222;
    }
    .contact-info address,
    .contact-info p {
        margin-bottom: 0.5rem;
        color: #555;
        line-height: 1.5;
    }
    .contact-info a {
        color: #555;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1.2rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #ddd;
        border-radius: 50%;
        color: #333;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.2s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    .footer-bottom {
        text-align: center;
        color: #666;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .legal-links {
        margin-bottom: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #888;
        max-width: 800px;
        margin: 1rem auto 0;
        font-style: italic;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .legal-links a {
            margin: 0;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    z-index: 1001;
    flex-direction: column;
    gap: 4px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    border-radius: var(--radius-sm);
    transition: width var(--anim-duration) var(--anim-ease), left var(--anim-duration) var(--anim-ease);
}

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

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

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

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

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #ddd;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e0e0e0;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1.2rem;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-section h4 {
        margin-bottom: 1.2rem;
        color: #222;
    }
    .contact-info address,
    .contact-info p {
        margin-bottom: 0.5rem;
        color: #555;
        line-height: 1.5;
    }
    .contact-info a {
        color: #555;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1.2rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #ddd;
        border-radius: 50%;
        color: #333;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.2s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    .footer-bottom {
        text-align: center;
        color: #666;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .legal-links {
        margin-bottom: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #888;
        max-width: 800px;
        margin: 1rem auto 0;
        font-style: italic;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .legal-links a {
            margin: 0;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

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

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

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

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    z-index: 1001;
    flex-direction: column;
    gap: 4px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    border-radius: var(--radius-sm);
    transition: width var(--anim-duration) var(--anim-ease), left var(--anim-duration) var(--anim-ease);
}

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

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

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

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

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #ddd;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e0e0e0;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1.2rem;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-section h4 {
        margin-bottom: 1.2rem;
        color: #222;
    }
    .contact-info address,
    .contact-info p {
        margin-bottom: 0.5rem;
        color: #555;
        line-height: 1.5;
    }
    .contact-info a {
        color: #555;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1.2rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #ddd;
        border-radius: 50%;
        color: #333;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.2s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    .footer-bottom {
        text-align: center;
        color: #666;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .legal-links {
        margin-bottom: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #888;
        max-width: 800px;
        margin: 1rem auto 0;
        font-style: italic;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .legal-links a {
            margin: 0;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.err-slab-a {
    padding: clamp(56px, 10vw, 110px) 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

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

.err-slab-a h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 58px);
}

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
}

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