:root {
  --font-family: "Inter", sans-serif;
  --font-size-base: 18.5px;
  --line-height-base: 1.41;

  --max-w: 1180px;
  --space-x: 1.66rem;
  --space-y: 1.48rem;
  --gap: 2.19rem;

  --radius-xl: 1.23rem;
  --radius-lg: 1rem;
  --radius-md: 0.63rem;
  --radius-sm: 0.29rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.15);
  --shadow-md: 0 12px 28px rgba(0,0,0,0.19);
  --shadow-lg: 0 22px 38px rgba(0,0,0,0.23);

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

  --brand: #0056b3;
  --brand-contrast: #ffffff;
  --accent: #e63946;
  --accent-contrast: #ffffff;

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

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

  --bg-alt: #f8f9fa;
  --fg-on-alt: #495057;

  --surface-1: #ffffff;
  --surface-2: #f1f5f9;
  --fg-on-surface: #1e293b;
  --border-on-surface: #e2e8f0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #334155;
  --border-on-surface-light: #cbd5e1;

  --bg-primary: #0056b3;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #004494;
  --ring: #3b82f6;

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

  --link: #0056b3;
  --link-hover: #003d82;

  --gradient-hero: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
  --gradient-accent: linear-gradient(90deg, #e63946 0%, #ff6b6b 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;}

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .header__logo:hover {
        color: var(--link);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding: calc(var(--space-y) * 3) var(--space-x);
            z-index: 999;
            overflow-y: auto;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: 60px;
        }
        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            font-size: calc(var(--font-size-base) * 1.1);
        }
        .header.scrolled .header__nav {
            background-color: var(--surface-1);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-weight: 700;
        font-size: 1.2rem;
        color: #2c3e50;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-legal-links a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .separator {
        color: #adb5bd;
        margin: 0 0.5rem;
    }
    .footer-disclaimer {
        color: #6c757d;
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 300px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
    }
    .contact-line {
        margin-bottom: 0.25rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-copyright {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

.intro-stack-l12 {
        padding: clamp(3.6rem, 8vw, 6.5rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .intro-stack-l12__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .intro-stack-l12__hero {
        text-align: center;
    }

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

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

    .intro-stack-l12__hero strong {
        display: block;
        margin-top: .7rem;
    }

    .intro-stack-l12__panels {
        margin-top: 1.15rem;
        display: grid;
        gap: .8rem;
    }

    .intro-stack-l12__panels article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        color: var(--neutral-600);
    }

.next-pulse-c3 {
        padding: clamp(3.6rem, 8vw, 6.1rem) var(--space-x);
        background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, .16), transparent 28%), var(--gradient-hero);
        color: var(--fg-on-primary);
        text-align: center;
    }

    .next-pulse-c3__wrap {
        max-width: 54rem;
        margin: 0 auto;
    }

    .next-pulse-c3__wrap p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

    .next-pulse-c3__wrap h2 {
        margin: .55rem 0 0;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
    }

    .next-pulse-c3__row {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-pulse-c3__row a {
        display: inline-flex;
        padding: .8rem 1rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .18);
        text-decoration: none;
        animation: next_pulse_c3 2.4s ease-in-out infinite;
    }

    .next-pulse-c3__row a:nth-child(2n) {
        animation-delay: .35s;
    }

    @keyframes next_pulse_c3 {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-3px);
        }
    }

    .next-pulse-c3__copy {
        margin-top: 1rem;

    }

    .next-pulse-c3__cta {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.9rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        text-decoration: none;
    }

