:root {
  --font-family: "Fira Sans", sans-serif;
  --font-size-base: 13.9px;
  --line-height-base: 1.33;

  --max-w: 1020px;
  --space-x: 0.64rem;
  --space-y: 0.69rem;
  --gap: 0.52rem;

  --radius-xl: 0.8rem;
  --radius-lg: 0.55rem;
  --radius-md: 0.37rem;
  --radius-sm: 0.17rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 5px 14px rgba(0,0,0,0.11);
  --shadow-lg: 0 12px 22px rgba(0,0,0,0.13);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 160ms;
  --anim-ease: ease-in-out;
  --random-number: 2;

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

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

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

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

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

  --surface-light: #ffffff;
  --fg-on-surface-light: #495057;
  --border-on-surface-light: #e9ecef;

  --bg-primary: #0056b3;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #004494;
  --ring: rgba(0, 86, 179, 0.25);

  --bg-accent: #fff2ed;
  --fg-on-accent: #a8431e;
  --bg-accent-hover: #ff8a5c;

  --link: #0056b3;
  --link-hover: #004494;

  --gradient-hero: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
  --gradient-accent: linear-gradient(90deg, #ff6b35 0%, #ff8a5c 100%);

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    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;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color 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);
}
.nav-link:active {
    background-color: var(--neutral-300);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
}
.btn-cta:hover,
.btn-cta:focus {
    background-color: var(--bg-accent-hover);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: auto;
    }
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c2c2c;
        color: #e0e0e0;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 1px solid #444;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #444;
    }

    .footer-brand .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #d4af37;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .footer-brand .tagline {
        font-size: 0.9rem;
        color: #aaa;
        font-style: italic;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.75rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 1rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #d4af37;
        text-decoration: underline;
    }

    .footer-contact h3 {
        color: #f0f0f0;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .footer-contact p {
        margin: 0.5rem 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .footer-contact a {
        color: #ccc;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #d4af37;
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #444;
        color: #ccc;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .social-links a:hover {
        background-color: #d4af37;
        color: #2c2c2c;
    }

    .copyright {
        flex-grow: 1;
    }

    .disclaimer {
        flex-basis: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px dashed #555;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #888;
        font-style: italic;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .social-links {
            order: -1;
            justify-content: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.hero-arc-v1 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .hero-arc-v1 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:1.1fr .9fr;
        gap: calc(var(--gap) * 2);
        align-items: center;
    }

    .hero-arc-v1 .copy h1 {
        margin: .4rem 0;
        font-size: clamp(2rem, 5vw, 3.8rem);
        line-height: 1.1;
    }

    .hero-arc-v1 .subtitle {
        font-size: 1.05rem;
        opacity: .95;
        max-width: 48ch;
    }

    .hero-arc-v1 .desc {
        opacity: .84;
        max-width: 54ch;
    }

    .hero-arc-v1 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 1.1);
    }

    .hero-arc-v1 .actions a {
        padding: .7rem 1.1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 700;
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .hero-arc-v1 .actions a:hover {
        transform: translateY(-2px);
    }

    .hero-arc-v1 .media {
        order: var(--random-number);
        display: grid;
        gap: var(--gap);
    }

    .hero-arc-v1 img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
    }

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

    .hero-arc-v1 .stats div {
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
        padding: .8rem;
        border-radius: var(--radius-md);
        backdrop-filter: blur(2px);
    }

    .hero-arc-v1 strong {
        display: block;
        font-size: 1.2rem;
    }

    .hero-arc-v1 span {
        font-size: .88rem;
        opacity: .9;
    }

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

        .hero-arc-v1 .media {
            order: 2;
        }
    }

