:root {
  --font-family: "Lato", sans-serif;
  --font-size-base: 15.9px;
  --line-height-base: 1.54;

  --max-w: 1060px;
  --space-x: 1.15rem;
  --space-y: 1.07rem;
  --gap: 1.04rem;

  --radius-xl: 1.03rem;
  --radius-lg: 0.79rem;
  --radius-md: 0.37rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 5px 18px rgba(0,0,0,0.15);
  --shadow-lg: 0 16px 42px rgba(0,0,0,0.19);

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

  --brand: #0A6EBD;
  --brand-contrast: #FFFFFF;
  --accent: #F39C12;
  --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: rgba(255, 255, 255, 0.92);
  --fg-on-surface-light: #343A40;
  --border-on-surface-light: rgba(222, 226, 230, 0.7);

  --bg-primary: #0A6EBD;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #085A9C;
  --ring: rgba(10, 110, 189, 0.3);

  --bg-accent: #FEF5E7;
  --fg-on-accent: #7D6608;
  --bg-accent-hover: #E67E22;

  --link: #0A6EBD;
  --link-hover: #085A9C;

  --gradient-hero: linear-gradient(135deg, #0A6EBD 0%, #17A2B8 100%);
  --gradient-accent: linear-gradient(90deg, #F39C12 0%, #E67E22 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);
}

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 2);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    gap: 4px;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

.main-nav {
    order: 3;
    width: 100%;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[href="index.html"] {
    color: var(--brand);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: static;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        order: 4;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav.active {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-y) var(--space-x);
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }
}

.footer {
        background-color: #f5f7fa;
        color: #333;
        padding: 2.5rem 1rem;
        border-top: 1px solid #e1e4e8;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contact"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contact { grid-area: contact; }
        .footer-legal { grid-area: legal; }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a365d;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 250px;
    }
    .footer-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #4a5568;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2b6cb0;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #2d3748;
        display: inline-block;
        min-width: 80px;
    }
    .footer-contact a {
        color: #2b6cb0;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e1e4e8;
        text-align: center;
        font-size: 0.85rem;
        color: #718096;
    }
    .legal-links {
        margin-bottom: 0.75rem;
    }
    .legal-links a {
        color: #4a5568;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #2b6cb0;
    }
    .copyright-disclaimer {
        margin: 0.75rem auto;
        max-width: 700px;
        line-height: 1.5;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #cbd5e0;
        color: #2d3748;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background-color 0.2s;
    }
    .social-links a:hover {
        background-color: #a0aec0;
    }

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

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

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

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

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

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

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