.faq-fresh-v6 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

    .faq-fresh-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

    .faq-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.3vw, 2.5rem);
    }

    .faq-fresh-v6 .bands {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap);
    }

    .faq-fresh-v6 article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .faq-fresh-v6 h3 {
        margin: 0 0 .45rem;
        font-size: 1rem;
    }

    .faq-fresh-v6 p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    @media (max-width: 980px) {
        .faq-fresh-v6 .bands {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 680px) {
        .faq-fresh-v6 .bands {
            grid-template-columns:1fr;
        }
    }

.features-struct-v6 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0)
    }

    .features-struct-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .features-struct-v6 h2, .features-struct-v6 h3, .features-struct-v6 p {
        margin: 0
    }

    .features-struct-v6 .head {
        display: grid;
        gap: calc(var(--gap) * .35)
    }

    .features-struct-v6 .grid {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .features-struct-v6 article {
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .9rem;
        display: grid;
        gap: .5rem
    }

    .features-struct-v6 .icon {
        min-height: 2rem;
        min-width: 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-1);
        border-radius: var(--radius-sm)
    }

    .features-struct-v6 a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .features-struct-v6 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

    .features-struct-v6 .chips {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem
    }

    .features-struct-v6 .chips span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v6 .list {
        display: grid;
        gap: .6rem
    }

    .features-struct-v6 .list div {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v6 .timeline {
        display: grid;
        gap: .7rem
    }

    .features-struct-v6 .timeline article {
        position: relative;
        padding-left: 1.2rem
    }

    .features-struct-v6 .timeline article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .5rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .features-struct-v6 .side img, .features-struct-v6 .media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .features-struct-v6 .table {
        display: grid;
        gap: .45rem
    }

    .features-struct-v6 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .5rem;
        padding: .65rem;
        border-radius: var(--radius-md);
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v6 .cards {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v6 .cta {
        display: flex;
        justify-content: flex-start
    }

    .features-struct-v6 .split {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v6 details {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .features-struct-v6 .grid, .features-struct-v6 .cards {
            grid-template-columns:1fr 1fr
        }

        .features-struct-v6 .layout, .features-struct-v6 .split {
            grid-template-columns:1fr
        }
    }

    @media (max-width: 680px) {
        .features-struct-v6 .grid, .features-struct-v6 .cards, .features-struct-v6 .row {
            grid-template-columns:1fr
        }
    }

.profile {

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

    .profile .profile__c {
        max-width: 900px;
        margin: 0 auto;
    }

    .profile .profile__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .profile h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
    }

    .profile .profile__card {
        background: var(--surface-light);
        border: 2px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
        box-shadow: var(--shadow-lg);
    }

    .profile .profile__header {
        display: flex;
        gap: clamp(24px, 4vw, 32px);
        align-items: center;
        margin-bottom: clamp(32px, 4vw, 40px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 2px solid var(--border-on-surface-light);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .profile .profile__header > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 767px) {
        .profile .profile__header {
            flex-direction: column;
            text-align: center;
        }
    }

    .profile .profile__avatar-wrapper {
        position: relative;
        flex-shrink: 0;
    }

    .profile .profile__avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 700;
        border: 4px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__avatar-overlay {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        border: 3px solid var(--bg-page);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__avatar-overlay input {
        display: none;
    }

    .profile .profile__avatar-overlay:hover {
        transform: scale(1.1);
        box-shadow: var(--shadow-lg);
    }

    .profile .profile__avatar-icon {
        font-size: 1.125rem;
    }

    .profile .profile__header-info {
        flex: 1;
    }

    .profile .profile__header-info h2 {
        margin: 0 0 0.5rem;
        font-size: clamp(24px, 3.5vw, 28px);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__role {
        margin: 0;
        color: var(--neutral-600);
        font-size: 1rem;
    }

    .profile .profile__form {
        display: flex;
        flex-direction: column;
        gap: clamp(32px, 4vw, 40px);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .profile .profile__form > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__form-section {
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .profile .profile__form-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

    .profile .profile__form-section h3 {
        margin: 0 0 clamp(20px, 3vw, 24px);
        font-size: clamp(20px, 2.8vw, 24px);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 24px);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .profile .profile__form-grid > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 767px) {
        .profile .profile__form-grid {
            grid-template-columns: 1fr;
        }
    }

    .profile .profile__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .profile .profile__form-group label {
        font-weight: 600;
        color: var(--fg-on-page);
        font-size: 0.875rem;
    }

    .profile .profile__form-group input,
    .profile .profile__form-group textarea {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__form-group input::placeholder,
    .profile .profile__form-group textarea::placeholder {
        color: var(--neutral-600);
    }

    .profile .profile__form-group input:focus,
    .profile .profile__form-group textarea:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .profile .profile__checkboxes {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .profile .profile__checkboxes > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__checkbox-label {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        cursor: pointer;
        font-weight: 500;
        color: var(--fg-on-page);
    }

    .profile .profile__checkbox-label input {
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .profile .profile__actions {
        display: flex;
        gap: 1rem;
        margin-top: clamp(24px, 4vw, 32px);
        padding-top: clamp(24px, 4vw, 32px);
        border-top: 1px solid var(--border-on-surface-light);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .profile .profile__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__save {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__save:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

    .profile .profile__cancel {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--ring);
        background: transparent;
        color: var(--fg-on-page);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__cancel:hover {
        border-color: var(--bg-primary);
        color: var(--bg-primary);
        background: rgba(37, 99, 235, 0.1);
    }

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .header__logo:hover {
        color: var(--link);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding: calc(var(--space-y) * 3) var(--space-x);
            z-index: 999;
            overflow-y: auto;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: 60px;
        }
        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            font-size: calc(var(--font-size-base) * 1.1);
        }
        .header.scrolled .header__nav {
            background-color: var(--surface-1);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-weight: 700;
        font-size: 1.2rem;
        color: #2c3e50;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-legal-links a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .separator {
        color: #adb5bd;
        margin: 0 0.5rem;
    }
    .footer-disclaimer {
        color: #6c757d;
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 300px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
    }
    .contact-line {
        margin-bottom: 0.25rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-copyright {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

.profile {

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

    .profile .profile__c {
        max-width: 900px;
        margin: 0 auto;
    }

    .profile .profile__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .profile h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
    }

    .profile .profile__card {
        background: var(--surface-light);
        border: 2px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
        box-shadow: var(--shadow-lg);
    }

    .profile .profile__header {
        display: flex;
        gap: clamp(24px, 4vw, 32px);
        align-items: center;
        margin-bottom: clamp(32px, 4vw, 40px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 2px solid var(--border-on-surface-light);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .profile .profile__header > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 767px) {
        .profile .profile__header {
            flex-direction: column;
            text-align: center;
        }
    }

    .profile .profile__avatar-wrapper {
        position: relative;
        flex-shrink: 0;
    }

    .profile .profile__avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 700;
        border: 4px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__avatar-overlay {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        border: 3px solid var(--bg-page);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__avatar-overlay input {
        display: none;
    }

    .profile .profile__avatar-overlay:hover {
        transform: scale(1.1);
        box-shadow: var(--shadow-lg);
    }

    .profile .profile__avatar-icon {
        font-size: 1.125rem;
    }

    .profile .profile__header-info {
        flex: 1;
    }

    .profile .profile__header-info h2 {
        margin: 0 0 0.5rem;
        font-size: clamp(24px, 3.5vw, 28px);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__role {
        margin: 0;
        color: var(--neutral-600);
        font-size: 1rem;
    }

    .profile .profile__form {
        display: flex;
        flex-direction: column;
        gap: clamp(32px, 4vw, 40px);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .profile .profile__form > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__form-section {
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .profile .profile__form-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

    .profile .profile__form-section h3 {
        margin: 0 0 clamp(20px, 3vw, 24px);
        font-size: clamp(20px, 2.8vw, 24px);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 24px);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .profile .profile__form-grid > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 767px) {
        .profile .profile__form-grid {
            grid-template-columns: 1fr;
        }
    }

    .profile .profile__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .profile .profile__form-group label {
        font-weight: 600;
        color: var(--fg-on-page);
        font-size: 0.875rem;
    }

    .profile .profile__form-group input,
    .profile .profile__form-group textarea {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__form-group input::placeholder,
    .profile .profile__form-group textarea::placeholder {
        color: var(--neutral-600);
    }

    .profile .profile__form-group input:focus,
    .profile .profile__form-group textarea:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .profile .profile__checkboxes {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .profile .profile__checkboxes > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__checkbox-label {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        cursor: pointer;
        font-weight: 500;
        color: var(--fg-on-page);
    }

    .profile .profile__checkbox-label input {
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .profile .profile__actions {
        display: flex;
        gap: 1rem;
        margin-top: clamp(24px, 4vw, 32px);
        padding-top: clamp(24px, 4vw, 32px);
        border-top: 1px solid var(--border-on-surface-light);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .profile .profile__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__save {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__save:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

    .profile .profile__cancel {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--ring);
        background: transparent;
        color: var(--fg-on-page);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__cancel:hover {
        border-color: var(--bg-primary);
        color: var(--bg-primary);
        background: rgba(37, 99, 235, 0.1);
    }

.support-cv2 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .support-cv2__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

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

    .support-cv2__box p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-cv2__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-cv2__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .header__logo:hover {
        color: var(--link);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding: calc(var(--space-y) * 3) var(--space-x);
            z-index: 999;
            overflow-y: auto;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: 60px;
        }
        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            font-size: calc(var(--font-size-base) * 1.1);
        }
        .header.scrolled .header__nav {
            background-color: var(--surface-1);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-weight: 700;
        font-size: 1.2rem;
        color: #2c3e50;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-legal-links a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .separator {
        color: #adb5bd;
        margin: 0 0.5rem;
    }
    .footer-disclaimer {
        color: #6c757d;
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 300px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
    }
    .contact-line {
        margin-bottom: 0.25rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-copyright {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

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

.settings__inner {
    max-width: 640px;
    margin: 0 auto;
}

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

.settings__inner p {
    margin: 0;
    color: var(--neutral-600);
    font-size: 0.95rem;
}

.education-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

    .education-struct-v2 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .education-struct-v2 h2, .education-struct-v2 h3, .education-struct-v2 p {
        margin: 0
    }

    .education-struct-v2 a {
        text-decoration: none
    }

    .education-struct-v2 article, .education-struct-v2 .row, .education-struct-v2 details, .education-struct-v2 .program {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .education-struct-v2 .grid, .education-struct-v2 .tiers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .education-struct-v2 .grid a, .education-struct-v2 .tiers a, .education-struct-v2 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v2 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v2 .path article {
        position: relative;
        padding-left: 1.25rem
    }

    .education-struct-v2 .path article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .education-struct-v2 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v2 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

    .education-struct-v2 .combo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .education-struct-v2 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v2 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .education-struct-v2 .mentors img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .education-struct-v2 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v2 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v2 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v2 .grid, .education-struct-v2 .tiers, .education-struct-v2 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v2 .grid, .education-struct-v2 .tiers, .education-struct-v2 .combo, .education-struct-v2 .row {
            grid-template-columns:1fr
        }
    }

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .header__logo:hover {
        color: var(--link);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding: calc(var(--space-y) * 3) var(--space-x);
            z-index: 999;
            overflow-y: auto;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: 60px;
        }
        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            font-size: calc(var(--font-size-base) * 1.1);
        }
        .header.scrolled .header__nav {
            background-color: var(--surface-1);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-weight: 700;
        font-size: 1.2rem;
        color: #2c3e50;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-legal-links a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .separator {
        color: #adb5bd;
        margin: 0 0.5rem;
    }
    .footer-disclaimer {
        color: #6c757d;
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 300px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
    }
    .contact-line {
        margin-bottom: 0.25rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-copyright {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

.activity {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .activity .activity__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .activity .activity__h {
        margin-bottom: var(--space-y);
    }

    .activity h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0;
        color: var(--fg-on-primary);
    }

    .activity .activity__timeline {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        position: relative;
        padding-left: 2rem;
    }

    .activity .activity__timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--ring);
    }

    .activity .activity__item {
        position: relative;
        padding-left: 2rem;
    }

    .activity .activity__item::before {
        content: '';
        position: absolute;
        left: -1.625rem;
        top: 0.5rem;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--bg-primary);
        border: 2px solid var(--bg-page);
    }

    .activity .activity__date {
        color: var(--neutral-600);
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .activity .activity__content {
        background: var(--surface-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .activity h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 20px);
        color: var(--fg-on-primary);
    }

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

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

        transform: translateY(28px);
    }

    .index-feedback-light__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
    }

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

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

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

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

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

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

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

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

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

.education-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

    .education-struct-v2 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .education-struct-v2 h2, .education-struct-v2 h3, .education-struct-v2 p {
        margin: 0
    }

    .education-struct-v2 a {
        text-decoration: none
    }

    .education-struct-v2 article, .education-struct-v2 .row, .education-struct-v2 details, .education-struct-v2 .program {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .education-struct-v2 .grid, .education-struct-v2 .tiers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .education-struct-v2 .grid a, .education-struct-v2 .tiers a, .education-struct-v2 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v2 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v2 .path article {
        position: relative;
        padding-left: 1.25rem
    }

    .education-struct-v2 .path article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .education-struct-v2 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v2 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

    .education-struct-v2 .combo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .education-struct-v2 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v2 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .education-struct-v2 .mentors img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .education-struct-v2 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v2 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v2 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v2 .grid, .education-struct-v2 .tiers, .education-struct-v2 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v2 .grid, .education-struct-v2 .tiers, .education-struct-v2 .combo, .education-struct-v2 .row {
            grid-template-columns:1fr
        }
    }

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .header__logo:hover {
        color: var(--link);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding: calc(var(--space-y) * 3) var(--space-x);
            z-index: 999;
            overflow-y: auto;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: 60px;
        }
        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            font-size: calc(var(--font-size-base) * 1.1);
        }
        .header.scrolled .header__nav {
            background-color: var(--surface-1);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-weight: 700;
        font-size: 1.2rem;
        color: #2c3e50;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-legal-links a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .separator {
        color: #adb5bd;
        margin: 0 0.5rem;
    }
    .footer-disclaimer {
        color: #6c757d;
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 300px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
    }
    .contact-line {
        margin-bottom: 0.25rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-copyright {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

.security {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .security .security__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .security .security__h {
        margin-bottom: var(--space-y);
    }

    .security h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__sections {
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
    }

    .security .security__section {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .security h2 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__form input {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__form input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .security .security__form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
    }

    .security .security__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .security .security__sessions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__session {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: var(--gradient-hero);
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
    }

    .security h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-primary);
    }

    .security .security__session p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .security .security__logout {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__logout:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

.support-cv2 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .support-cv2__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

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

    .support-cv2__box p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-cv2__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-cv2__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .header__logo:hover {
        color: var(--link);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding: calc(var(--space-y) * 3) var(--space-x);
            z-index: 999;
            overflow-y: auto;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: 60px;
        }
        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            font-size: calc(var(--font-size-base) * 1.1);
        }
        .header.scrolled .header__nav {
            background-color: var(--surface-1);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-weight: 700;
        font-size: 1.2rem;
        color: #2c3e50;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-legal-links a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .separator {
        color: #adb5bd;
        margin: 0 0.5rem;
    }
    .footer-disclaimer {
        color: #6c757d;
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 300px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
    }
    .contact-line {
        margin-bottom: 0.25rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-copyright {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

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

    .form-layout-f .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-f .boxed {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .form-layout-f .group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

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

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

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

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

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

.contact-layout-d {
        padding: clamp(56px, 8vw, 94px) clamp(16px, 4vw, 34px);
        background: var(--accent);
        color: var(--neutral-0);
    }

    .contact-layout-d .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .contact-layout-d .box {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 18px;
        background: rgba(255, 255, 255, .05);
    }

    .contact-layout-d ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
    }

    .contact-layout-d li {
        display: grid;
        gap: 4px;
        padding: 10px 12px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .06);
    }

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

    .contact-layout-d .social a {
        text-decoration: none;
        color: var(--neutral-0);
        border: 1px solid rgba(255, 255, 255, .28);
        padding: 6px 10px;
        border-radius: 999px;
    }

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .header__logo:hover {
        color: var(--link);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding: calc(var(--space-y) * 3) var(--space-x);
            z-index: 999;
            overflow-y: auto;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: 60px;
        }
        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            font-size: calc(var(--font-size-base) * 1.1);
        }
        .header.scrolled .header__nav {
            background-color: var(--surface-1);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-weight: 700;
        font-size: 1.2rem;
        color: #2c3e50;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-legal-links a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .separator {
        color: #adb5bd;
        margin: 0 0.5rem;
    }
    .footer-disclaimer {
        color: #6c757d;
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 300px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
    }
    .contact-line {
        margin-bottom: 0.25rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-copyright {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

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

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .header__logo:hover {
        color: var(--link);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding: calc(var(--space-y) * 3) var(--space-x);
            z-index: 999;
            overflow-y: auto;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: 60px;
        }
        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            font-size: calc(var(--font-size-base) * 1.1);
        }
        .header.scrolled .header__nav {
            background-color: var(--surface-1);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-weight: 700;
        font-size: 1.2rem;
        color: #2c3e50;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-legal-links a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .separator {
        color: #adb5bd;
        margin: 0 0.5rem;
    }
    .footer-disclaimer {
        color: #6c757d;
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 300px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
    }
    .contact-line {
        margin-bottom: 0.25rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-copyright {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .header__logo:hover {
        color: var(--link);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding: calc(var(--space-y) * 3) var(--space-x);
            z-index: 999;
            overflow-y: auto;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: 60px;
        }
        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            font-size: calc(var(--font-size-base) * 1.1);
        }
        .header.scrolled .header__nav {
            background-color: var(--surface-1);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-weight: 700;
        font-size: 1.2rem;
        color: #2c3e50;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-legal-links a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .separator {
        color: #adb5bd;
        margin: 0 0.5rem;
    }
    .footer-disclaimer {
        color: #6c757d;
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 300px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
    }
    .contact-line {
        margin-bottom: 0.25rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-copyright {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .header__logo:hover {
        color: var(--link);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding: calc(var(--space-y) * 3) var(--space-x);
            z-index: 999;
            overflow-y: auto;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: 60px;
        }
        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            font-size: calc(var(--font-size-base) * 1.1);
        }
        .header.scrolled .header__nav {
            background-color: var(--surface-1);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-weight: 700;
        font-size: 1.2rem;
        color: #2c3e50;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-legal-links a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .separator {
        color: #adb5bd;
        margin: 0 0.5rem;
    }
    .footer-disclaimer {
        color: #6c757d;
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 300px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
    }
    .contact-line {
        margin-bottom: 0.25rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-copyright {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

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