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

  --max-w: 840px;
  --space-x: 1.06rem;
  --space-y: 1.5rem;
  --gap: 0.78rem;

  --radius-xl: 0.87rem;
  --radius-lg: 0.5rem;
  --radius-md: 0.42rem;
  --radius-sm: 0.22rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 5px 14px rgba(0,0,0,0.05);
  --shadow-lg: 0 14px 22px rgba(0,0,0,0.07);

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

  --brand: #2E7D32;
  --brand-contrast: #FFFFFF;
  --accent: #FF9800;
  --accent-contrast: #212121;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #E0E0E0;
  --neutral-600: #757575;
  --neutral-800: #424242;
  --neutral-900: #212121;

  --bg-page: #FFFFFF;
  --fg-on-page: #212121;

  --bg-alt: #F9F9F9;
  --fg-on-alt: #424242;

  --surface-1: #FFFFFF;
  --surface-2: #F5F5F5;
  --fg-on-surface: #212121;
  --border-on-surface: #E0E0E0;

  --surface-light: #FAFAFA;
  --fg-on-surface-light: #424242;
  --border-on-surface-light: #EEEEEE;

  --bg-primary: #2E7D32;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #388E3C;
  --ring: rgba(46, 125, 50, 0.4);

  --bg-accent: #FFF3E0;
  --fg-on-accent: #E65100;
  --bg-accent-hover: #FFB74D;

  --link: #1B5E20;
  --link-hover: #2E7D32;

  --gradient-hero: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
  --gradient-accent: linear-gradient(90deg, #FFECB3 0%, #FFF3E0 100%);

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

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

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

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

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

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

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

.btn-search,
.btn-menu {
    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;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background: var(--btn-ghost-bg-hover);
    border-color: var(--border-on-surface);
}
.btn-search:focus,
.btn-menu:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 1.25rem;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        padding: 0.75rem 0;
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .btn-menu {
        display: flex;
    }
    .header-container {
        flex-wrap: wrap;
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
    }
    .footer-top {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2a7d2e;
    }
    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .nav-menu a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #2a7d2e;
    }
    .footer-bottom {
        font-size: 0.9rem;
        color: #666;
    }
    .legal-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-style: normal;
        line-height: 1.5;
        flex: 1;
        min-width: 250px;
    }
    .contact-item strong {
        color: #333;
    }
    .contact-info a {
        color: #2a7d2e;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .legal-links {
        flex: 2;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
        min-width: 300px;
    }
    .disclaimer {
        flex-basis: 100%;
        margin-bottom: 0.5rem;
        line-height: 1.4;
        color: #777;
    }
    .copyright {
        margin-right: auto;
        color: #888;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        white-space: nowrap;
    }
    .legal-links a:hover {
        color: #2a7d2e;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-nav {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .nav-menu {
            flex-direction: column;
            gap: 0.75rem;
        }
        .legal-row {
            flex-direction: column;
            gap: 1.5rem;
        }
        .legal-links {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
        .copyright {
            margin-right: 0;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.wp-lang-switcher-v4 {
        position: fixed;
        right: clamp(16px, 2vw, 24px);
        bottom: clamp(16px, 2vw, 24px);
        z-index: 99999;

        --local-random: var(--random-number, 1);
    }

    .wp-lang-switcher-v4__container {
        display: flex;
        align-items: center;
        gap: 0;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: calc(var(--radius-xl) + var(--local-random) * 4px);
        padding: calc(5px + var(--local-random) * 1px);
        box-shadow: var(--shadow-lg);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v4__container.expanded {
        gap: calc(4px + var(--local-random) * 2px);
    }

    .wp-lang-switcher-v4__toggle {
        width: calc(42px + var(--local-random) * 2px);
        height: calc(42px + var(--local-random) * 2px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        border-radius: calc(var(--radius-lg) - var(--local-random) * 2px);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--anim-duration) var(--anim-ease);
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }

    .wp-lang-switcher-v4__toggle::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: spin calc(2.8s + var(--local-random) * 0.4s) linear infinite;
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

    .wp-lang-switcher-v4__icon {
        font-size: calc(18px + var(--local-random) * 2px);
        position: relative;
        z-index: 1;
    }

    .wp-lang-switcher-v4__toggle:hover {
        transform: scale(calc(1.03 + var(--local-random) * 0.02));
    }

    .wp-lang-switcher-v4__list {
        display: flex;
        gap: calc(5px + var(--local-random) * 1px);
        max-width: 0;
        opacity: 0;
        transition: all var(--anim-duration) cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .wp-lang-switcher-v4__container.expanded .wp-lang-switcher-v4__list {
        max-width: 300px;
        opacity: 1;
    }

    .wp-lang-switcher-v4__list button,
    .wp-lang-switcher-v4__list a {
        width: calc(38px + var(--local-random) * 2px);
        height: calc(38px + var(--local-random) * 2px);
        border: 2px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        cursor: pointer;

        font-size: 12px;
        font-weight: 700;
        border-radius: calc(var(--radius-md) - var(--local-random) * 2px);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        flex-shrink: 0;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .wp-lang-switcher-v4__list button::before,
    .wp-lang-switcher-v4__list a::before {
        content: '';
        position: absolute;
        inset: calc(-2px - var(--local-random) * 0.5px);
        border-radius: calc(var(--radius-md) - var(--local-random) * 2px);
        background: var(--gradient-accent);

        z-index: -1;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v4__list button:hover,
    .wp-lang-switcher-v4__list a:hover {
        border-color: transparent;
        color: var(--fg-on-primary);
        transform: translateY(calc(-2px - var(--local-random) * 1px));
    }

    .wp-lang-switcher-v4__list button:hover::before,
    .wp-lang-switcher-v4__list a:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v4__list button span,
    .wp-lang-switcher-v4__list a span {
        position: relative;
        z-index: 1;
    }

.hero-arc-v3 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .hero-arc-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:minmax(0, .82fr) minmax(0, 1.18fr);
        gap: calc(var(--gap) * 2);
        align-items: stretch;
    }

    .hero-arc-v3 .media {
        padding: var(--gap);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
    }

    .hero-arc-v3 img {
        width: 100%;
        height: 100%;
        min-height: 320px;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .hero-arc-v3 .copy {
        display: grid;
        gap: var(--gap);
        align-content: start;
    }

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

    .hero-arc-v3 .subtitle {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

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

    .hero-arc-v3 .stats article {
        padding: 1rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
    }

    .hero-arc-v3 .stats p {
        margin: .3rem 0 0;
        color: var(--fg-on-surface-light);
        font-size: .92rem;
    }

    .hero-arc-v3 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .hero-arc-v3 .actions a {
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-surface);
        background: var(--surface-1);
    }

    .hero-arc-v3 .actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

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

        .hero-arc-v3 .stats {
            grid-template-columns:1fr;
        }
    }

.cta-struct-v6 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0)
    }

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

    .cta-struct-v6 h2, .cta-struct-v6 h3, .cta-struct-v6 p {
        margin: 0
    }

    .cta-struct-v6 a {
        text-decoration: none
    }

    .cta-struct-v6 .center, .cta-struct-v6 .banner, .cta-struct-v6 .stack, .cta-struct-v6 .bar, .cta-struct-v6 .split, .cta-struct-v6 .duo article {
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface)
    }

    .cta-struct-v6 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

    .cta-struct-v6 .split {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    .cta-struct-v6 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

    .cta-struct-v6 .actions a, .cta-struct-v6 .center a, .cta-struct-v6 .banner > a, .cta-struct-v6 .duo a {
        display: inline-flex;
        min-height: 2.35rem;
        padding: 0 .85rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .cta-struct-v6 .banner {
        display: grid;
        gap: .6rem
    }

    .cta-struct-v6 .numbers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: .5rem
    }

    .cta-struct-v6 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .cta-struct-v6 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .cta-struct-v6 .duo article {
        display: grid;
        gap: .45rem
    }

    .cta-struct-v6 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .cta-struct-v6 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .cta-struct-v6 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .cta-struct-v6 .bar {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    @media (max-width: 820px) {
        .cta-struct-v6 .split, .cta-struct-v6 .bar, .cta-struct-v6 .duo {
            grid-template-columns:1fr
        }

        .cta-struct-v6 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .cta-struct-v6 .numbers {
            grid-template-columns:1fr
        }
    }

.education-struct-v1 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.touch-stream {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .touch-stream .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .touch-stream .header {
        margin-bottom: 12px;
    }

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

    .touch-stream .header p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .touch-stream .stream {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 8px;
    }

    .touch-stream .chip {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        padding: 10px 12px;
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
    }

    .touch-stream .chip em {
        font-style: normal;
        opacity: .85;
    }

    .touch-stream .foot {
        margin-top: 12px;
    }

    .touch-stream .foot a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: var(--radius-md);
        padding: 10px 14px;
        display: inline-block;
    }

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

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

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

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

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

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

.btn-search,
.btn-menu {
    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;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background: var(--btn-ghost-bg-hover);
    border-color: var(--border-on-surface);
}
.btn-search:focus,
.btn-menu:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 1.25rem;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        padding: 0.75rem 0;
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .btn-menu {
        display: flex;
    }
    .header-container {
        flex-wrap: wrap;
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
    }
    .footer-top {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2a7d2e;
    }
    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .nav-menu a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #2a7d2e;
    }
    .footer-bottom {
        font-size: 0.9rem;
        color: #666;
    }
    .legal-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-style: normal;
        line-height: 1.5;
        flex: 1;
        min-width: 250px;
    }
    .contact-item strong {
        color: #333;
    }
    .contact-info a {
        color: #2a7d2e;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .legal-links {
        flex: 2;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
        min-width: 300px;
    }
    .disclaimer {
        flex-basis: 100%;
        margin-bottom: 0.5rem;
        line-height: 1.4;
        color: #777;
    }
    .copyright {
        margin-right: auto;
        color: #888;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        white-space: nowrap;
    }
    .legal-links a:hover {
        color: #2a7d2e;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-nav {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .nav-menu {
            flex-direction: column;
            gap: 0.75rem;
        }
        .legal-row {
            flex-direction: column;
            gap: 1.5rem;
        }
        .legal-links {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
        .copyright {
            margin-right: 0;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

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

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

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

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

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

.about-mission {

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

    .about-mission .about-mission__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-mission .about-mission__cards {
        display: grid;
        gap: var(--space-x);
    }

    .about-mission .about-mission__card {
        background: #fff;
        color: var(--fg-on-page);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-md);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__cards {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }

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

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

    .faq-fresh-v1 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    }

    .faq-fresh-v1 .items {
        display: grid;
        gap: .8rem;
    }

    .faq-fresh-v1 details {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        padding: .85rem 1rem;
        background: var(--surface-1);
    }

    .faq-fresh-v1 summary {
        cursor: pointer;
        font-weight: 700;
    }

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

.about-timeline {

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

    .about-timeline .about-timeline__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-timeline .about-timeline__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-timeline .about-timeline__cell {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
    }

    .about-timeline time {
        opacity: .9;
    }

    @media (max-width: 767px) {
        .about-timeline .about-timeline__grid {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }

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

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

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

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

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

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

.btn-search,
.btn-menu {
    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;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background: var(--btn-ghost-bg-hover);
    border-color: var(--border-on-surface);
}
.btn-search:focus,
.btn-menu:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 1.25rem;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        padding: 0.75rem 0;
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .btn-menu {
        display: flex;
    }
    .header-container {
        flex-wrap: wrap;
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
    }
    .footer-top {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2a7d2e;
    }
    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .nav-menu a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #2a7d2e;
    }
    .footer-bottom {
        font-size: 0.9rem;
        color: #666;
    }
    .legal-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-style: normal;
        line-height: 1.5;
        flex: 1;
        min-width: 250px;
    }
    .contact-item strong {
        color: #333;
    }
    .contact-info a {
        color: #2a7d2e;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .legal-links {
        flex: 2;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
        min-width: 300px;
    }
    .disclaimer {
        flex-basis: 100%;
        margin-bottom: 0.5rem;
        line-height: 1.4;
        color: #777;
    }
    .copyright {
        margin-right: auto;
        color: #888;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        white-space: nowrap;
    }
    .legal-links a:hover {
        color: #2a7d2e;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-nav {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .nav-menu {
            flex-direction: column;
            gap: 0.75rem;
        }
        .legal-row {
            flex-direction: column;
            gap: 1.5rem;
        }
        .legal-links {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
        .copyright {
            margin-right: 0;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

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

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

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

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

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

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

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

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

    .plans-lv2__grid h3 {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hiw-ribbon-c1 {
        padding: clamp(3.5rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .hiw-ribbon-c1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .hiw-ribbon-c1__head {
        margin-bottom: 1.25rem;
    }

    .hiw-ribbon-c1__head p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .hiw-ribbon-c1__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .hiw-ribbon-c1__track {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        gap: var(--gap);
    }

    .hiw-ribbon-c1__track article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--fg-on-primary);
        color:  var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-md);
        position: relative;
    }

    .hiw-ribbon-c1__track article::after {
        content: '';
        position: absolute;
        inset: auto 1rem 0.7rem 1rem;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, .45), transparent);
    }

    .hiw-ribbon-c1__track span {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .hiw-ribbon-c1__track h3 {
        margin: .8rem 0 .35rem;
    }

    .hiw-ribbon-c1__track p {
        margin: 0;
        color: rgba(255, 255, 255, .84);
    }

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

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

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

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

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

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

.btn-search,
.btn-menu {
    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;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background: var(--btn-ghost-bg-hover);
    border-color: var(--border-on-surface);
}
.btn-search:focus,
.btn-menu:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 1.25rem;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        padding: 0.75rem 0;
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .btn-menu {
        display: flex;
    }
    .header-container {
        flex-wrap: wrap;
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
    }
    .footer-top {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2a7d2e;
    }
    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .nav-menu a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #2a7d2e;
    }
    .footer-bottom {
        font-size: 0.9rem;
        color: #666;
    }
    .legal-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-style: normal;
        line-height: 1.5;
        flex: 1;
        min-width: 250px;
    }
    .contact-item strong {
        color: #333;
    }
    .contact-info a {
        color: #2a7d2e;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .legal-links {
        flex: 2;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
        min-width: 300px;
    }
    .disclaimer {
        flex-basis: 100%;
        margin-bottom: 0.5rem;
        line-height: 1.4;
        color: #777;
    }
    .copyright {
        margin-right: auto;
        color: #888;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        white-space: nowrap;
    }
    .legal-links a:hover {
        color: #2a7d2e;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-nav {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .nav-menu {
            flex-direction: column;
            gap: 0.75rem;
        }
        .legal-row {
            flex-direction: column;
            gap: 1.5rem;
        }
        .legal-links {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
        .copyright {
            margin-right: 0;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .connect .connect__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--fg-on-page);
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: clamp(20px, 3vw, 28px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        padding: var(--space-x);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 2px solid var(--border-on-surface);
        text-decoration: none;
        color: inherit;
        transition: all 0.3s;
    }

    .connect .connect__item:hover {
        transform: translateY(-6px);
        border-color: var(--bg-accent);
        box-shadow: var(--shadow-md);
    }

    .connect .connect__icon {
        font-size: clamp(46px, 8vw, 70px);
        width: clamp(95px, 13.5vw, 135px);
        height: clamp(95px, 13.5vw, 135px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-2);
        border-radius: 50%;
        border: 2px solid var(--border-on-surface);
    }

    .connect .connect__item span {
        font-size: clamp(17px, 2.8vw, 20px);
        font-weight: 600;
        color: var(--fg-on-surface);
    }

.clarifications-c1 {

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

    .clarifications-c1::before {
        content: '';
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.18), transparent 52%);
        filter: blur(18px);
        animation: c1Glow 6s var(--anim-ease) infinite;
        opacity: .8;
        pointer-events: none;
    }

    @keyframes c1Glow {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1);
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.03);
        }
    }

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

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

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

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

    .clarifications-c1__grid {
        display: grid;
        gap: 12px;
    }

    .clarifications-c1__item {
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
        overflow: hidden;
        backdrop-filter: blur(8px);
    }

    .clarifications-c1__q {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: transparent;
        border: 0;
        color: inherit;
        cursor: pointer;
        text-align: left;
    }

    .clarifications-c1__dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--accent);
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.12);
        flex: 0 0 auto;
        animation: c1Dot 1.8s ease-in-out infinite;
    }

    @keyframes c1Dot {
        0%, 100% {
            transform: scale(1);
            opacity: .9
        }
        50% {
            transform: scale(1.15);
            opacity: 1
        }
    }

    .clarifications-c1__qText {
        font-weight: 800;
        letter-spacing: -.01em
    }

    .clarifications-c1__chev {
        margin-left: auto;
        opacity: .85;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c1__a {
        display: none;
        padding: 0 16px 16px 38px;
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    .clarifications-c1__item.is-open .clarifications-c1__chev {
        transform: rotate(180deg);
    }

    .clarifications-c1__item.is-open .clarifications-c1__a {
        display: block;
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-c1::before, .clarifications-c1__dot {
            animation: none;
        }
    }

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

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

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

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

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

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

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

.btn-search,
.btn-menu {
    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;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background: var(--btn-ghost-bg-hover);
    border-color: var(--border-on-surface);
}
.btn-search:focus,
.btn-menu:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 1.25rem;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        padding: 0.75rem 0;
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .btn-menu {
        display: flex;
    }
    .header-container {
        flex-wrap: wrap;
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
    }
    .footer-top {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2a7d2e;
    }
    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .nav-menu a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #2a7d2e;
    }
    .footer-bottom {
        font-size: 0.9rem;
        color: #666;
    }
    .legal-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-style: normal;
        line-height: 1.5;
        flex: 1;
        min-width: 250px;
    }
    .contact-item strong {
        color: #333;
    }
    .contact-info a {
        color: #2a7d2e;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .legal-links {
        flex: 2;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
        min-width: 300px;
    }
    .disclaimer {
        flex-basis: 100%;
        margin-bottom: 0.5rem;
        line-height: 1.4;
        color: #777;
    }
    .copyright {
        margin-right: auto;
        color: #888;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        white-space: nowrap;
    }
    .legal-links a:hover {
        color: #2a7d2e;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-nav {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .nav-menu {
            flex-direction: column;
            gap: 0.75rem;
        }
        .legal-row {
            flex-direction: column;
            gap: 1.5rem;
        }
        .legal-links {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
        .copyright {
            margin-right: 0;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

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

.btn-search,
.btn-menu {
    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;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background: var(--btn-ghost-bg-hover);
    border-color: var(--border-on-surface);
}
.btn-search:focus,
.btn-menu:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 1.25rem;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        padding: 0.75rem 0;
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .btn-menu {
        display: flex;
    }
    .header-container {
        flex-wrap: wrap;
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
    }
    .footer-top {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2a7d2e;
    }
    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .nav-menu a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #2a7d2e;
    }
    .footer-bottom {
        font-size: 0.9rem;
        color: #666;
    }
    .legal-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-style: normal;
        line-height: 1.5;
        flex: 1;
        min-width: 250px;
    }
    .contact-item strong {
        color: #333;
    }
    .contact-info a {
        color: #2a7d2e;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .legal-links {
        flex: 2;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
        min-width: 300px;
    }
    .disclaimer {
        flex-basis: 100%;
        margin-bottom: 0.5rem;
        line-height: 1.4;
        color: #777;
    }
    .copyright {
        margin-right: auto;
        color: #888;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        white-space: nowrap;
    }
    .legal-links a:hover {
        color: #2a7d2e;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-nav {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .nav-menu {
            flex-direction: column;
            gap: 0.75rem;
        }
        .legal-row {
            flex-direction: column;
            gap: 1.5rem;
        }
        .legal-links {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
        .copyright {
            margin-right: 0;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

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

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

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

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

    .policy-layout-a .meta {
        margin: 0;
        color: var(--brand);
        font-weight: 600;
    }

    .policy-layout-a h3 {
        margin: 8px 0;
    }

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

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

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

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

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

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

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

.btn-search,
.btn-menu {
    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;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background: var(--btn-ghost-bg-hover);
    border-color: var(--border-on-surface);
}
.btn-search:focus,
.btn-menu:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 1.25rem;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        padding: 0.75rem 0;
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .btn-menu {
        display: flex;
    }
    .header-container {
        flex-wrap: wrap;
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
    }
    .footer-top {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2a7d2e;
    }
    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .nav-menu a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #2a7d2e;
    }
    .footer-bottom {
        font-size: 0.9rem;
        color: #666;
    }
    .legal-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-style: normal;
        line-height: 1.5;
        flex: 1;
        min-width: 250px;
    }
    .contact-item strong {
        color: #333;
    }
    .contact-info a {
        color: #2a7d2e;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .legal-links {
        flex: 2;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
        min-width: 300px;
    }
    .disclaimer {
        flex-basis: 100%;
        margin-bottom: 0.5rem;
        line-height: 1.4;
        color: #777;
    }
    .copyright {
        margin-right: auto;
        color: #888;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        white-space: nowrap;
    }
    .legal-links a:hover {
        color: #2a7d2e;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-nav {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .nav-menu {
            flex-direction: column;
            gap: 0.75rem;
        }
        .legal-row {
            flex-direction: column;
            gap: 1.5rem;
        }
        .legal-links {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
        .copyright {
            margin-right: 0;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.thank-mode-e {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: repeating-linear-gradient(135deg, var(--bg-alt), var(--bg-alt) 16px, var(--neutral-0) 16px, var(--neutral-0) 32px);
        color: var(--fg-on-page);
    }

    .thank-mode-e .wrap {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

    .thank-mode-e a {
        display: inline-block;
        margin-top: 16px;
        padding: 9px 14px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-page);
    }

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

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

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

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

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

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

.btn-search,
.btn-menu {
    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;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background: var(--btn-ghost-bg-hover);
    border-color: var(--border-on-surface);
}
.btn-search:focus,
.btn-menu:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 1.25rem;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        padding: 0.75rem 0;
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .btn-menu {
        display: flex;
    }
    .header-container {
        flex-wrap: wrap;
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
    }
    .footer-top {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2a7d2e;
    }
    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .nav-menu a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #2a7d2e;
    }
    .footer-bottom {
        font-size: 0.9rem;
        color: #666;
    }
    .legal-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-style: normal;
        line-height: 1.5;
        flex: 1;
        min-width: 250px;
    }
    .contact-item strong {
        color: #333;
    }
    .contact-info a {
        color: #2a7d2e;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .legal-links {
        flex: 2;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
        min-width: 300px;
    }
    .disclaimer {
        flex-basis: 100%;
        margin-bottom: 0.5rem;
        line-height: 1.4;
        color: #777;
    }
    .copyright {
        margin-right: auto;
        color: #888;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        white-space: nowrap;
    }
    .legal-links a:hover {
        color: #2a7d2e;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-nav {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .nav-menu {
            flex-direction: column;
            gap: 0.75rem;
        }
        .legal-row {
            flex-direction: column;
            gap: 1.5rem;
        }
        .legal-links {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
        .copyright {
            margin-right: 0;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

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

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