:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 15.7px;
  --line-height-base: 1.42;

  --max-w: 1320px;
  --space-x: 1.05rem;
  --space-y: 1.47rem;
  --gap: 2.07rem;

  --radius-xl: 1.35rem;
  --radius-lg: 0.97rem;
  --radius-md: 0.68rem;
  --radius-sm: 0.3rem;

  --shadow-sm: 0 1px 8px rgba(0,0,0,0.16);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.21);
  --shadow-lg: 0 26px 52px rgba(0,0,0,0.25);

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

  --brand: #0056A3;
  --brand-contrast: #FFFFFF;
  --accent: #F59E0B;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #CBD5E1;
  --neutral-600: #64748B;
  --neutral-800: #1E293B;
  --neutral-900: #0F172A;

  --bg-page: #F8FAFC;
  --fg-on-page: #1E293B;

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

  --surface-1: #FFFFFF;
  --surface-2: #F8FAFC;
  --fg-on-surface: #1E293B;
  --border-on-surface: #E2E8F0;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #334155;
  --border-on-surface-light: #E2E8F0;

  --bg-primary: #0056A3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004080;
  --ring: #3B82F6;

  --bg-accent: #FEF3C7;
  --fg-on-accent: #78350F;
  --bg-accent-hover: #D97706;

  --link: #0056A3;
  --link-hover: #003366;

  --gradient-hero: linear-gradient(135deg, #0056A3 0%, #003366 100%);
  --gradient-accent: linear-gradient(90deg, #F59E0B 0%, #D97706 100%);

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
}
.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}