.intro-beacon-c8 {
        padding: clamp(3.8rem, 9vw, 7rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        overflow: hidden;
    }

    .intro-beacon-c8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(16rem, .85fr);
        gap: 1.5rem;
        align-items: center;
    }

    .intro-beacon-c8__eyebrow {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .intro-beacon-c8__content h1 {
        margin: .7rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.6rem);
        line-height: 1.02;
        color: var(--neutral-0);
    }

    .intro-beacon-c8__lead {
        margin: 1rem 0 0;
        max-width: 42rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .intro-beacon-c8__fact {
        margin-top: 1rem;
        padding-left: .9rem;
        border-left: 3px solid var(--bg-accent);
        color: var(--accent-bg);
        font-weight: bold;
    }

    .intro-beacon-c8__links {
        margin-top: 1.2rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-beacon-c8__links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 2.8rem;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.14);
        color: var(--neutral-0);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .intro-beacon-c8__links a:hover {
        background: rgba(255, 255, 255, 0.25);
    }

    .intro-beacon-c8__aside {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: var(--shadow-md);
        order: var(--random-number);
    }

    .intro-beacon-c8__aside img {
        width: 100%;
        border-radius: var(--radius-lg);
        display: block;
    }

    .intro-beacon-c8__content {
        order: calc(3 - var(--random-number));
    }

    .intro-beacon-c8__aside--panel div + div {
        margin-top: .55rem;
        color: var(--neutral-100);
        font-size: 0.9rem;
        text-align: center;
        padding: 0.5rem;
    }

    @media (max-width: 860px) {
        .intro-beacon-c8__wrap {
            grid-template-columns: 1fr;
        }
    }

.values-papers-l6 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

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

    .values-papers-l6__head {
        margin-bottom: 1.1rem;
    }

    .values-papers-l6__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .values-papers-l6__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

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

    .values-papers-l6__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px dashed var(--border-on-surface-light);
    }

    .values-papers-l6__grid div {
        font-size: 1.25rem;
    }

    .values-papers-l6__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-papers-l6__grid p {
        margin: 0;
        color: var(--neutral-600);
    }

    .values-papers-l6__grid small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.touch-panorama {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

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

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

    .touch-panorama .lead {
        margin: 10px 0 14px;
    }

    .touch-panorama .lane {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
    }

    .touch-panorama article {
        min-width: 250px;
        border: 1px solid var(--chip-bg);
        border-radius: 14px;
        background: var(--chip-bg);
        padding: 12px;
        scroll-snap-align: start;
    }

    .touch-panorama article h3 {
        margin: 0 0 8px;
    }

    .touch-panorama article p {
        margin: 0 0 8px;
    }

    .touch-panorama article a {
        color: var(--fg-on-primary);
        text-decoration: underline;
    }

    .touch-panorama .main {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 10px;
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
    }
    .subscribe-form input:focus {
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

.social-l2 {

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

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

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

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

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

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

    .social-l2__quoteBox {
        padding: 18px;
        border-bottom: 1px solid var(--border-on-surface);
        position: relative;
    }

    .social-l2__quote {
        display: none;
    }

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

    .social-l2__q {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
    }

    .social-l2__m {
        margin-top: 12px;
        color: var(--neutral-600);
        font-weight: 800;
    }

    .social-l2__badges {
        overflow: hidden;
        background: var(--bg-alt);
    }

    .social-l2__badgeTrack {
        display: flex;
        gap: 10px;
        padding: 12px;
        width: max-content;
        animation: socialL2Badges 16s linear infinite;
    }

    @keyframes socialL2Badges {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-l2__badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        white-space: nowrap;
    }

    @media (prefers-reduced-motion: reduce) {
        .social-l2__badgeTrack {
            animation: 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);
}

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 2);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    gap: 4px;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

.main-nav {
    order: 3;
    width: 100%;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[href="index.html"] {
    color: var(--brand);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: static;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        order: 4;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav.active {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-y) var(--space-x);
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }
}

.footer {
        background-color: #f5f7fa;
        color: #333;
        padding: 2.5rem 1rem;
        border-top: 1px solid #e1e4e8;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contact"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contact { grid-area: contact; }
        .footer-legal { grid-area: legal; }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a365d;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 250px;
    }
    .footer-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #4a5568;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2b6cb0;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #2d3748;
        display: inline-block;
        min-width: 80px;
    }
    .footer-contact a {
        color: #2b6cb0;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e1e4e8;
        text-align: center;
        font-size: 0.85rem;
        color: #718096;
    }
    .legal-links {
        margin-bottom: 0.75rem;
    }
    .legal-links a {
        color: #4a5568;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #2b6cb0;
    }
    .copyright-disclaimer {
        margin: 0.75rem auto;
        max-width: 700px;
        line-height: 1.5;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #cbd5e0;
        color: #2d3748;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background-color 0.2s;
    }
    .social-links a:hover {
        background-color: #a0aec0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .identity-cv1__grid h3 {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

.story-vault-c9 {
        padding: clamp(3.6rem, 8vw, 6rem) var(--space-x);
        background: radial-gradient(circle at 100% 0, rgba(255, 255, 255, .16), transparent 28%), var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .story-vault-c9__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

    .story-vault-c9__intro p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .story-vault-c9__intro h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.1rem);
    }

    .story-vault-c9__intro span {
        display: block;
        margin-top: .8rem;

    }

    .story-vault-c9__body {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1rem;
    }

    .story-vault-c9__text, .story-vault-c9__stats {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .story-vault-c9__text p {
        margin: 0 0 .75rem;

    }

    .story-vault-c9__stats {
        display: grid;
        gap: .7rem;
    }

    .story-vault-c9__stats span {
        display: block;
        margin-top: .25rem;
        color: rgba(255, 255, 255, .82);
    }

    .story-vault-c9__wrap > a {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

    @media (max-width: 820px) {
        .story-vault-c9__body {
            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);
}

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 2);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    gap: 4px;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

.main-nav {
    order: 3;
    width: 100%;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[href="index.html"] {
    color: var(--brand);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: static;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        order: 4;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav.active {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-y) var(--space-x);
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }
}

.footer {
        background-color: #f5f7fa;
        color: #333;
        padding: 2.5rem 1rem;
        border-top: 1px solid #e1e4e8;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contact"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contact { grid-area: contact; }
        .footer-legal { grid-area: legal; }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a365d;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 250px;
    }
    .footer-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #4a5568;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2b6cb0;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #2d3748;
        display: inline-block;
        min-width: 80px;
    }
    .footer-contact a {
        color: #2b6cb0;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e1e4e8;
        text-align: center;
        font-size: 0.85rem;
        color: #718096;
    }
    .legal-links {
        margin-bottom: 0.75rem;
    }
    .legal-links a {
        color: #4a5568;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #2b6cb0;
    }
    .copyright-disclaimer {
        margin: 0.75rem auto;
        max-width: 700px;
        line-height: 1.5;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #cbd5e0;
        color: #2d3748;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background-color 0.2s;
    }
    .social-links a:hover {
        background-color: #a0aec0;
    }

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

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

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

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

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

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

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

.hiw-zigzag-c3 {
        padding: clamp(3.6rem, 8vw, 6.1rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .hiw-zigzag-c3__head {
        max-width: 42rem;
        margin: 0 auto 1.25rem;
        text-align: center;
    }

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

    .hiw-zigzag-c3__head p {
        margin: .55rem 0 0;

    }

    .hiw-zigzag-c3__grid {
        display: grid;
        gap: var(--gap);
    }

    .hiw-zigzag-c3__grid article {
        width: min(28rem, 100%);
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .2);
        backdrop-filter: blur(8px);
    }

    .hiw-zigzag-c3__grid article:nth-child(odd) {
        margin-right: auto;
    }

    .hiw-zigzag-c3__grid article:nth-child(even) {
        margin-left: auto;
    }

    .hiw-zigzag-c3__num {
        display: inline-flex;
        min-width: 2.6rem;
        height: 2.6rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .hiw-zigzag-c3__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .hiw-zigzag-c3__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .9);
    }

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

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

    .index-feedback-summary__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);
        transform: translateY(-18px);
    }

    .index-feedback-summary__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
    }

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

    .index-feedback-summary__layout {
        display: grid;
        grid-template-columns: minmax(260px, 340px) 1fr;
        gap: clamp(16px, 3vw, 28px);
        align-items: start;
    }

    .index-feedback-summary__panel {
        border-radius: var(--radius-xl);
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        padding: clamp(18px, 3vw, 26px);
        box-shadow: var(--shadow-md);

        transform: translateY(22px);
        position: sticky;
        top: 16px;
    }

    .index-feedback-summary__kpi {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 14px;
    }

    .index-feedback-summary__avg {
        width: 72px;
        height: 72px;
        border-radius: 22px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 22px;
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .index-feedback-summary__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 14px;
        line-height: 1;
        margin-bottom: 6px;
    }

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

    .index-feedback-summary__note {
        color: var(--fg-on-accent);
        font-size: 14px;
    }

    .index-feedback-summary__cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-feedback-summary__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        padding: 18px 18px 16px;

        transform: translateY(22px);
    }

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

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

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

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

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

    .index-feedback-summary__chip {
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        white-space: nowrap;
    }

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

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

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

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

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

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

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

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

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

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

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 2);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    gap: 4px;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

