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

  --max-w: 1240px;
  --space-x: 1.24rem;
  --space-y: 1.5rem;
  --gap: 0.83rem;

  --radius-xl: 1.04rem;
  --radius-lg: 0.76rem;
  --radius-md: 0.46rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 1px 6px rgba(0,0,0,0.1);
  --shadow-md: 0 8px 10px rgba(0,0,0,0.13);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 250ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 1;

  --brand: #005792;
  --brand-contrast: #ffffff;
  --accent: #e63946;
  --accent-contrast: #ffffff;

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

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

  --bg-alt: #f8f9fa;
  --fg-on-alt: #343a40;

  --surface-1: #ffffff;
  --surface-2: #f8f9fa;
  --fg-on-surface: #212529;
  --border-on-surface: #dee2e6;

  --surface-light: #ffffff;
  --fg-on-surface-light: #343a40;
  --border-on-surface-light: #dee2e6;

  --bg-primary: #005792;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #004a7a;
  --ring: #005792;

  --bg-accent: #e63946;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #d62839;

  --link: #005792;
  --link-hover: #004a7a;

  --gradient-hero: linear-gradient(135deg, #005792 0%, #003f66 100%);
  --gradient-accent: linear-gradient(135deg, #e63946 0%, #d62839 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);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

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

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

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

    .main-nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

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

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

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

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .cta-button:hover {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

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

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

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

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

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

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

        .cta-button {
            display: none;
        }

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

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

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

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #333;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid #333;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f8f8f8;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #b0b0b0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-contact address {
        font-style: normal;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-item {
        display: block;
    }
    .footer-contact a {
        color: #4dabf7;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 65ch;
    }
    .disclaimer a {
        color: #4dabf7;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.9rem;
        color: #aaa;
    }
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .legal-links a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top, .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .legal-links {
            gap: 1rem;
        }
    }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.hero-arc-v6 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .hero-arc-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: calc(var(--gap) * 1.5);
    }

    .hero-arc-v6 .top {
        display: grid;
        grid-template-columns:1fr minmax(260px, .82fr);
        gap: var(--gap);
        align-items: stretch;
    }

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

    .hero-arc-v6 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.3vw, 3.5rem);
        line-height: 1.1;
    }

    .hero-arc-v6 .subtitle {
        margin: 0;
        max-width: 50ch;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v6 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
    }

    .hero-arc-v6 .actions a {
        padding: .64rem .95rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        transition: background var(--anim-duration) var(--anim-ease);
    }

    .hero-arc-v6 .actions a:hover {
        background: var(--bg-primary-hover);
    }

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

    .hero-arc-v6 .image {
        overflow: hidden;
        border-radius: var(--radius-xl);
    }

    .hero-arc-v6 img {
        width: 100%;
        height: 100%;
        min-height: 300px;
        object-fit: cover;
        display: block;
    }

    .hero-arc-v6 .bottom {
        display: grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v6 .bottom article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        box-shadow: var(--shadow-sm);
    }

    .hero-arc-v6 .bottom p {
        margin: .3rem 0 0;
        opacity: .92;
    }

    @media (max-width: 960px) {
        .hero-arc-v6 .top {
            grid-template-columns:1fr;
        }

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

.about-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

    .about-struct-v5 h2, .about-struct-v5 h3, .about-struct-v5 p {
        margin: 0
    }

    .about-struct-v5 .split, .about-struct-v5 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v5 .split img, .about-struct-v5 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v5 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v5 .split div {
        display: grid;
        gap: .5rem
    }

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

    .about-struct-v5 article, .about-struct-v5 .values div, .about-struct-v5 .facts div, .about-struct-v5 .quote, .about-struct-v5 .statement {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v5 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v5 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .about-struct-v5 .values, .about-struct-v5 .facts {
        display: grid;
        gap: .6rem
    }

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

    .about-struct-v5 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v5 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v5 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

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

    @media (max-width: 900px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr
        }
    }

.bloglist-fresh-v2 {
        padding: calc(var(--space-y) * 2.5) var(--space-x);
        background: var(--accent);
        color: var(--accent-contrast);
    }

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

    .bloglist-fresh-v2 .list {
        display: grid;
        gap: .8rem;
    }

    .bloglist-fresh-v2 article {
        display: grid;
        grid-template-columns:240px 1fr;
        gap: var(--gap);
        padding: .8rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
    }

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

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

    .bloglist-fresh-v2 h3 {
        margin: .3rem 0 .45rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .main-nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

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

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

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

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .cta-button:hover {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

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

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

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

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

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

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

        .cta-button {
            display: none;
        }

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

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

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

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #333;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid #333;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f8f8f8;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #b0b0b0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-contact address {
        font-style: normal;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-item {
        display: block;
    }
    .footer-contact a {
        color: #4dabf7;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 65ch;
    }
    .disclaimer a {
        color: #4dabf7;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.9rem;
        color: #aaa;
    }
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .legal-links a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top, .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .legal-links {
            gap: 1rem;
        }
    }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.bloglist-fresh-v2 {
        padding: calc(var(--space-y) * 2.5) var(--space-x);
        background: var(--accent);
        color: var(--accent-contrast);
    }

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

    .bloglist-fresh-v2 .list {
        display: grid;
        gap: .8rem;
    }

    .bloglist-fresh-v2 article {
        display: grid;
        grid-template-columns:240px 1fr;
        gap: var(--gap);
        padding: .8rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
    }

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

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

    .bloglist-fresh-v2 h3 {
        margin: .3rem 0 .45rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .main-nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

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

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

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

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .cta-button:hover {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

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

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

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

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

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

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

        .cta-button {
            display: none;
        }

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

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

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

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #333;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid #333;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f8f8f8;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #b0b0b0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-contact address {
        font-style: normal;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-item {
        display: block;
    }
    .footer-contact a {
        color: #4dabf7;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 65ch;
    }
    .disclaimer a {
        color: #4dabf7;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.9rem;
        color: #aaa;
    }
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .legal-links a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top, .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .legal-links {
            gap: 1rem;
        }
    }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

    .blogitem-fresh-v5 .meta {
        margin: 0;
        opacity: .78;
    }

    .blogitem-fresh-v5 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.2vw, 3rem);
    }

    .blogitem-fresh-v5 .lead {
        margin: 0;
        opacity: .88;
        max-width: 66ch;
    }

    .blogitem-fresh-v5 .frame {
        display: grid;
        grid-template-columns:.95fr 1.05fr;
        gap: var(--gap);
        align-items: start;
    }

    .blogitem-fresh-v5 img {
        width: 100%;
        aspect-ratio: 4/5;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

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

    .blogitem-fresh-v5 .content p {
        margin: 0;
        opacity: .92;
    }

    @media (max-width: 860px) {
        .blogitem-fresh-v5 .frame {
            grid-template-columns:1fr;
        }

        .blogitem-fresh-v5 img {
            aspect-ratio: 16/9;
        }
    }

.author {

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

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

    .author .author__wrapper {
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
    }

    .author .author__image {
        width: clamp(160px, 24vw, 240px);
        height: clamp(160px, 24vw, 240px);
        margin: 0 auto clamp(24px, 4vw, 32px);
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid var(--border-on-surface);
    }

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

    .author .author__name {
        font-size: clamp(28px, 5vw, 40px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

    .main-nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

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

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

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

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .cta-button:hover {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

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

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

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

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

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

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

        .cta-button {
            display: none;
        }

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

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

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

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #333;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid #333;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f8f8f8;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #b0b0b0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-contact address {
        font-style: normal;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-item {
        display: block;
    }
    .footer-contact a {
        color: #4dabf7;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 65ch;
    }
    .disclaimer a {
        color: #4dabf7;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.9rem;
        color: #aaa;
    }
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .legal-links a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top, .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .legal-links {
            gap: 1rem;
        }
    }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

.article-content-section__content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content-section__content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--fg-on-page);
}

.article-content-section__content p {
    max-width: 100%;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content ul,
.article-content-section__content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content-section__callout {
    margin-top: 2rem;
    padding: clamp(16px, 3vw, 24px);
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-on-surface);
}

.article-content-section__callout p {
    margin: 0;
    color: var(--fg-on-alt);
}

.article-content-section__actions {
    margin-top: 2rem;
    text-align: center;
}

.article-content-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.article-content-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

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

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

    .main-nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

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

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

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

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .cta-button:hover {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

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

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

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

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

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

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

        .cta-button {
            display: none;
        }

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

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

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

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #333;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid #333;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f8f8f8;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #b0b0b0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-contact address {
        font-style: normal;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-item {
        display: block;
    }
    .footer-contact a {
        color: #4dabf7;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 65ch;
    }
    .disclaimer a {
        color: #4dabf7;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.9rem;
        color: #aaa;
    }
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .legal-links a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top, .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .legal-links {
            gap: 1rem;
        }
    }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.support-lv4 {
        padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .support-lv4__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }

    .support-lv4__wrap article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .support-lv4__wrap h3 {
        margin: 0 0 7px;
        color: var(--brand);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .main-nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

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

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

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

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .cta-button:hover {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

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

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

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

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

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

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

        .cta-button {
            display: none;
        }

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

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

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

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #333;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid #333;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f8f8f8;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #b0b0b0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-contact address {
        font-style: normal;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-item {
        display: block;
    }
    .footer-contact a {
        color: #4dabf7;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 65ch;
    }
    .disclaimer a {
        color: #4dabf7;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.9rem;
        color: #aaa;
    }
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .legal-links a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top, .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .legal-links {
            gap: 1rem;
        }
    }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

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

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

    .form-fresh-v2 form {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: .75rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .form-fresh-v2 label {
        display: grid;
        gap: .3rem;
        font-size: .9rem;
    }

    .form-fresh-v2 input, .form-fresh-v2 select, .form-fresh-v2 textarea {
        padding: .66rem .75rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

    .form-fresh-v2 button {
        grid-column: 1/-1;
        padding: .72rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        font-weight: 700;
        cursor: pointer;
    }

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

.nfcontacts-v12 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

    .nfcontacts-v12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

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

    .nfcontacts-v12__columns {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: var(--gap);
    }

    .nfcontacts-v12 article {
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        padding: 12px;
    }

    .nfcontacts-v12 h3 {
        margin: 0 0 6px;
    }

    .nfcontacts-v12 p {
        margin: 0;
        font-weight: 700;
    }

    .nfcontacts-v12 small {
        display: block;
        margin-top: 4px;
        color: var(--fg-on-surface-light);
    }

    .nfcontacts-v12 a {
        display: inline-block;
        margin-top: 8px;
        color: var(--link);
        text-decoration: none;
        font-weight: 700;
    }

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

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

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

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

    .main-nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

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

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

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

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .cta-button:hover {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

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

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

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

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

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

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

        .cta-button {
            display: none;
        }

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

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

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

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #333;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid #333;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f8f8f8;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #b0b0b0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-contact address {
        font-style: normal;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-item {
        display: block;
    }
    .footer-contact a {
        color: #4dabf7;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 65ch;
    }
    .disclaimer a {
        color: #4dabf7;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.9rem;
        color: #aaa;
    }
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .legal-links a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top, .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .legal-links {
            gap: 1rem;
        }
    }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .main-nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

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

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

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

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .cta-button:hover {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

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

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

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

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

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

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

        .cta-button {
            display: none;
        }

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

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

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

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #333;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid #333;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f8f8f8;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #b0b0b0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-contact address {
        font-style: normal;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-item {
        display: block;
    }
    .footer-contact a {
        color: #4dabf7;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 65ch;
    }
    .disclaimer a {
        color: #4dabf7;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.9rem;
        color: #aaa;
    }
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .legal-links a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top, .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .legal-links {
            gap: 1rem;
        }
    }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .main-nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

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

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

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

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .cta-button:hover {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

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

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

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

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

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

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

        .cta-button {
            display: none;
        }

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

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

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

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #333;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid #333;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f8f8f8;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #b0b0b0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-contact address {
        font-style: normal;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-item {
        display: block;
    }
    .footer-contact a {
        color: #4dabf7;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 65ch;
    }
    .disclaimer a {
        color: #4dabf7;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.9rem;
        color: #aaa;
    }
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .legal-links a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top, .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .legal-links {
            gap: 1rem;
        }
    }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

    .nfthank-v9__panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, .24);
        border-radius: var(--radius-lg);
        padding: clamp(30px, 4vw, 44px);
        background: rgba(255, 255, 255, .06);
    }

    .nfthank-v9 h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 54px);
    }

    .nfthank-v9 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nfthank-v9 a {
        display: inline-block;
        margin-top: 17px;
        color: var(--accent-contrast);
        text-decoration: none;
        border-bottom: 2px solid var(--accent-contrast);
        padding-bottom: 2px;
    }

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

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

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

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

    .main-nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

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

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

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

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .cta-button:hover {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

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

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

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

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

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

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

        .cta-button {
            display: none;
        }

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

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

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

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #333;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid #333;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f8f8f8;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #b0b0b0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-contact address {
        font-style: normal;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-item {
        display: block;
    }
    .footer-contact a {
        color: #4dabf7;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 65ch;
    }
    .disclaimer a {
        color: #4dabf7;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.9rem;
        color: #aaa;
    }
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .legal-links a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top, .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .legal-links {
            gap: 1rem;
        }
    }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

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

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

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