.search-toggle,
.menu-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--accent);
    outline: none;
    color: var(--accent);
}
.search-icon {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 70%;
    margin: 0 auto;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.search-slot {
    flex-basis: 100%;
    order: 3;
    margin-top: var(--space-y);
}
.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex-grow: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus {
    background-color: var(--bg-accent-hover);
    outline: none;
}

@media (max-width: 767px) {
    .header-container {
        flex-wrap: nowrap;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        justify-content: flex-start;
        padding-top: 5rem;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: 0;
        border-bottom: 1px solid var(--border-on-surface);
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    .search-slot {
        margin-top: var(--space-y);
    }
}

.site-footer {
        background-color: #f5f5f5;
        color: #333;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 1px solid #ddd;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }
    .footer-left .logo {
        margin: 0 0 1.5rem 0;
        font-size: 1.8rem;
        font-weight: 700;
        color: #222;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .nav-menu {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0066cc;
    }
    .legal-links {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .separator {
        margin: 0 0.5rem;
        color: #aaa;
    }
    .disclaimer p {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        margin: 0;
        padding-top: 1rem;
        border-top: 1px solid #ddd;
    }
    .current-year {
        font-weight: 600;
    }

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

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

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

.intro-slab-l2 {
        padding: clamp(3.6rem, 8vw, 6.8rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .intro-slab-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        gap: 1rem;
    }

    .intro-slab-l2__main {
        padding: 1.2rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
    }

    .intro-slab-l2__main p {
        margin: 0;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .intro-slab-l2__main h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.3rem, 5vw, 4rem);
        line-height: 1.03;
    }

    .intro-slab-l2__main strong {
        display: block;
        margin-top: .8rem;
        color: var(--brand);
    }

    .intro-slab-l2__fact {
        margin-top: 1rem;
        padding: .85rem .95rem;
        border-left: 3px solid var(--bg-primary);
        background: var(--surface-1);
    }

    .intro-slab-l2__side {
        padding: 1.2rem;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        display: grid;
        align-content: center;
    }

    .intro-slab-l2__side span {
        color: var(--brand);
        font-weight: 700;
    }

    .intro-slab-l2__side p {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .intro-slab-l2__actions {
        margin-top: 1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-slab-l2__actions a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
        background: var(--surface-1);
    }

    .intro-slab-l2__actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

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

.gallery--colored-v5 {

    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.gallery__header {
    text-align: center;
    margin-bottom: 24px;
}

.gallery__header h2 {
    margin: 0 0 6px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.gallery__header p {
    margin: 0;
    color: var(--neutral-300);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
}

.gallery__item--featured {
    border-color: var(--accent);
}

.gallery__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    font-size: 0.85rem;
}

.values-grid-l2 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

    .values-grid-l2__head {
        margin-bottom: 1.1rem;
    }

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

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

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

    .values-grid-l2__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-grid-l2__grid i {
        font-style: normal;
    }

    .values-grid-l2__grid h3 {
        margin: .75rem 0 .35rem;
    }

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

    .values-grid-l2__grid span {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

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

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

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

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

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

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

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
}
.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}

.search-toggle,
.menu-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--accent);
    outline: none;
    color: var(--accent);
}
.search-icon {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 70%;
    margin: 0 auto;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.search-slot {
    flex-basis: 100%;
    order: 3;
    margin-top: var(--space-y);
}
.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex-grow: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus {
    background-color: var(--bg-accent-hover);
    outline: none;
}

@media (max-width: 767px) {
    .header-container {
        flex-wrap: nowrap;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        justify-content: flex-start;
        padding-top: 5rem;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: 0;
        border-bottom: 1px solid var(--border-on-surface);
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    .search-slot {
        margin-top: var(--space-y);
    }
}

.site-footer {
        background-color: #f5f5f5;
        color: #333;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 1px solid #ddd;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }
    .footer-left .logo {
        margin: 0 0 1.5rem 0;
        font-size: 1.8rem;
        font-weight: 700;
        color: #222;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .nav-menu {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0066cc;
    }
    .legal-links {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .separator {
        margin: 0 0.5rem;
        color: #aaa;
    }
    .disclaimer p {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        margin: 0;
        padding-top: 1rem;
        border-top: 1px solid #ddd;
    }
    .current-year {
        font-weight: 600;
    }

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

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

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

.project-list--light-v6 {
    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

.project-list__inner {
    max-width: 720px;
    margin: 0 auto;
}

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

.project-list__list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.project-list__row {
    display: grid;
    grid-template-columns: minmax(0,1.6fr) auto;
    gap: 12px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.project-list__row:first-child {
    border-top: none;
}

.project-list__row-title {
    font-size: 0.9rem;
    color: var(--neutral-800);
}

.project-list__row-meta {
    font-size: 0.9rem;
    color: var(--neutral-600);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.partners--light-v6 {
    padding: 40px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

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

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

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

.partners__chip {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
    font-size: 0.85rem;
    color: var(--neutral-800);
}

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
}
.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}

.search-toggle,
.menu-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--accent);
    outline: none;
    color: var(--accent);
}
.search-icon {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 70%;
    margin: 0 auto;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.search-slot {
    flex-basis: 100%;
    order: 3;
    margin-top: var(--space-y);
}
.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex-grow: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus {
    background-color: var(--bg-accent-hover);
    outline: none;
}

@media (max-width: 767px) {
    .header-container {
        flex-wrap: nowrap;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        justify-content: flex-start;
        padding-top: 5rem;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: 0;
        border-bottom: 1px solid var(--border-on-surface);
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    .search-slot {
        margin-top: var(--space-y);
    }
}

.site-footer {
        background-color: #f5f5f5;
        color: #333;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 1px solid #ddd;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }
    .footer-left .logo {
        margin: 0 0 1.5rem 0;
        font-size: 1.8rem;
        font-weight: 700;
        color: #222;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .nav-menu {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0066cc;
    }
    .legal-links {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .separator {
        margin: 0 0.5rem;
        color: #aaa;
    }
    .disclaimer p {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        margin: 0;
        padding-top: 1rem;
        border-top: 1px solid #ddd;
    }
    .current-year {
        font-weight: 600;
    }

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

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

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

.project-item {

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

    .project-item .project-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);

    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    @media (min-width: 768px) {
        .project-item .project-item__gallery {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
        .project-item .project-item__gallery > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;

    }

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

        transform: translateY(28px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
}
.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}

.search-toggle,
.menu-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--accent);
    outline: none;
    color: var(--accent);
}
.search-icon {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 70%;
    margin: 0 auto;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.search-slot {
    flex-basis: 100%;
    order: 3;
    margin-top: var(--space-y);
}
.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex-grow: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus {
    background-color: var(--bg-accent-hover);
    outline: none;
}

@media (max-width: 767px) {
    .header-container {
        flex-wrap: nowrap;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        justify-content: flex-start;
        padding-top: 5rem;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: 0;
        border-bottom: 1px solid var(--border-on-surface);
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    .search-slot {
        margin-top: var(--space-y);
    }
}

.site-footer {
        background-color: #f5f5f5;
        color: #333;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 1px solid #ddd;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }
    .footer-left .logo {
        margin: 0 0 1.5rem 0;
        font-size: 1.8rem;
        font-weight: 700;
        color: #222;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .nav-menu {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0066cc;
    }
    .legal-links {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .separator {
        margin: 0 0.5rem;
        color: #aaa;
    }
    .disclaimer p {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        margin: 0;
        padding-top: 1rem;
        border-top: 1px solid #ddd;
    }
    .current-year {
        font-weight: 600;
    }

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

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

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

.project-item {

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

    .project-item .project-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);

    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    @media (min-width: 768px) {
        .project-item .project-item__gallery {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
        .project-item .project-item__gallery > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;

    }

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

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

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

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

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

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

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
}
.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}

.search-toggle,
.menu-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--accent);
    outline: none;
    color: var(--accent);
}
.search-icon {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 70%;
    margin: 0 auto;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.search-slot {
    flex-basis: 100%;
    order: 3;
    margin-top: var(--space-y);
}
.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex-grow: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus {
    background-color: var(--bg-accent-hover);
    outline: none;
}

@media (max-width: 767px) {
    .header-container {
        flex-wrap: nowrap;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        justify-content: flex-start;
        padding-top: 5rem;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: 0;
        border-bottom: 1px solid var(--border-on-surface);
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    .search-slot {
        margin-top: var(--space-y);
    }
}

.site-footer {
        background-color: #f5f5f5;
        color: #333;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 1px solid #ddd;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }
    .footer-left .logo {
        margin: 0 0 1.5rem 0;
        font-size: 1.8rem;
        font-weight: 700;
        color: #222;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .nav-menu {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0066cc;
    }
    .legal-links {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .separator {
        margin: 0 0.5rem;
        color: #aaa;
    }
    .disclaimer p {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        margin: 0;
        padding-top: 1rem;
        border-top: 1px solid #ddd;
    }
    .current-year {
        font-weight: 600;
    }

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

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

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

.project-item {

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

    .project-item .project-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);

    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    @media (min-width: 768px) {
        .project-item .project-item__gallery {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
        .project-item .project-item__gallery > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;

    }

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
}
.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}

.search-toggle,
.menu-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--accent);
    outline: none;
    color: var(--accent);
}
.search-icon {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 70%;
    margin: 0 auto;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.search-slot {
    flex-basis: 100%;
    order: 3;
    margin-top: var(--space-y);
}
.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex-grow: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus {
    background-color: var(--bg-accent-hover);
    outline: none;
}

@media (max-width: 767px) {
    .header-container {
        flex-wrap: nowrap;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        justify-content: flex-start;
        padding-top: 5rem;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: 0;
        border-bottom: 1px solid var(--border-on-surface);
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    .search-slot {
        margin-top: var(--space-y);
    }
}

.site-footer {
        background-color: #f5f5f5;
        color: #333;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 1px solid #ddd;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }
    .footer-left .logo {
        margin: 0 0 1.5rem 0;
        font-size: 1.8rem;
        font-weight: 700;
        color: #222;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .nav-menu {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0066cc;
    }
    .legal-links {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .separator {
        margin: 0 0.5rem;
        color: #aaa;
    }
    .disclaimer p {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        margin: 0;
        padding-top: 1rem;
        border-top: 1px solid #ddd;
    }
    .current-year {
        font-weight: 600;
    }

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

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

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

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

    .identity-lv4__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .identity-lv4__head {
        margin-bottom: 15px;
    }

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

    .identity-lv4__head h2 {
        margin: 7px 0;
        font-size: clamp(28px, 4vw, 42px);
    }

    .identity-lv4__head span {
        color: var(--neutral-600);
    }

    .identity-lv4__stack {
        display: grid;
        gap: 10px;
    }

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

    .identity-lv4__line {
        display: flex;
        align-items: baseline;
        gap: 8px;
        flex-wrap: wrap;
    }

    .identity-lv4__line i {
        font-style: normal;
        color: var(--link);
    }

    .identity-lv4__line h3 {
        margin: 0;
    }

    .identity-lv4__stack p {
        margin: 7px 0 6px;
        color: var(--neutral-600);
    }

    .identity-lv4__stack small {
        color: var(--neutral-800);
        font-weight: 600;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.story-column-l4 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

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

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

    .story-column-l4__copy strong {
        display: block;
        margin-top: .8rem;
    }

    .story-column-l4__copy p {
        color: var(--neutral-600);
    }

    .story-column-l4__stats {
        display: grid;
        gap: .75rem;
    }

    .story-column-l4__stats div {
        padding: .9rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-column-l4__stats span {
        display: block;
        margin-top: .25rem;
        color: var(--neutral-600);
    }

    @media (max-width: 820px) {
        .story-column-l4__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);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
}
.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}

.search-toggle,
.menu-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--accent);
    outline: none;
    color: var(--accent);
}
.search-icon {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 70%;
    margin: 0 auto;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.search-slot {
    flex-basis: 100%;
    order: 3;
    margin-top: var(--space-y);
}
.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex-grow: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus {
    background-color: var(--bg-accent-hover);
    outline: none;
}

@media (max-width: 767px) {
    .header-container {
        flex-wrap: nowrap;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        justify-content: flex-start;
        padding-top: 5rem;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: 0;
        border-bottom: 1px solid var(--border-on-surface);
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    .search-slot {
        margin-top: var(--space-y);
    }
}

.site-footer {
        background-color: #f5f5f5;
        color: #333;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 1px solid #ddd;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }
    .footer-left .logo {
        margin: 0 0 1.5rem 0;
        font-size: 1.8rem;
        font-weight: 700;
        color: #222;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .nav-menu {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0066cc;
    }
    .legal-links {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .separator {
        margin: 0 0.5rem;
        color: #aaa;
    }
    .disclaimer p {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        margin: 0;
        padding-top: 1rem;
        border-top: 1px solid #ddd;
    }
    .current-year {
        font-weight: 600;
    }

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

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

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

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

.support-cv5 {
        padding: clamp(54px, 7vw, 94px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

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

    .support-cv5__head p {
        margin: 0;
        font-weight: 700;
        opacity: .9;
    }

    .support-cv5__head h2 {
        margin: 7px 0 0;
        font-size: clamp(30px, 5vw, 46px);
    }

    .support-cv5__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .support-cv5__grid article {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.32);
        color: var(--fg-on-page);
        padding: 13px;
        box-shadow: var(--shadow-sm);
    }

    .support-cv5__grid span {
        font-size: .82rem;
        color: var(--brand);
    }

    .support-cv5__grid h3 {
        margin: var(--space-x) 0;
    }

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

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

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

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

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

    .contacts-fresh-v2 .list {
        display: grid;
        gap: .75rem;
    }

    .contacts-fresh-v2 article {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .contacts-fresh-v2 .label {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: .9rem;
    }

    .contacts-fresh-v2 .value {
        margin: .2rem 0 0;
        font-weight: 700;
    }

    .contacts-fresh-v2 a {
        padding: .5rem .8rem;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    @media (max-width: 700px) {
        .contacts-fresh-v2 article {
            flex-direction: column;
            align-items: flex-start;
        }
    }

.touch-orbit {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .touch-orbit .header {
        margin-bottom: 14px;
        text-align: center;
    }

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

    .touch-orbit .header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
    }

    .touch-orbit .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .touch-orbit .card {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: orbitIn 420ms ease both;
    }

    .touch-orbit .card:nth-child(2) {
        animation-delay: 90ms;
    }

    .touch-orbit .card:nth-child(3) {
        animation-delay: 180ms;
    }

    .touch-orbit .icon,
    .touch-orbit .badge,
    .touch-orbit h3,
    .touch-orbit .card p {
        margin: 0 0 8px;
    }

    .touch-orbit .card a {
        color: var(--accent-contrast);
        text-decoration: underline;
    }

    .touch-orbit .main {
        display: inline-block;
        margin-top: 14px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @keyframes orbitIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
}
.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}

.search-toggle,
.menu-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--accent);
    outline: none;
    color: var(--accent);
}
.search-icon {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 70%;
    margin: 0 auto;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.search-slot {
    flex-basis: 100%;
    order: 3;
    margin-top: var(--space-y);
}
.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex-grow: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus {
    background-color: var(--bg-accent-hover);
    outline: none;
}

@media (max-width: 767px) {
    .header-container {
        flex-wrap: nowrap;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        justify-content: flex-start;
        padding-top: 5rem;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: 0;
        border-bottom: 1px solid var(--border-on-surface);
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    .search-slot {
        margin-top: var(--space-y);
    }
}

.site-footer {
        background-color: #f5f5f5;
        color: #333;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 1px solid #ddd;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }
    .footer-left .logo {
        margin: 0 0 1.5rem 0;
        font-size: 1.8rem;
        font-weight: 700;
        color: #222;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .nav-menu {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0066cc;
    }
    .legal-links {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .separator {
        margin: 0 0.5rem;
        color: #aaa;
    }
    .disclaimer p {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        margin: 0;
        padding-top: 1rem;
        border-top: 1px solid #ddd;
    }
    .current-year {
        font-weight: 600;
    }

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

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

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

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

    .terms-layout-c .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .terms-layout-c details {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        margin-bottom: 10px;
    }

    .terms-layout-c summary {
        cursor: pointer;
        color: var(--brand);
        font-weight: 700;
    }

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

    .terms-layout-c p, .terms-layout-c 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);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
}
.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}

.search-toggle,
.menu-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--accent);
    outline: none;
    color: var(--accent);
}
.search-icon {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 70%;
    margin: 0 auto;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.search-slot {
    flex-basis: 100%;
    order: 3;
    margin-top: var(--space-y);
}
.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex-grow: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus {
    background-color: var(--bg-accent-hover);
    outline: none;
}

@media (max-width: 767px) {
    .header-container {
        flex-wrap: nowrap;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        justify-content: flex-start;
        padding-top: 5rem;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: 0;
        border-bottom: 1px solid var(--border-on-surface);
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    .search-slot {
        margin-top: var(--space-y);
    }
}

.site-footer {
        background-color: #f5f5f5;
        color: #333;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 1px solid #ddd;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }
    .footer-left .logo {
        margin: 0 0 1.5rem 0;
        font-size: 1.8rem;
        font-weight: 700;
        color: #222;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .nav-menu {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0066cc;
    }
    .legal-links {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .separator {
        margin: 0 0.5rem;
        color: #aaa;
    }
    .disclaimer p {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        margin: 0;
        padding-top: 1rem;
        border-top: 1px solid #ddd;
    }
    .current-year {
        font-weight: 600;
    }

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

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

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

.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);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
}
.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}

.search-toggle,
.menu-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--accent);
    outline: none;
    color: var(--accent);
}
.search-icon {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 70%;
    margin: 0 auto;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.search-slot {
    flex-basis: 100%;
    order: 3;
    margin-top: var(--space-y);
}
.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex-grow: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus {
    background-color: var(--bg-accent-hover);
    outline: none;
}

@media (max-width: 767px) {
    .header-container {
        flex-wrap: nowrap;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        justify-content: flex-start;
        padding-top: 5rem;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: 0;
        border-bottom: 1px solid var(--border-on-surface);
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    .search-slot {
        margin-top: var(--space-y);
    }
}

.site-footer {
        background-color: #f5f5f5;
        color: #333;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 1px solid #ddd;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }
    .footer-left .logo {
        margin: 0 0 1.5rem 0;
        font-size: 1.8rem;
        font-weight: 700;
        color: #222;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .nav-menu {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0066cc;
    }
    .legal-links {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .separator {
        margin: 0 0.5rem;
        color: #aaa;
    }
    .disclaimer p {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        margin: 0;
        padding-top: 1rem;
        border-top: 1px solid #ddd;
    }
    .current-year {
        font-weight: 600;
    }

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

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

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

.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);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
}
.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}

.search-toggle,
.menu-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--accent);
    outline: none;
    color: var(--accent);
}
.search-icon {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 70%;
    margin: 0 auto;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.search-slot {
    flex-basis: 100%;
    order: 3;
    margin-top: var(--space-y);
}
.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex-grow: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus {
    background-color: var(--bg-accent-hover);
    outline: none;
}

@media (max-width: 767px) {
    .header-container {
        flex-wrap: nowrap;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        justify-content: flex-start;
        padding-top: 5rem;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: 0;
        border-bottom: 1px solid var(--border-on-surface);
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    .search-slot {
        margin-top: var(--space-y);
    }
}

.site-footer {
        background-color: #f5f5f5;
        color: #333;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 1px solid #ddd;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }
    .footer-left .logo {
        margin: 0 0 1.5rem 0;
        font-size: 1.8rem;
        font-weight: 700;
        color: #222;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .nav-menu {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0066cc;
    }
    .legal-links {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .separator {
        margin: 0 0.5rem;
        color: #aaa;
    }
    .disclaimer p {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        margin: 0;
        padding-top: 1rem;
        border-top: 1px solid #ddd;
    }
    .current-year {
        font-weight: 600;
    }

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

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

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

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

    .err-slab-f .chip {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        position: relative;
    }

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

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

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

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