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

  --max-w: 1040px;
  --space-x: 0.48rem;
  --space-y: 0.93rem;
  --gap: 0.7rem;

  --radius-xl: 0.83rem;
  --radius-lg: 0.63rem;
  --radius-md: 0.33rem;
  --radius-sm: 0.18rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 3px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);

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

  --brand: #2563eb;
  --brand-contrast: #ffffff;
  --accent: #7c3aed;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8fafc;
  --neutral-300: #cbd5e1;
  --neutral-600: #475569;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #ffffff;
  --fg-on-page: #1e293b;

  --bg-alt: #f8fafc;
  --fg-on-alt: #334155;

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

  --surface-light: #ffffff;
  --fg-on-surface-light: #475569;
  --border-on-surface-light: #f1f5f9;

  --bg-primary: #2563eb;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d4ed8;
  --ring: #3b82f6;

  --bg-accent: #f5f3ff;
  --fg-on-accent: #4c1d95;
  --bg-accent-hover: #6d28d9;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --gradient-accent: linear-gradient(90deg, #f5f3ff 0%, #e0e7ff 100%);

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

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

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

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

.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    position: relative;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="index.html"] {
    font-weight: 600;
    color: var(--brand);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}

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

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

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

    .main-nav.is-open {
        transform: translateX(0);
    }

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

    .nav-link {
        display: block;
        width: 100%;
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }

    .middle-row {
        justify-content: center;
        text-align: center;
    }

    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.5rem;
    }

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

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

    .footer-nav a:hover {
        color: #0d6efd;
    }

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

    .footer-contacts li {
        color: #333;
        line-height: 1.6;
    }

    .footer-legal {
        width: 100%;
    }

    .legal-links {
        margin: 0.5rem 0;
    }

    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }

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

    .disclaimer {
        margin-top: 0.8rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
        color: #868e96;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.2rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1rem;
        }

        .footer-contacts ul {
            flex-direction: column;
            gap: 0.7rem;
        }

        .top-row, .bottom-row {
            border: none;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.intro-flag-c11 {
        padding: clamp(3.8rem, 8vw, 6.8rem) var(--space-x);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

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

    .intro-flag-c11__left, .intro-flag-c11__right {
        padding: 1.1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-flag-c11__tag {
        display: inline-flex;
        padding: .4rem .75rem;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .intro-flag-c11__left h1 {
        margin: .8rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.6rem);
        line-height: 1;
    }

    .intro-flag-c11__left p {
        margin: .9rem 0 0;

    }

    .intro-flag-c11__right {
        display: grid;
        align-content: center;
        gap: .65rem;
    }

    .intro-flag-c11__right div {
        font-size: clamp(2.8rem, 5vw, 4rem);
        font-weight: 700;
    }

    .intro-flag-c11__right span {
        color: rgba(255, 255, 255, .82);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.two-column-section--split .two-column-section__text {
    padding: 0 0 0 0;
    border-left: 2px solid var(--border-on-surface);
    padding-left: var(--space-x);
}

.two-column-section--split .two-column-section__text:first-child {
    border-left: 0;
    padding-left: 0;
}

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

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

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

    .touch-bulletin .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .touch-bulletin .header {
        margin-bottom: 14px;
    }

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

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

    .touch-bulletin ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .touch-bulletin li {
        border: 1px solid var(--border-on-surface);
        border-radius: 12px;
        background: var(--neutral-0);
        padding: 10px 12px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 8px;
        align-items: center;
    }

    .touch-bulletin span {
        color: var(--neutral-600);
        font-size: .85rem;
    }

    .touch-bulletin a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .touch-bulletin .cta {
        display: inline-block;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 10px 14px;
    }

.why-choose {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
    }

    .why-choose .why-choose__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .why-choose .why-choose__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

        transform: translateY(20px);
    }

    .why-choose h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .why-choose .why-choose__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .why-choose .why-choose__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose .why-choose__item {
        background: var(--fg-on-primary);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        transition: transform var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose .why-choose__item:hover {
        transform: translateY(-4px);
    }

    .why-choose .why-choose__icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

    .why-choose .why-choose__item h3 {
        font-size: clamp(18px, 2.2vw, 22px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .why-choose .why-choose__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

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

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

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

.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    position: relative;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="index.html"] {
    font-weight: 600;
    color: var(--brand);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}

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

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

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

    .main-nav.is-open {
        transform: translateX(0);
    }

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

    .nav-link {
        display: block;
        width: 100%;
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }

    .middle-row {
        justify-content: center;
        text-align: center;
    }

    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.5rem;
    }

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

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

    .footer-nav a:hover {
        color: #0d6efd;
    }

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

    .footer-contacts li {
        color: #333;
        line-height: 1.6;
    }

    .footer-legal {
        width: 100%;
    }

    .legal-links {
        margin: 0.5rem 0;
    }

    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }

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

    .disclaimer {
        margin-top: 0.8rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
        color: #868e96;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.2rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1rem;
        }

        .footer-contacts ul {
            flex-direction: column;
            gap: 0.7rem;
        }

        .top-row, .bottom-row {
            border: none;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.bloglist-fresh-v1 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .bloglist-fresh-v1 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .bloglist-fresh-v1 .intro p {
        margin: .35rem 0 0;
        color: var(--fg-on-surface-light);
    }

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

    .bloglist-fresh-v1 article {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        overflow: hidden;
        background: var(--surface-1);
    }

    .bloglist-fresh-v1 img {
        width: 100%;
        aspect-ratio: 16/10;
        object-fit: cover;
        display: block;
    }

    .bloglist-fresh-v1 .txt {
        padding: .9rem;
    }

    .bloglist-fresh-v1 .meta {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: .85rem;
    }

    .bloglist-fresh-v1 h3 {
        margin: .35rem 0 .45rem;
        font-size: 1.05rem;
    }

    .bloglist-fresh-v1 h3 a {
        text-decoration: none;
        color: var(--fg-on-surface);
    }

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

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

    @media (max-width: 640px) {
        .bloglist-fresh-v1 .grid {
            grid-template-columns:1fr;
        }
    }

.education-struct-v3 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

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

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

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

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

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

    .education-struct-v3 .grid a, .education-struct-v3 .tiers a, .education-struct-v3 .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-v3 .path {
        display: grid;
        gap: .65rem
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    position: relative;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="index.html"] {
    font-weight: 600;
    color: var(--brand);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}

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

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

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

    .main-nav.is-open {
        transform: translateX(0);
    }

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

    .nav-link {
        display: block;
        width: 100%;
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }

    .middle-row {
        justify-content: center;
        text-align: center;
    }

    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.5rem;
    }

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

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

    .footer-nav a:hover {
        color: #0d6efd;
    }

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

    .footer-contacts li {
        color: #333;
        line-height: 1.6;
    }

    .footer-legal {
        width: 100%;
    }

    .legal-links {
        margin: 0.5rem 0;
    }

    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }

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

    .disclaimer {
        margin-top: 0.8rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
        color: #868e96;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.2rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1rem;
        }

        .footer-contacts ul {
            flex-direction: column;
            gap: 0.7rem;
        }

        .top-row, .bottom-row {
            border: none;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.blogitem-fresh-v4 {
        padding: calc(var(--space-y) * 2.6) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .blogitem-fresh-v4 .shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .blogitem-fresh-v4 .top h1 {
        margin: 0;
        font-size: clamp(2rem, 3.9vw, 2.9rem);
    }

    .blogitem-fresh-v4 .top p {
        margin: .45rem 0 0;
        opacity: .92;
    }

    .blogitem-fresh-v4 .cover {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .blogitem-fresh-v4 .body {
        display: grid;
        gap: .85rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .blogitem-fresh-v4 .body p {
        margin: 0;
        opacity: .95;
    }

    .blogitem-fresh-v4 .tags {
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;
    }

    .blogitem-fresh-v4 .tags span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--btn-ghost-bg-hover);
        font-size: .82rem;
    }

.author {

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

    .author .author__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .author .author__content {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: clamp(32px, 5vw, 48px);
        align-items: center;
    }

    .author .author__image {
        width: clamp(150px, 22vw, 220px);
        height: clamp(150px, 22vw, 220px);
        border-radius: var(--radius-lg);
        overflow: hidden;
        flex-shrink: 0;
    }

    .author .author__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author .author__info h3 {
        font-size: clamp(26px, 4.5vw, 36px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .author .author__role {
        font-size: clamp(16px, 2.5vw, 18px);
        color: var(--bg-accent);
        margin: 0 0 1.25rem;
        font-weight: 600;
    }

    .author .author__bio {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0;
    }

    @media (max-width: 768px) {
        .author .author__content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

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

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

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

.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    position: relative;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="index.html"] {
    font-weight: 600;
    color: var(--brand);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}

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

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

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

    .main-nav.is-open {
        transform: translateX(0);
    }

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

    .nav-link {
        display: block;
        width: 100%;
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }

    .middle-row {
        justify-content: center;
        text-align: center;
    }

    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.5rem;
    }

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

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

    .footer-nav a:hover {
        color: #0d6efd;
    }

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

    .footer-contacts li {
        color: #333;
        line-height: 1.6;
    }

    .footer-legal {
        width: 100%;
    }

    .legal-links {
        margin: 0.5rem 0;
    }

    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }

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

    .disclaimer {
        margin-top: 0.8rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
        color: #868e96;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.2rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1rem;
        }

        .footer-contacts ul {
            flex-direction: column;
            gap: 0.7rem;
        }

        .top-row, .bottom-row {
            border: none;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.blogitem-fresh-v4 {
        padding: calc(var(--space-y) * 2.6) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .blogitem-fresh-v4 .shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .blogitem-fresh-v4 .top h1 {
        margin: 0;
        font-size: clamp(2rem, 3.9vw, 2.9rem);
    }

    .blogitem-fresh-v4 .top p {
        margin: .45rem 0 0;
        opacity: .92;
    }

    .blogitem-fresh-v4 .cover {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .blogitem-fresh-v4 .body {
        display: grid;
        gap: .85rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .blogitem-fresh-v4 .body p {
        margin: 0;
        opacity: .95;
    }

    .blogitem-fresh-v4 .tags {
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;
    }

    .blogitem-fresh-v4 .tags span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--btn-ghost-bg-hover);
        font-size: .82rem;
    }

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

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

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

.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    position: relative;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="index.html"] {
    font-weight: 600;
    color: var(--brand);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}

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

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

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

    .main-nav.is-open {
        transform: translateX(0);
    }

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

    .nav-link {
        display: block;
        width: 100%;
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }

    .middle-row {
        justify-content: center;
        text-align: center;
    }

    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.5rem;
    }

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

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

    .footer-nav a:hover {
        color: #0d6efd;
    }

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

    .footer-contacts li {
        color: #333;
        line-height: 1.6;
    }

    .footer-legal {
        width: 100%;
    }

    .legal-links {
        margin: 0.5rem 0;
    }

    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }

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

    .disclaimer {
        margin-top: 0.8rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
        color: #868e96;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.2rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1rem;
        }

        .footer-contacts ul {
            flex-direction: column;
            gap: 0.7rem;
        }

        .top-row, .bottom-row {
            border: none;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.blogitem-fresh-v1 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .blogitem-fresh-v1 .shell {
        max-width: 780px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .blogitem-fresh-v1 .meta {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: .86rem;
    }

    .blogitem-fresh-v1 h1 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1.1;
    }

    .blogitem-fresh-v1 .lead {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: 1.05rem;
    }

    .blogitem-fresh-v1 .cover {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .blogitem-fresh-v1 .content {
        display: grid;
        gap: .85rem;
    }

    .blogitem-fresh-v1 .content p {
        margin: 0;
        color: var(--fg-on-surface);
    }

.faq-fresh-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .faq-fresh-v5 .shell {
        max-width: 840px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .faq-fresh-v5 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.1vw, 2.4rem);
    }

    .faq-fresh-v5 .stack {
        display: grid;
        gap: .75rem;
    }

    .faq-fresh-v5 article {
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .faq-fresh-v5 h3 {
        margin: 0 0 .5rem;
        font-size: 1rem;
    }

    .faq-fresh-v5 p {
        margin: 0;
        opacity: .88;
    }

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

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

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

.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    position: relative;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="index.html"] {
    font-weight: 600;
    color: var(--brand);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}

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

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

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

    .main-nav.is-open {
        transform: translateX(0);
    }

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

    .nav-link {
        display: block;
        width: 100%;
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }

    .middle-row {
        justify-content: center;
        text-align: center;
    }

    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.5rem;
    }

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

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

    .footer-nav a:hover {
        color: #0d6efd;
    }

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

    .footer-contacts li {
        color: #333;
        line-height: 1.6;
    }

    .footer-legal {
        width: 100%;
    }

    .legal-links {
        margin: 0.5rem 0;
    }

    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }

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

    .disclaimer {
        margin-top: 0.8rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
        color: #868e96;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.2rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1rem;
        }

        .footer-contacts ul {
            flex-direction: column;
            gap: 0.7rem;
        }

        .top-row, .bottom-row {
            border: none;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

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

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

.education-struct-v3 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

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

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

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

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

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

    .education-struct-v3 .grid a, .education-struct-v3 .tiers a, .education-struct-v3 .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-v3 .path {
        display: grid;
        gap: .65rem
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .plans-lv2__grid h3 {
        margin: 0;
    }

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

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

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

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

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

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

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

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

.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    position: relative;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="index.html"] {
    font-weight: 600;
    color: var(--brand);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}

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

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

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

    .main-nav.is-open {
        transform: translateX(0);
    }

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

    .nav-link {
        display: block;
        width: 100%;
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }

    .middle-row {
        justify-content: center;
        text-align: center;
    }

    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.5rem;
    }

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

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

    .footer-nav a:hover {
        color: #0d6efd;
    }

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

    .footer-contacts li {
        color: #333;
        line-height: 1.6;
    }

    .footer-legal {
        width: 100%;
    }

    .legal-links {
        margin: 0.5rem 0;
    }

    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }

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

    .disclaimer {
        margin-top: 0.8rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
        color: #868e96;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.2rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1rem;
        }

        .footer-contacts ul {
            flex-direction: column;
            gap: 0.7rem;
        }

        .top-row, .bottom-row {
            border: none;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

    .contacts-fresh-v6 .columns {
        display: flex;
        gap: var(--gap);
        overflow: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: .2rem;
    }

    .contacts-fresh-v6 article {
        min-width: 260px;
        scroll-snap-align: start;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .contacts-fresh-v6 h3 {
        margin: 0 0 .5rem;
    }

    .contacts-fresh-v6 p {
        margin: 0;
    }

    .contacts-fresh-v6 .hint {
        margin: .4rem 0 .8rem;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v6 a {
        text-decoration: none;
        color: var(--link);
        font-weight: 700;
    }

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

    .form-layout-e .wrap {
        max-width: 820px;
        margin: 0 auto;
        background: white;
        color: black;
        border-radius: var(--radius-xl);
        padding: var(--space-x);
        box-shadow: var(--shadow-md);
    }

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

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

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

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

    .form-layout-e label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
        color: var(--neutral-800);
        font-weight: 500;
    }

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

    .form-layout-e input::placeholder,
    .form-layout-e textarea::placeholder {
        color: var(--input-placeholder);
    }

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

    .form-layout-e .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        color: var(--neutral-600);
        font-size: 0.9em;
    }

    .form-layout-e button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .form-layout-e button:hover {
        background: var(--bg-primary-hover);
    }

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

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

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

.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    position: relative;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="index.html"] {
    font-weight: 600;
    color: var(--brand);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}

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

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

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

    .main-nav.is-open {
        transform: translateX(0);
    }

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

    .nav-link {
        display: block;
        width: 100%;
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }

    .middle-row {
        justify-content: center;
        text-align: center;
    }

    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.5rem;
    }

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

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

    .footer-nav a:hover {
        color: #0d6efd;
    }

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

    .footer-contacts li {
        color: #333;
        line-height: 1.6;
    }

    .footer-legal {
        width: 100%;
    }

    .legal-links {
        margin: 0.5rem 0;
    }

    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }

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

    .disclaimer {
        margin-top: 0.8rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
        color: #868e96;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.2rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1rem;
        }

        .footer-contacts ul {
            flex-direction: column;
            gap: 0.7rem;
        }

        .top-row, .bottom-row {
            border: none;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    position: relative;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="index.html"] {
    font-weight: 600;
    color: var(--brand);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}

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

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

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

    .main-nav.is-open {
        transform: translateX(0);
    }

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

    .nav-link {
        display: block;
        width: 100%;
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }

    .middle-row {
        justify-content: center;
        text-align: center;
    }

    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.5rem;
    }

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

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

    .footer-nav a:hover {
        color: #0d6efd;
    }

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

    .footer-contacts li {
        color: #333;
        line-height: 1.6;
    }

    .footer-legal {
        width: 100%;
    }

    .legal-links {
        margin: 0.5rem 0;
    }

    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }

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

    .disclaimer {
        margin-top: 0.8rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
        color: #868e96;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.2rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1rem;
        }

        .footer-contacts ul {
            flex-direction: column;
            gap: 0.7rem;
        }

        .top-row, .bottom-row {
            border: none;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv10__actions button[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);
    }

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

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

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