.main-nav {
    order: 3;
    width: 100%;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[href="index.html"] {
    color: var(--brand);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: static;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        order: 4;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav.active {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-y) var(--space-x);
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }
}

.footer {
        background-color: #f5f7fa;
        color: #333;
        padding: 2.5rem 1rem;
        border-top: 1px solid #e1e4e8;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contact"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contact { grid-area: contact; }
        .footer-legal { grid-area: legal; }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a365d;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 250px;
    }
    .footer-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #4a5568;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2b6cb0;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #2d3748;
        display: inline-block;
        min-width: 80px;
    }
    .footer-contact a {
        color: #2b6cb0;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e1e4e8;
        text-align: center;
        font-size: 0.85rem;
        color: #718096;
    }
    .legal-links {
        margin-bottom: 0.75rem;
    }
    .legal-links a {
        color: #4a5568;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #2b6cb0;
    }
    .copyright-disclaimer {
        margin: 0.75rem auto;
        max-width: 700px;
        line-height: 1.5;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #cbd5e0;
        color: #2d3748;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background-color 0.2s;
    }
    .social-links a:hover {
        background-color: #a0aec0;
    }

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

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

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

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

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

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

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

.map-note-c3 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .map-note-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 1rem;
    }

    .map-note-c3__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .map-note-c3__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .map-note-c3__notes {
        margin-top: 1rem;
        display: grid;
        gap: .7rem;
    }

    .map-note-c3__notes div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-note-c3__notes span {
        display: block;
        margin-top: .3rem;
        color: rgba(255, 255, 255, .84);
    }

    .map-note-c3__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-note-c3__embed iframe {
        display: block;
        width: 100%;
        height: 24rem;
    }

    @media (max-width: 840px) {
        .map-note-c3__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

.clarifications-c2 {

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

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

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

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

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

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

    /* Световой “луч” двигается постоянно */
    .clarifications-c2__beam {
        position: absolute;
        top: 0;
        left: 0;
        width: 48%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
        transform: translateX(-120%);
        animation: c2Beam 6.2s linear infinite;
        pointer-events: none;
    }

    @keyframes c2Beam {
        0% {
            transform: translateX(-120%)
        }
        55% {
            transform: translateX(160%)
        }
        100% {
            transform: translateX(160%)
        }
    }

    .clarifications-c2__list {
        display: grid;
        gap: 10px;
        padding: 12px;
    }

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

    .clarifications-c2__row.is-hot {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.12);
    }

    .clarifications-c2__tag {
        align-self: start;
        padding: 8px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        font-weight: 800;
        white-space: nowrap;
        color: rgba(255, 255, 255, .92);
    }

    .clarifications-c2__q {
        font-weight: 900;
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-c2__a {
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    @media (max-width: 720px) {
        .clarifications-c2__row {
            grid-template-columns:1fr
        }

        .clarifications-c2__tag {
            justify-self: start
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-c2__beam {
            animation: none;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    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);
}

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 2);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    gap: 4px;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

.main-nav {
    order: 3;
    width: 100%;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[href="index.html"] {
    color: var(--brand);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: static;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        order: 4;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav.active {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-y) var(--space-x);
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }
}

.footer {
        background-color: #f5f7fa;
        color: #333;
        padding: 2.5rem 1rem;
        border-top: 1px solid #e1e4e8;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contact"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contact { grid-area: contact; }
        .footer-legal { grid-area: legal; }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a365d;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 250px;
    }
    .footer-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #4a5568;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2b6cb0;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #2d3748;
        display: inline-block;
        min-width: 80px;
    }
    .footer-contact a {
        color: #2b6cb0;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e1e4e8;
        text-align: center;
        font-size: 0.85rem;
        color: #718096;
    }
    .legal-links {
        margin-bottom: 0.75rem;
    }
    .legal-links a {
        color: #4a5568;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #2b6cb0;
    }
    .copyright-disclaimer {
        margin: 0.75rem auto;
        max-width: 700px;
        line-height: 1.5;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #cbd5e0;
        color: #2d3748;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background-color 0.2s;
    }
    .social-links a:hover {
        background-color: #a0aec0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    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);
}

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 2);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    gap: 4px;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

.main-nav {
    order: 3;
    width: 100%;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[href="index.html"] {
    color: var(--brand);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: static;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        order: 4;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav.active {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-y) var(--space-x);
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }
}

.footer {
        background-color: #f5f7fa;
        color: #333;
        padding: 2.5rem 1rem;
        border-top: 1px solid #e1e4e8;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contact"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contact { grid-area: contact; }
        .footer-legal { grid-area: legal; }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a365d;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 250px;
    }
    .footer-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #4a5568;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2b6cb0;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #2d3748;
        display: inline-block;
        min-width: 80px;
    }
    .footer-contact a {
        color: #2b6cb0;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e1e4e8;
        text-align: center;
        font-size: 0.85rem;
        color: #718096;
    }
    .legal-links {
        margin-bottom: 0.75rem;
    }
    .legal-links a {
        color: #4a5568;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #2b6cb0;
    }
    .copyright-disclaimer {
        margin: 0.75rem auto;
        max-width: 700px;
        line-height: 1.5;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #cbd5e0;
        color: #2d3748;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background-color 0.2s;
    }
    .social-links a:hover {
        background-color: #a0aec0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 2);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    gap: 4px;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

.main-nav {
    order: 3;
    width: 100%;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[href="index.html"] {
    color: var(--brand);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: static;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        order: 4;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav.active {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-y) var(--space-x);
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }
}

.footer {
        background-color: #f5f7fa;
        color: #333;
        padding: 2.5rem 1rem;
        border-top: 1px solid #e1e4e8;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contact"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contact { grid-area: contact; }
        .footer-legal { grid-area: legal; }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a365d;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 250px;
    }
    .footer-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #4a5568;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2b6cb0;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #2d3748;
        display: inline-block;
        min-width: 80px;
    }
    .footer-contact a {
        color: #2b6cb0;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e1e4e8;
        text-align: center;
        font-size: 0.85rem;
        color: #718096;
    }
    .legal-links {
        margin-bottom: 0.75rem;
    }
    .legal-links a {
        color: #4a5568;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #2b6cb0;
    }
    .copyright-disclaimer {
        margin: 0.75rem auto;
        max-width: 700px;
        line-height: 1.5;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #cbd5e0;
        color: #2d3748;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background-color 0.2s;
    }
    .social-links a:hover {
        background-color: #a0aec0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 2);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    gap: 4px;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

.main-nav {
    order: 3;
    width: 100%;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[href="index.html"] {
    color: var(--brand);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .header-logo {
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 3;
        position: static;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        order: 4;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav.active {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-y) var(--space-x);
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }
}

.footer {
        background-color: #f5f7fa;
        color: #333;
        padding: 2.5rem 1rem;
        border-top: 1px solid #e1e4e8;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contact"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contact { grid-area: contact; }
        .footer-legal { grid-area: legal; }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a365d;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 250px;
    }
    .footer-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #4a5568;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2b6cb0;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact strong {
        color: #2d3748;
        display: inline-block;
        min-width: 80px;
    }
    .footer-contact a {
        color: #2b6cb0;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e1e4e8;
        text-align: center;
        font-size: 0.85rem;
        color: #718096;
    }
    .legal-links {
        margin-bottom: 0.75rem;
    }
    .legal-links a {
        color: #4a5568;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #2b6cb0;
    }
    .copyright-disclaimer {
        margin: 0.75rem auto;
        max-width: 700px;
        line-height: 1.5;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #cbd5e0;
        color: #2d3748;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background-color 0.2s;
    }
    .social-links a:hover {
        background-color: #a0aec0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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