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

  --max-w: 1380px;
  --space-x: 1.58rem;
  --space-y: 1.5rem;
  --gap: 2.3rem;

  --radius-xl: 1.16rem;
  --radius-lg: 0.84rem;
  --radius-md: 0.5rem;
  --radius-sm: 0.3rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.16);
  --shadow-md: 0 6px 18px rgba(0,0,0,0.21);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.25);

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

  --brand: #0056B3;
  --brand-contrast: #FFFFFF;
  --accent: #00A8E8;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D9E6;
  --neutral-600: #6B7B9C;
  --neutral-800: #2C3A5E;
  --neutral-900: #0F1A3A;

  --bg-page: #FFFFFF;
  --fg-on-page: #0F1A3A;

  --bg-alt: #F8FAFD;
  --fg-on-alt: #2C3A5E;

  --surface-1: #FFFFFF;
  --surface-2: #F5F7FA;
  --fg-on-surface: #0F1A3A;
  --border-on-surface: #D1D9E6;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #2C3A5E;
  --border-on-surface-light: #E6ECF5;

  --bg-primary: #0056B3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004494;
  --ring: #0056B3;

  --bg-accent: #E6F7FF;
  --fg-on-accent: #003A75;
  --bg-accent-hover: #0094CC;

  --link: #0056B3;
  --link-hover: #003A75;

  --gradient-hero: linear-gradient(135deg, #0056B3 0%, #003A75 100%);
  --gradient-accent: linear-gradient(135deg, #00A8E8 0%, #0056B3 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);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 1000;
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
    }

    .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: 1.75rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.75rem;
        flex-direction: column;
        justify-content: space-between;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

    .burger-line {
        display: block;
        height: 2px;
        width: 100%;
        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) {
        .burger-btn {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--overlay);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

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

        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }

        .nav-link {
            font-size: 1.25rem;
            padding: var(--space-y) var(--space-x);
        }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #555;
        margin: 0;
        max-width: 90%;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #6c757d;
        text-decoration: none;
        transition: color 0.2s;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1rem 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .contact-block p {
        margin: 0 0 0.5rem 0;
        line-height: 1.5;
    }
    .contact-address, .contact-phone, .contact-email {
        color: #555;
    }
    .contact-phone a, .contact-email a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-phone a:hover, .contact-email a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #666;
        line-height: 1.4;
        margin: 1rem 0 0 0;
        padding-top: 1rem;
        border-top: 1px solid #eaeaea;
    }
    .copyright {
        font-size: 0.8rem;
        color: #777;
        margin: 1rem 0 0 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

.cookie-cv15 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.hero-arc-v4 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .hero-arc-v4 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:repeat(12, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v4 .headline {
        grid-column: 1/8;
        padding: calc(var(--space-y) * 1.2);
        border-radius: var(--radius-xl);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .hero-arc-v4 h1 {
        margin: .2rem 0 .7rem;
        font-size: clamp(2rem, 4.6vw, 3.6rem);
        line-height: 1.08;
    }

    .hero-arc-v4 .headline p {
        margin: 0;
        max-width: 52ch;
        opacity: .92;
    }

    .hero-arc-v4 .actionbox {
        grid-column: 8/13;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        padding: calc(var(--space-y) * 1.2);
        border-radius: var(--radius-xl);
        display: grid;
        align-content: center;
        gap: var(--gap);
    }

    .hero-arc-v4 .actions {
        display: grid;
        gap: .65rem;
    }

    .hero-arc-v4 .actions a {
        display: inline-flex;
        justify-content: center;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 700;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .hero-arc-v4 .actions a:nth-child(even) {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border: 1px solid var(--border-on-surface);
    }

    .hero-arc-v4 .media {
        grid-column: 1/6;
        overflow: hidden;
        border-radius: var(--radius-xl);
        min-height: 260px;
    }

    .hero-arc-v4 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero-arc-v4 .stats {
        grid-column: 6/13;
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v4 .stats div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .hero-arc-v4 .stats span {
        display: block;
        color: var(--fg-on-surface-light);
        font-size: .88rem;
    }

    .hero-arc-v4 .stats strong {
        font-size: 1.1rem;
    }

    @media (max-width: 960px) {
        .hero-arc-v4 .headline, .hero-arc-v4 .actionbox, .hero-arc-v4 .media, .hero-arc-v4 .stats {
            grid-column: 1/-1;
        }

        .hero-arc-v4 .stats {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .touch-panorama .main {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 10px;
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
    }

.social-l2 {

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

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

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

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

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

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

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

    .social-l2__quote {
        display: none;
    }

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

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

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

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

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

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

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

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

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

    .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: 1.75rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.75rem;
        flex-direction: column;
        justify-content: space-between;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

    .burger-line {
        display: block;
        height: 2px;
        width: 100%;
        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) {
        .burger-btn {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--overlay);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

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

        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }

        .nav-link {
            font-size: 1.25rem;
            padding: var(--space-y) var(--space-x);
        }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #555;
        margin: 0;
        max-width: 90%;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #6c757d;
        text-decoration: none;
        transition: color 0.2s;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1rem 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .contact-block p {
        margin: 0 0 0.5rem 0;
        line-height: 1.5;
    }
    .contact-address, .contact-phone, .contact-email {
        color: #555;
    }
    .contact-phone a, .contact-email a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-phone a:hover, .contact-email a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #666;
        line-height: 1.4;
        margin: 1rem 0 0 0;
        padding-top: 1rem;
        border-top: 1px solid #eaeaea;
    }
    .copyright {
        font-size: 0.8rem;
        color: #777;
        margin: 1rem 0 0 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

.cookie-cv15 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

    .bloglist-fresh-v5 .rows {
        display: grid;
        gap: .75rem;
    }

    .bloglist-fresh-v5 article {
        display: grid;
        grid-template-columns:160px 1fr;
        gap: var(--gap);
        padding: .8rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .bloglist-fresh-v5 img {
        width: 100%;
        height: 100%;
        min-height: 100px;
        object-fit: cover;
        border-radius: var(--radius-sm);
    }

    .bloglist-fresh-v5 h3 {
        margin: 0 0 .35rem;
    }

    .bloglist-fresh-v5 h3 a {
        text-decoration: none;
        color: var(--neutral-0);
    }

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

    .bloglist-fresh-v5 .more {
        margin-top: .55rem;
        display: inline-block;
        color: var(--accent);
        font-weight: 700;
        text-decoration: none;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .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: 1.75rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.75rem;
        flex-direction: column;
        justify-content: space-between;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

    .burger-line {
        display: block;
        height: 2px;
        width: 100%;
        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) {
        .burger-btn {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--overlay);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

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

        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }

        .nav-link {
            font-size: 1.25rem;
            padding: var(--space-y) var(--space-x);
        }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #555;
        margin: 0;
        max-width: 90%;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #6c757d;
        text-decoration: none;
        transition: color 0.2s;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1rem 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .contact-block p {
        margin: 0 0 0.5rem 0;
        line-height: 1.5;
    }
    .contact-address, .contact-phone, .contact-email {
        color: #555;
    }
    .contact-phone a, .contact-email a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-phone a:hover, .contact-email a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #666;
        line-height: 1.4;
        margin: 1rem 0 0 0;
        padding-top: 1rem;
        border-top: 1px solid #eaeaea;
    }
    .copyright {
        font-size: 0.8rem;
        color: #777;
        margin: 1rem 0 0 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

.cookie-cv15 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.blogitem-fresh-v2 {
        padding: calc(var(--space-y) * 2.5) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

    .blogitem-fresh-v2 .hero {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap);
    }

    .blogitem-fresh-v2 img {
        width: 100%;
        height: 100%;
        min-height: 260px;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .blogitem-fresh-v2 .title {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        display: grid;
        align-content: center;
        gap: .5rem;
    }

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

    .blogitem-fresh-v2 h1 {
        margin: 0;
        font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    }

    .blogitem-fresh-v2 .title p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .blogitem-fresh-v2 .body {
        max-width: 70ch;
        display: grid;
        gap: .8rem;
    }

    .blogitem-fresh-v2 .body p {
        margin: 0;
    }

    @media (max-width: 840px) {
        .blogitem-fresh-v2 .hero {
            grid-template-columns:1fr;
        }
    }

.author--colored-v5 {
    padding: 40px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.author__inner {
    max-width: 520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 16px;
    align-items: center;
}

.author__avatar {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid var(--bg-accent);
}

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

.author__name {
    margin: 0;
    font-size: 1.05rem;
}

.author__role {
    margin: 2px 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.author__bio {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-200);
}
.author__bio a {
    color: var(--accent);
    text-decoration: underline;
}
.author__bio a:hover {
    color: var(--accent-hover);
}

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

    .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: 1.75rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.75rem;
        flex-direction: column;
        justify-content: space-between;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

    .burger-line {
        display: block;
        height: 2px;
        width: 100%;
        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) {
        .burger-btn {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--overlay);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

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

        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }

        .nav-link {
            font-size: 1.25rem;
            padding: var(--space-y) var(--space-x);
        }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #555;
        margin: 0;
        max-width: 90%;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #6c757d;
        text-decoration: none;
        transition: color 0.2s;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1rem 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .contact-block p {
        margin: 0 0 0.5rem 0;
        line-height: 1.5;
    }
    .contact-address, .contact-phone, .contact-email {
        color: #555;
    }
    .contact-phone a, .contact-email a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-phone a:hover, .contact-email a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #666;
        line-height: 1.4;
        margin: 1rem 0 0 0;
        padding-top: 1rem;
        border-top: 1px solid #eaeaea;
    }
    .copyright {
        font-size: 0.8rem;
        color: #777;
        margin: 1rem 0 0 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

.cookie-cv15 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

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

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

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

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

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

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

    .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: 1.75rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.75rem;
        flex-direction: column;
        justify-content: space-between;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

    .burger-line {
        display: block;
        height: 2px;
        width: 100%;
        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) {
        .burger-btn {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--overlay);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

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

        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }

        .nav-link {
            font-size: 1.25rem;
            padding: var(--space-y) var(--space-x);
        }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #555;
        margin: 0;
        max-width: 90%;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #6c757d;
        text-decoration: none;
        transition: color 0.2s;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1rem 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .contact-block p {
        margin: 0 0 0.5rem 0;
        line-height: 1.5;
    }
    .contact-address, .contact-phone, .contact-email {
        color: #555;
    }
    .contact-phone a, .contact-email a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-phone a:hover, .contact-email a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #666;
        line-height: 1.4;
        margin: 1rem 0 0 0;
        padding-top: 1rem;
        border-top: 1px solid #eaeaea;
    }
    .copyright {
        font-size: 0.8rem;
        color: #777;
        margin: 1rem 0 0 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

.cookie-cv15 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

    .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: 1.75rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.75rem;
        flex-direction: column;
        justify-content: space-between;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

    .burger-line {
        display: block;
        height: 2px;
        width: 100%;
        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) {
        .burger-btn {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--overlay);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

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

        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }

        .nav-link {
            font-size: 1.25rem;
            padding: var(--space-y) var(--space-x);
        }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #555;
        margin: 0;
        max-width: 90%;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #6c757d;
        text-decoration: none;
        transition: color 0.2s;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1rem 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .contact-block p {
        margin: 0 0 0.5rem 0;
        line-height: 1.5;
    }
    .contact-address, .contact-phone, .contact-email {
        color: #555;
    }
    .contact-phone a, .contact-email a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-phone a:hover, .contact-email a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #666;
        line-height: 1.4;
        margin: 1rem 0 0 0;
        padding-top: 1rem;
        border-top: 1px solid #eaeaea;
    }
    .copyright {
        font-size: 0.8rem;
        color: #777;
        margin: 1rem 0 0 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

.cookie-cv15 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .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: 1.75rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.75rem;
        flex-direction: column;
        justify-content: space-between;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

    .burger-line {
        display: block;
        height: 2px;
        width: 100%;
        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) {
        .burger-btn {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--overlay);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

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

        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }

        .nav-link {
            font-size: 1.25rem;
            padding: var(--space-y) var(--space-x);
        }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #555;
        margin: 0;
        max-width: 90%;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #6c757d;
        text-decoration: none;
        transition: color 0.2s;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1rem 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .contact-block p {
        margin: 0 0 0.5rem 0;
        line-height: 1.5;
    }
    .contact-address, .contact-phone, .contact-email {
        color: #555;
    }
    .contact-phone a, .contact-email a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-phone a:hover, .contact-email a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #666;
        line-height: 1.4;
        margin: 1rem 0 0 0;
        padding-top: 1rem;
        border-top: 1px solid #eaeaea;
    }
    .copyright {
        font-size: 0.8rem;
        color: #777;
        margin: 1rem 0 0 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

.cookie-cv15 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

    .form-fresh-v1 .shell {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: calc(var(--gap) * 1.4);
    }

    .form-fresh-v1 .intro h2 {
        margin: .3rem 0;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    }

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

    .form-fresh-v1 .form {
        display: grid;
        gap: .75rem;
        padding: 1.1rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

    .form-fresh-v1 label {
        display: grid;
        gap: .3rem;
    }

    .form-fresh-v1 span {
        font-size: .85rem;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v1 input {
        padding: .68rem .8rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

    .form-fresh-v1 button {
        padding: .75rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .social-follow {
        text-align: center;
    }

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

    .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: 1.75rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.75rem;
        flex-direction: column;
        justify-content: space-between;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

    .burger-line {
        display: block;
        height: 2px;
        width: 100%;
        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) {
        .burger-btn {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--overlay);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

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

        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }

        .nav-link {
            font-size: 1.25rem;
            padding: var(--space-y) var(--space-x);
        }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #555;
        margin: 0;
        max-width: 90%;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #6c757d;
        text-decoration: none;
        transition: color 0.2s;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1rem 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .contact-block p {
        margin: 0 0 0.5rem 0;
        line-height: 1.5;
    }
    .contact-address, .contact-phone, .contact-email {
        color: #555;
    }
    .contact-phone a, .contact-email a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-phone a:hover, .contact-email a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #666;
        line-height: 1.4;
        margin: 1rem 0 0 0;
        padding-top: 1rem;
        border-top: 1px solid #eaeaea;
    }
    .copyright {
        font-size: 0.8rem;
        color: #777;
        margin: 1rem 0 0 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

.cookie-cv15 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

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

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

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

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

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

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

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

    .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: 1.75rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.75rem;
        flex-direction: column;
        justify-content: space-between;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

    .burger-line {
        display: block;
        height: 2px;
        width: 100%;
        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) {
        .burger-btn {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--overlay);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

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

        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }

        .nav-link {
            font-size: 1.25rem;
            padding: var(--space-y) var(--space-x);
        }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #555;
        margin: 0;
        max-width: 90%;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #6c757d;
        text-decoration: none;
        transition: color 0.2s;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1rem 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .contact-block p {
        margin: 0 0 0.5rem 0;
        line-height: 1.5;
    }
    .contact-address, .contact-phone, .contact-email {
        color: #555;
    }
    .contact-phone a, .contact-email a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-phone a:hover, .contact-email a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #666;
        line-height: 1.4;
        margin: 1rem 0 0 0;
        padding-top: 1rem;
        border-top: 1px solid #eaeaea;
    }
    .copyright {
        font-size: 0.8rem;
        color: #777;
        margin: 1rem 0 0 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

.cookie-cv15 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

    .terms-layout-d .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .terms-layout-d .section-head {
        margin-bottom: 16px;
    }

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

    .terms-layout-d .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-100);
    }

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

    .terms-layout-d h3, .terms-layout-d h4 {
        margin: 0 0 8px;
    }

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

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

    .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: 1.75rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.75rem;
        flex-direction: column;
        justify-content: space-between;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

    .burger-line {
        display: block;
        height: 2px;
        width: 100%;
        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) {
        .burger-btn {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--overlay);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

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

        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }

        .nav-link {
            font-size: 1.25rem;
            padding: var(--space-y) var(--space-x);
        }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #555;
        margin: 0;
        max-width: 90%;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #6c757d;
        text-decoration: none;
        transition: color 0.2s;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1rem 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .contact-block p {
        margin: 0 0 0.5rem 0;
        line-height: 1.5;
    }
    .contact-address, .contact-phone, .contact-email {
        color: #555;
    }
    .contact-phone a, .contact-email a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-phone a:hover, .contact-email a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #666;
        line-height: 1.4;
        margin: 1rem 0 0 0;
        padding-top: 1rem;
        border-top: 1px solid #eaeaea;
    }
    .copyright {
        font-size: 0.8rem;
        color: #777;
        margin: 1rem 0 0 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

.cookie-cv15 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

    .thank-mode-f .shell {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        border: 1px solid var(--border-on-surface-light);
    }

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

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

    .thank-mode-f a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--gradient-hero);
        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);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 1000;
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
    }

    .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: 1.75rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.75rem;
        flex-direction: column;
        justify-content: space-between;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

    .burger-line {
        display: block;
        height: 2px;
        width: 100%;
        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) {
        .burger-btn {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--overlay);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            z-index: 999;
        }

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

        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }

        .nav-link {
            font-size: 1.25rem;
            padding: var(--space-y) var(--space-x);
        }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #555;
        margin: 0;
        max-width: 90%;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #6c757d;
        text-decoration: none;
        transition: color 0.2s;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1rem 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .contact-block p {
        margin: 0 0 0.5rem 0;
        line-height: 1.5;
    }
    .contact-address, .contact-phone, .contact-email {
        color: #555;
    }
    .contact-phone a, .contact-email a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-phone a:hover, .contact-email a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #666;
        line-height: 1.4;
        margin: 1rem 0 0 0;
        padding-top: 1rem;
        border-top: 1px solid #eaeaea;
    }
    .copyright {
        font-size: 0.8rem;
        color: #777;
        margin: 1rem 0 0 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

.cookie-cv15 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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