.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    position: relative;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="index.html"] {
    font-weight: 600;
    color: var(--brand);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}

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

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

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

    .main-nav.is-open {
        transform: translateX(0);
    }

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

    .nav-link {
        display: block;
        width: 100%;
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }

    .middle-row {
        justify-content: center;
        text-align: center;
    }

    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.5rem;
    }

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

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

    .footer-nav a:hover {
        color: #0d6efd;
    }

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

    .footer-contacts li {
        color: #333;
        line-height: 1.6;
    }

    .footer-legal {
        width: 100%;
    }

    .legal-links {
        margin: 0.5rem 0;
    }

    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }

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

    .disclaimer {
        margin-top: 0.8rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
        color: #868e96;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.2rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1rem;
        }

        .footer-contacts ul {
            flex-direction: column;
            gap: 0.7rem;
        }

        .top-row, .bottom-row {
            border: none;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    position: relative;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="index.html"] {
    font-weight: 600;
    color: var(--brand);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}

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

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

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

    .main-nav.is-open {
        transform: translateX(0);
    }

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

    .nav-link {
        display: block;
        width: 100%;
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }

    .middle-row {
        justify-content: center;
        text-align: center;
    }

    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.5rem;
    }

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

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

    .footer-nav a:hover {
        color: #0d6efd;
    }

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

    .footer-contacts li {
        color: #333;
        line-height: 1.6;
    }

    .footer-legal {
        width: 100%;
    }

    .legal-links {
        margin: 0.5rem 0;
    }

    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }

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

    .disclaimer {
        margin-top: 0.8rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
        color: #868e96;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.2rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1rem;
        }

        .footer-contacts ul {
            flex-direction: column;
            gap: 0.7rem;
        }

        .top-row, .bottom-row {
            border: none;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

.err-slab-b .frame {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(28px, 4vw, 46px);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-xl);
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
}

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

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

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