.next-grid-l8 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .next-grid-l8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-grid-l8__copy {
        margin-bottom: 1rem;
        text-align: center;
    }

    .next-grid-l8__copy p {
        margin: 0;
        color: var(--neutral-600);
    }

    .next-grid-l8__copy h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-grid-l8__copy span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
    }

    .next-grid-l8__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .next-grid-l8__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .next-grid-l8__grid div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--surface-2);
    }

    .next-grid-l8__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .next-grid-l8__grid a {
        color: var(--link);
        text-decoration: none;
    }

    .next-grid-l8__foot {
        margin-top: 1rem;
        text-align: center;
    }

    .next-grid-l8__foot a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .about-struct-v4 .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-v4 .split, .about-struct-v4 .duo, .about-struct-v4 .cards, .about-struct-v4 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    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;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color 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);
}
.nav-link:active {
    background-color: var(--neutral-300);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
}
.btn-cta:hover,
.btn-cta:focus {
    background-color: var(--bg-accent-hover);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: auto;
    }
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c2c2c;
        color: #e0e0e0;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 1px solid #444;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #444;
    }

    .footer-brand .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #d4af37;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .footer-brand .tagline {
        font-size: 0.9rem;
        color: #aaa;
        font-style: italic;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.75rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 1rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #d4af37;
        text-decoration: underline;
    }

    .footer-contact h3 {
        color: #f0f0f0;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .footer-contact p {
        margin: 0.5rem 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .footer-contact a {
        color: #ccc;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #d4af37;
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #444;
        color: #ccc;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .social-links a:hover {
        background-color: #d4af37;
        color: #2c2c2c;
    }

    .copyright {
        flex-grow: 1;
    }

    .disclaimer {
        flex-basis: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px dashed #555;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #888;
        font-style: italic;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .social-links {
            order: -1;
            justify-content: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.mission--light-v6 {

        padding: 56px 20px;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .mission__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
        gap: 24px;
        align-items: center;
    }

    .mission__headline h2 {
        margin: 0 0 6px;
        font-size: clamp(24px, 4vw, 30px);
    }

    .mission__headline p {
        margin: 0;
        color: var(--neutral-600);
        line-height: 1.7;
    }

    .mission__stats {
        display: grid;
        gap: 10px;
    }

    .mission__stat {
        border-radius: var(--radius-lg);
        padding: 10px 12px;
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
    }

    .mission__stat-label {
        display: block;
        font-size: 0.8rem;
        color: var(--neutral-600);
    }

    .mission__stat-value {
        display: block;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .mission__stat--accent .mission__stat-value {
        color: var(--accent);
    }

    .mission__stat--brand .mission__stat-value {
        color: var(--bg-primary);
    }

    .mission__stat--accent .mission__stat-value {
        color: var(--accent);
    }

    @media (max-width: 768px) {
        .mission__inner {
            grid-template-columns: minmax(0, 1fr);
        }
    }

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

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

    .team-fresh-v5 .cards {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: .8rem;
    }

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

    .team-fresh-v5 .photo img {
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
        border-radius: var(--radius-sm);
    }

    .team-fresh-v5 h3 {
        margin: 0 0 .2rem;
    }

    .team-fresh-v5 .role {
        margin: 0;
        color: var(--accent);
        font-weight: 700;
    }

    .team-fresh-v5 .bio {
        margin: .3rem 0 0;
        opacity: .88;
    }

    @media (max-width: 840px) {
        .team-fresh-v5 .cards {
            grid-template-columns:1fr;
        }
    }

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

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

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

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

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

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

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

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

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

.story-edge-c5 {
        padding: clamp(3.6rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .story-edge-c5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .story-edge-c5__image {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .story-edge-c5__content {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .story-edge-c5__image img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

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

    .story-edge-c5__content h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-edge-c5__content span {
        display: block;
        margin-top: .8rem;
    }

    .story-edge-c5__content p {

    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    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;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color 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);
}
.nav-link:active {
    background-color: var(--neutral-300);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
}
.btn-cta:hover,
.btn-cta:focus {
    background-color: var(--bg-accent-hover);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: auto;
    }
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c2c2c;
        color: #e0e0e0;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 1px solid #444;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #444;
    }

    .footer-brand .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #d4af37;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .footer-brand .tagline {
        font-size: 0.9rem;
        color: #aaa;
        font-style: italic;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.75rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 1rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #d4af37;
        text-decoration: underline;
    }

    .footer-contact h3 {
        color: #f0f0f0;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .footer-contact p {
        margin: 0.5rem 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .footer-contact a {
        color: #ccc;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #d4af37;
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #444;
        color: #ccc;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .social-links a:hover {
        background-color: #d4af37;
        color: #2c2c2c;
    }

    .copyright {
        flex-grow: 1;
    }

    .disclaimer {
        flex-basis: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px dashed #555;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #888;
        font-style: italic;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .social-links {
            order: -1;
            justify-content: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.capabilities {

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

    .capabilities .capabilities__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .capabilities .capabilities__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

    }

    .capabilities h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
    }

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

    .capabilities .capabilities__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .capabilities .capabilities__card {
        background: var(--surface-light);
        padding: clamp(28px, 4vw, 40px);
        border-radius: var(--radius-xl);
        position: relative;

        transform: translateY(40px);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .capabilities .capabilities__card:hover {
        transform: translateY(-8px);
    }

    .capabilities .capabilities__step {
        position: absolute;
        top: -16px;
        right: 24px;
        width: 48px;
        height: 48px;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .capabilities .capabilities__icon {
        font-size: 40px;
        margin-bottom: 1.5rem;
    }

    .capabilities .capabilities__card h3 {
        font-size: clamp(20px, 2.5vw, 24px);
        font-weight: 700;
        margin: 0 0 1rem;
        color: var(--fg-on-surface-light);
    }

    .capabilities .capabilities__card p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.social-l1 {

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

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

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

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

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

    .social-l1__grid {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .social-l1__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 420ms var(--anim-ease);
        min-height: 170px;
    }

    .social-l1__card:hover {
        transform: rotateY(180deg);
    }

    .social-l1__front,
    .social-l1__back {
        position: absolute;
        inset: 0;
        padding: 16px;
        backface-visibility: hidden;
        border-radius: inherit;
    }

    .social-l1__front::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(260px 130px at 20% 15%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(240px 140px at 85% 35%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
        border-radius: inherit;
    }

    .social-l1__chip {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        position: relative;
    }

    .social-l1__big {
        margin-top: 12px;
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
        letter-spacing: -.01em;
        position: relative;
    }

    .social-l1__small {
        margin-top: 8px;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
        position: relative;
    }

    .social-l1__back {
        transform: rotateY(180deg);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
    }

    .social-l1__backTitle {
        font-weight: 900;
        color: var(--bg-primary);
        letter-spacing: -.01em;
        margin-bottom: 8px;
    }

    .social-l1__backText {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (max-width: 980px) {
        .social-l1__card {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .social-l1__card {
            grid-column: span 12;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .about-struct-v4 .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-v4 .split, .about-struct-v4 .duo, .about-struct-v4 .cards, .about-struct-v4 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

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

.hiw-column-l5 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .hiw-column-l5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1.25rem;
    }

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

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

    .hiw-column-l5__copy {
        margin: .85rem 0 0;
        color: var(--neutral-600);
    }

    .hiw-column-l5__side {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .hiw-column-l5__side img {
        display: block;
        width: 100%;
        border-radius: var(--radius-lg);
    }

    .hiw-column-l5__side strong {
        display: block;
        margin-top: .9rem;
        color: var(--brand);
    }

    .hiw-column-l5__item {
        margin-top: .65rem;
        padding: .75rem .85rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
    }

    @media (max-width: 840px) {
        .hiw-column-l5__wrap {
            grid-template-columns: 1fr;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    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;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color 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);
}
.nav-link:active {
    background-color: var(--neutral-300);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
}
.btn-cta:hover,
.btn-cta:focus {
    background-color: var(--bg-accent-hover);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: auto;
    }
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c2c2c;
        color: #e0e0e0;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 1px solid #444;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #444;
    }

    .footer-brand .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #d4af37;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .footer-brand .tagline {
        font-size: 0.9rem;
        color: #aaa;
        font-style: italic;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.75rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 1rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #d4af37;
        text-decoration: underline;
    }

    .footer-contact h3 {
        color: #f0f0f0;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .footer-contact p {
        margin: 0.5rem 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .footer-contact a {
        color: #ccc;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #d4af37;
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #444;
        color: #ccc;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .social-links a:hover {
        background-color: #d4af37;
        color: #2c2c2c;
    }

    .copyright {
        flex-grow: 1;
    }

    .disclaimer {
        flex-basis: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px dashed #555;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #888;
        font-style: italic;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .social-links {
            order: -1;
            justify-content: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

    .contacts-fresh-v5 .head p {
        margin: .35rem 0 0;
        opacity: .85;
    }

    .contacts-fresh-v5 .stack {
        display: grid;
        gap: .7rem;
    }

    .contacts-fresh-v5 details {
        background: var(--chip-bg);
        border-radius: var(--radius-md);
        padding: .8rem 1rem;
    }

    .contacts-fresh-v5 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .contacts-fresh-v5 .inside {
        display: grid;
        gap: .4rem;
        padding-top: .6rem;
    }

    .contacts-fresh-v5 .inside p {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.clarifications-c2 {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    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;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color 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);
}
.nav-link:active {
    background-color: var(--neutral-300);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
}
.btn-cta:hover,
.btn-cta:focus {
    background-color: var(--bg-accent-hover);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: auto;
    }
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c2c2c;
        color: #e0e0e0;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 1px solid #444;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #444;
    }

    .footer-brand .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #d4af37;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .footer-brand .tagline {
        font-size: 0.9rem;
        color: #aaa;
        font-style: italic;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.75rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 1rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #d4af37;
        text-decoration: underline;
    }

    .footer-contact h3 {
        color: #f0f0f0;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .footer-contact p {
        margin: 0.5rem 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .footer-contact a {
        color: #ccc;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #d4af37;
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #444;
        color: #ccc;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .social-links a:hover {
        background-color: #d4af37;
        color: #2c2c2c;
    }

    .copyright {
        flex-grow: 1;
    }

    .disclaimer {
        flex-basis: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px dashed #555;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #888;
        font-style: italic;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .social-links {
            order: -1;
            justify-content: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

    .terms-layout-f .list {
        display: grid;
        gap: 14px;
    }

    .terms-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        padding: var(--space-y) var(--space-x);
    }

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    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;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color 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);
}
.nav-link:active {
    background-color: var(--neutral-300);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
}
.btn-cta:hover,
.btn-cta:focus {
    background-color: var(--bg-accent-hover);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: auto;
    }
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c2c2c;
        color: #e0e0e0;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 1px solid #444;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #444;
    }

    .footer-brand .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #d4af37;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .footer-brand .tagline {
        font-size: 0.9rem;
        color: #aaa;
        font-style: italic;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.75rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 1rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #d4af37;
        text-decoration: underline;
    }

    .footer-contact h3 {
        color: #f0f0f0;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .footer-contact p {
        margin: 0.5rem 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .footer-contact a {
        color: #ccc;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #d4af37;
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #444;
        color: #ccc;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .social-links a:hover {
        background-color: #d4af37;
        color: #2c2c2c;
    }

    .copyright {
        flex-grow: 1;
    }

    .disclaimer {
        flex-basis: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px dashed #555;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #888;
        font-style: italic;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .social-links {
            order: -1;
            justify-content: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.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);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    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;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color 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);
}
.nav-link:active {
    background-color: var(--neutral-300);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
}
.btn-cta:hover,
.btn-cta:focus {
    background-color: var(--bg-accent-hover);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: auto;
    }
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c2c2c;
        color: #e0e0e0;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 1px solid #444;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #444;
    }

    .footer-brand .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #d4af37;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .footer-brand .tagline {
        font-size: 0.9rem;
        color: #aaa;
        font-style: italic;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.75rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 1rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #d4af37;
        text-decoration: underline;
    }

    .footer-contact h3 {
        color: #f0f0f0;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .footer-contact p {
        margin: 0.5rem 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .footer-contact a {
        color: #ccc;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #d4af37;
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #444;
        color: #ccc;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .social-links a:hover {
        background-color: #d4af37;
        color: #2c2c2c;
    }

    .copyright {
        flex-grow: 1;
    }

    .disclaimer {
        flex-basis: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px dashed #555;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #888;
        font-style: italic;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .social-links {
            order: -1;
            justify-content: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

    .thank-mode-a .box {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

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

    .thank-mode-a p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .thank-mode-a a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    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;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color 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);
}
.nav-link:active {
    background-color: var(--neutral-300);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
}
.btn-cta:hover,
.btn-cta:focus {
    background-color: var(--bg-accent-hover);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: auto;
    }
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c2c2c;
        color: #e0e0e0;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 1px solid #444;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #444;
    }

    .footer-brand .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #d4af37;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .footer-brand .tagline {
        font-size: 0.9rem;
        color: #aaa;
        font-style: italic;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.75rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 1rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #d4af37;
        text-decoration: underline;
    }

    .footer-contact h3 {
        color: #f0f0f0;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .footer-contact p {
        margin: 0.5rem 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .footer-contact a {
        color: #ccc;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #d4af37;
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #444;
        color: #ccc;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .social-links a:hover {
        background-color: #d4af37;
        color: #2c2c2c;
    }

    .copyright {
        flex-grow: 1;
    }

    .disclaimer {
        flex-basis: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px dashed #555;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #888;
        font-style: italic;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .social-links {
            order: -1;
            justify-content: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.err-slab-a {
    padding: clamp(56px, 10vw, 110px) 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

.err-slab-a .box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.err-slab-a h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 58px);
}

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
}

.err-slab-a a {
    display: inline-block;
    margin-top: 18px;
    padding: 11px 18px;
    border-radius: var(--radius-md);
    background: var(--surface-1);
    color: var(--fg-on-page);
    text-decoration: none;
}