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

  --max-w: 1200px;
  --space-x: 1.43rem;
  --space-y: 1.5rem;
  --gap: 2.16rem;

  --radius-xl: 1.26rem;
  --radius-lg: 1rem;
  --radius-md: 0.65rem;
  --radius-sm: 0.31rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.13);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.16);
  --shadow-lg: 0 32px 38px rgba(0,0,0,0.2);

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

  --brand: #003366;
  --brand-contrast: #FFFFFF;
  --accent: #FFB81C;
  --accent-contrast: #003366;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D9E6;
  --neutral-600: #6B7B95;
  --neutral-800: #2C3E50;
  --neutral-900: #0A1A2F;

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

  --bg-alt: #F5F7FA;
  --fg-on-alt: #2C3E50;

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

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #2C3E50;
  --border-on-surface-light: #E8EDF5;

  --bg-primary: #0066CC;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #0052A3;
  --ring: #0066CC;

  --bg-accent: #FFB81C;
  --fg-on-accent: #003366;
  --bg-accent-hover: #FFA500;

  --link: #0066CC;
  --link-hover: #003366;

  --gradient-hero: linear-gradient(135deg, #003366 0%, #0066CC 100%);
  --gradient-accent: linear-gradient(90deg, #FFB81C 0%, #FFA500 100%);

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}

.header-contact {
    display: flex;
    align-items: center;
}

.contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.contact-link:hover {
    background-color: var(--bg-accent-hover);
    color: var(--fg-on-accent);
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-x);
    position: relative;
}

.main-nav {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
}

.nav-list {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.5);
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    margin-left: auto;
    z-index: 1001;
}

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

@media (max-width: 767px) {
    .header-top {
        padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.8);
    }

    .header-bottom {
        padding: 0 calc(var(--space-x) * 0.8);
        justify-content: space-between;
    }

    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        padding-top: 5rem;
        box-sizing: border-box;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-link {
        padding: calc(var(--space-y) * 1) calc(var(--space-x) * 0.8);
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
        box-sizing: border-box;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5aa0;
        margin-bottom: 0.5rem;
    }
    .tagline {
        color: #666;
        font-style: italic;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2c5aa0;
        text-decoration: underline;
    }
    .legal-links {
        font-size: 0.85rem;
        color: #777;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .footer-contact address strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-contact a {
        color: #2c5aa0;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2c5aa0;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #777;
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .disclaimer {
        margin-bottom: 0.8rem;
        padding: 0 1rem;
    }
    .copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

.intro-buttons-c7 { padding: clamp(3.9rem,9vw,7rem) var(--space-x); background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 25%), var(--gradient-accent); color: var(--fg-on-primary); }
.intro-buttons-c7__wrap { max-width: 58rem; margin: 0 auto; text-align: center; }
.intro-buttons-c7__copy p { margin: 0; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; }
.intro-buttons-c7__copy h1 { margin: .6rem 0 0; font-size: clamp(2.5rem,5vw,4.6rem); line-height: 1; }
.intro-buttons-c7__copy span { display: block; margin-top: .9rem; color: rgba(255,255,255,.88); }
.intro-buttons-c7__actions { margin-top: 1.2rem; display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.intro-buttons-c7__btn { display: inline-flex; min-height: 2.85rem; align-items: center; justify-content: center; padding: 0 1rem; border-radius: 999px; text-decoration: none; background: rgba(255,255,255,.14); color: var(--fg-on-primary); border: 1px solid rgba(255,255,255,.18); }
.intro-buttons-c7__btn--primary { background: var(--surface-1); color: var(--fg-on-page); }

.gallery--light-v6 {
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.gallery__title {
    margin: 0 0 12px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--neutral-900);
}

.gallery__strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery__thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    min-width: 120px;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.gallery__thumb:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

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

.values-spine-c1 {
        padding: clamp(3.5rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

    .values-spine-c1__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .values-spine-c1__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

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

    .values-spine-c1__head h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--brand-contrast);
    }

    .values-spine-c1__head span {
        display: block;
        margin-top: .8rem;
        color: rgba(255, 255, 255, .9);
    }

    .values-spine-c1__list {
        display: grid;
        gap: .8rem;
    }

    .values-spine-c1__list article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-spine-c1__list strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--bg-accent);
        color: var(--accent-contrast);
        font-weight: bold;
    }

    .values-spine-c1__list h3 {
        margin: 0;
        color: var(--brand-contrast);
    }

    .values-spine-c1__list p {
        margin: .35rem 0 0;
        color: rgba(255, 255, 255, .85);
    }

    .values-spine-c1__list small {
        display: block;
        margin-top: .55rem;
        color: var(--accent);
        font-weight: 600;
    }

.why-choose-light-alt {

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

    .why-choose-light-alt .why-choose-light-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .why-choose-light-alt .why-choose-light-alt__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

    }

    .why-choose-light-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-alt);
        position: relative;
        display: inline-block;
    }

    .why-choose-light-alt h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
        0%, 100% {
            opacity: 1;
            transform: scaleX(1);
        }
        50% {
            opacity: 0.4;
            transform: scaleX(0.8);
        }
    }

    .why-choose-light-alt .why-choose-light-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

    .why-choose-light-alt .why-choose-light-alt__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2vw, 24px);
    }

    .why-choose-light-alt .why-choose-light-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        align-items: flex-start;

        position: relative;
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,
        var(--bg-primary) 0%,
        var(--accent) 50%,
        var(--bg-primary) 100%);
        background-size: 200% 100%;
        animation: wave 3s linear infinite;

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

    @keyframes wave {
        0% {
            background-position: 0% 0%;
        }
        100% {
            background-position: 200% 0%;
        }
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover .why-choose-light-alt__wave {
        opacity: 1;
    }

    .why-choose-light-alt .why-choose-light-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        animation: sparkle 4s ease-in-out infinite;
    }

    @keyframes sparkle {
        0%, 100% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        10% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
        20%, 80% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        90% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
    }

    .why-choose-light-alt .why-choose-light-alt__content {
        flex: 1;
    }

    .why-choose-light-alt .why-choose-light-alt__item h3 {
        font-size: clamp(18px, 2.2vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
        position: relative;
    }

    .why-choose-light-alt .why-choose-light-alt__item h3::before {
        content: '';
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        transition: height var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover h3::before {
        height: 100%;
    }

    .why-choose-light-alt .why-choose-light-alt__item p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

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

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

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

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

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

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

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

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

    .cta-struct-v4 .actions a, .cta-struct-v4 .center a, .cta-struct-v4 .banner > a, .cta-struct-v4 .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-v4 .banner {
        display: grid;
        gap: .6rem
    }

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}

.header-contact {
    display: flex;
    align-items: center;
}

.contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.contact-link:hover {
    background-color: var(--bg-accent-hover);
    color: var(--fg-on-accent);
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-x);
    position: relative;
}

.main-nav {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
}

.nav-list {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.5);
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    margin-left: auto;
    z-index: 1001;
}

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

@media (max-width: 767px) {
    .header-top {
        padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.8);
    }

    .header-bottom {
        padding: 0 calc(var(--space-x) * 0.8);
        justify-content: space-between;
    }

    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        padding-top: 5rem;
        box-sizing: border-box;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-link {
        padding: calc(var(--space-y) * 1) calc(var(--space-x) * 0.8);
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
        box-sizing: border-box;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5aa0;
        margin-bottom: 0.5rem;
    }
    .tagline {
        color: #666;
        font-style: italic;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2c5aa0;
        text-decoration: underline;
    }
    .legal-links {
        font-size: 0.85rem;
        color: #777;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .footer-contact address strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-contact a {
        color: #2c5aa0;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2c5aa0;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #777;
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .disclaimer {
        margin-bottom: 0.8rem;
        padding: 0 1rem;
    }
    .copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

.project-list--colored-v5 {
    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

.project-list__header h2 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,30px);
    color: var(--brand-contrast);
}

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

.project-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 14px;
}

.project-list__card {
    border-radius: var(--radius-xl);
    padding: 12px 14px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
}

.project-list__card--active {
    border-color: var(--accent);
}
.project-list__card--paused {
    border-color: var(--accent);
}
.project-list__card--archived {
    border-color: var(--accent);
}

.project-list__name {
    margin: 0 0 3px;
    font-size: 0.95rem;
}

.project-list__meta {
    margin: 0;
    font-size: 0.85rem;
    color: var(--neutral-200);
}

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

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

    .index-recommendations-light__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .index-recommendations-light__h h2 {
        margin: 0 0 10px;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

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

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

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

        transform: translateY(26px);
        position: relative;
        overflow: hidden;
    }

    .index-recommendations-light__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 15%, rgba(248, 225, 231, 0.45), transparent 55%);
        pointer-events: none;
    }

    .index-recommendations-light__card h3 {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-page);
    }

    .index-recommendations-light__card p {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-light__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .index-recommendations-light__cta::after {
        content: '->';
        font-size: 12px;
    }

    .index-recommendations-light__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}

.header-contact {
    display: flex;
    align-items: center;
}

.contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.contact-link:hover {
    background-color: var(--bg-accent-hover);
    color: var(--fg-on-accent);
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-x);
    position: relative;
}

.main-nav {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
}

.nav-list {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.5);
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    margin-left: auto;
    z-index: 1001;
}

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

@media (max-width: 767px) {
    .header-top {
        padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.8);
    }

    .header-bottom {
        padding: 0 calc(var(--space-x) * 0.8);
        justify-content: space-between;
    }

    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        padding-top: 5rem;
        box-sizing: border-box;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-link {
        padding: calc(var(--space-y) * 1) calc(var(--space-x) * 0.8);
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
        box-sizing: border-box;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5aa0;
        margin-bottom: 0.5rem;
    }
    .tagline {
        color: #666;
        font-style: italic;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2c5aa0;
        text-decoration: underline;
    }
    .legal-links {
        font-size: 0.85rem;
        color: #777;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .footer-contact address strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-contact a {
        color: #2c5aa0;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2c5aa0;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #777;
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .disclaimer {
        margin-bottom: 0.8rem;
        padding: 0 1rem;
    }
    .copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

.project-item {

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

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

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

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

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

    }

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

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

        /* Se randomNumber è pari (2) - il primo figlio ottiene order: 2 */
        .project-item .project-item__gallery > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

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

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

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

    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}

.header-contact {
    display: flex;
    align-items: center;
}

.contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.contact-link:hover {
    background-color: var(--bg-accent-hover);
    color: var(--fg-on-accent);
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-x);
    position: relative;
}

.main-nav {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
}

.nav-list {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.5);
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    margin-left: auto;
    z-index: 1001;
}

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

@media (max-width: 767px) {
    .header-top {
        padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.8);
    }

    .header-bottom {
        padding: 0 calc(var(--space-x) * 0.8);
        justify-content: space-between;
    }

    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        padding-top: 5rem;
        box-sizing: border-box;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-link {
        padding: calc(var(--space-y) * 1) calc(var(--space-x) * 0.8);
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
        box-sizing: border-box;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5aa0;
        margin-bottom: 0.5rem;
    }
    .tagline {
        color: #666;
        font-style: italic;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2c5aa0;
        text-decoration: underline;
    }
    .legal-links {
        font-size: 0.85rem;
        color: #777;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .footer-contact address strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-contact a {
        color: #2c5aa0;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2c5aa0;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #777;
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .disclaimer {
        margin-bottom: 0.8rem;
        padding: 0 1rem;
    }
    .copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

.project-item {

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

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

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

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

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

    }

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

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

        /* Se randomNumber è pari (2) - il primo figlio ottiene order: 2 */
        .project-item .project-item__gallery > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

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

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

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

    }

.nfsocial-v8 {
        padding: clamp(20px, 3vw, 44px);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

    .nfsocial-v8__head {
        margin-bottom: 14px;
    }

    .nfsocial-v8 h2 {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
    }

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

    .nfsocial-v8__quotes {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 12px;
    }

    .nfsocial-v8__quotes article {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        padding: 14px;
    }

    .nfsocial-v8__quotes p {
        margin: 0;
        color: var(--fg-on-page);
    }

    .nfsocial-v8__quotes strong {
        display: block;
        margin-top: 10px;
        color: var(--neutral-900);
    }

    .nfsocial-v8__quotes span {
        display: block;
        margin-top: 4px;
        color: var(--neutral-600);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}

.header-contact {
    display: flex;
    align-items: center;
}

.contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.contact-link:hover {
    background-color: var(--bg-accent-hover);
    color: var(--fg-on-accent);
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-x);
    position: relative;
}

.main-nav {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
}

.nav-list {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.5);
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    margin-left: auto;
    z-index: 1001;
}

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

@media (max-width: 767px) {
    .header-top {
        padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.8);
    }

    .header-bottom {
        padding: 0 calc(var(--space-x) * 0.8);
        justify-content: space-between;
    }

    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        padding-top: 5rem;
        box-sizing: border-box;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-link {
        padding: calc(var(--space-y) * 1) calc(var(--space-x) * 0.8);
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
        box-sizing: border-box;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5aa0;
        margin-bottom: 0.5rem;
    }
    .tagline {
        color: #666;
        font-style: italic;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2c5aa0;
        text-decoration: underline;
    }
    .legal-links {
        font-size: 0.85rem;
        color: #777;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .footer-contact address strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-contact a {
        color: #2c5aa0;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2c5aa0;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #777;
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .disclaimer {
        margin-bottom: 0.8rem;
        padding: 0 1rem;
    }
    .copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

.project-item {

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

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

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

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

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

    }

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

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

        /* Se randomNumber è pari (2) - il primo figlio ottiene order: 2 */
        .project-item .project-item__gallery > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

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

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

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

    }

.story-banner-c1 {
        padding: clamp(3.6rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .story-banner-c1__copy, .story-banner-c1__media {
        flex: 1 1 20rem;
    }

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

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

    .story-banner-c1__copy strong {
        display: block;
        margin-top: .75rem;
    }

    .story-banner-c1__copy p {
        color: rgba(255, 255, 255, .84);
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}

.header-contact {
    display: flex;
    align-items: center;
}

.contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.contact-link:hover {
    background-color: var(--bg-accent-hover);
    color: var(--fg-on-accent);
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-x);
    position: relative;
}

.main-nav {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
}

.nav-list {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.5);
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    margin-left: auto;
    z-index: 1001;
}

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

@media (max-width: 767px) {
    .header-top {
        padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.8);
    }

    .header-bottom {
        padding: 0 calc(var(--space-x) * 0.8);
        justify-content: space-between;
    }

    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        padding-top: 5rem;
        box-sizing: border-box;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-link {
        padding: calc(var(--space-y) * 1) calc(var(--space-x) * 0.8);
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
        box-sizing: border-box;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5aa0;
        margin-bottom: 0.5rem;
    }
    .tagline {
        color: #666;
        font-style: italic;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2c5aa0;
        text-decoration: underline;
    }
    .legal-links {
        font-size: 0.85rem;
        color: #777;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .footer-contact address strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-contact a {
        color: #2c5aa0;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2c5aa0;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #777;
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .disclaimer {
        margin-bottom: 0.8rem;
        padding: 0 1rem;
    }
    .copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .team-fresh-v1 article {
        padding: 1rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

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

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

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

    .team-fresh-v1 .bio {
        margin: .35rem 0 0;
        color: var(--fg-on-surface-light);
    }

    @media (max-width: 900px) {
        .team-fresh-v1 .grid {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

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

.story-banner-c1 {
        padding: clamp(3.6rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .story-banner-c1__copy, .story-banner-c1__media {
        flex: 1 1 20rem;
    }

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

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

    .story-banner-c1__copy strong {
        display: block;
        margin-top: .75rem;
    }

    .story-banner-c1__copy p {
        color: rgba(255, 255, 255, .84);
    }

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

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

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

    .identity-nv10__head {
        margin-bottom: 16px;
    }

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

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

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

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

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

    .identity-nv10__grid i {
        display: inline-block;
        font-style: normal;
        color: var(--link);
        margin-bottom: 6px;
    }

    .identity-nv10__grid h3 {
        margin: 0;
        color: var(--neutral-900);
    }

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}

.header-contact {
    display: flex;
    align-items: center;
}

.contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.contact-link:hover {
    background-color: var(--bg-accent-hover);
    color: var(--fg-on-accent);
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-x);
    position: relative;
}

.main-nav {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
}

.nav-list {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.5);
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    margin-left: auto;
    z-index: 1001;
}

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

@media (max-width: 767px) {
    .header-top {
        padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.8);
    }

    .header-bottom {
        padding: 0 calc(var(--space-x) * 0.8);
        justify-content: space-between;
    }

    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        padding-top: 5rem;
        box-sizing: border-box;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-link {
        padding: calc(var(--space-y) * 1) calc(var(--space-x) * 0.8);
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
        box-sizing: border-box;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5aa0;
        margin-bottom: 0.5rem;
    }
    .tagline {
        color: #666;
        font-style: italic;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2c5aa0;
        text-decoration: underline;
    }
    .legal-links {
        font-size: 0.85rem;
        color: #777;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .footer-contact address strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-contact a {
        color: #2c5aa0;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2c5aa0;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #777;
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .disclaimer {
        margin-bottom: 0.8rem;
        padding: 0 1rem;
    }
    .copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

.nfform-v11 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .nfform-v11__form {
        max-width: 760px;
        margin: 0 auto;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-lg);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v11 p {
        margin: 0;
        opacity: .85;
    }

    .nfform-v11 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v11 label span {
        opacity: .9;
        font-size: .9rem;
    }

    .nfform-v11 input {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .1);
        color: var(--neutral-0);
        padding: 9px;
        font: inherit;
    }

    .nfform-v11 button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

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

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

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

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

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

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

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

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

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

.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 .touch-header {
        margin-bottom: 12px;
    }

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

    .touch-stream .touch-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);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}

.header-contact {
    display: flex;
    align-items: center;
}

.contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.contact-link:hover {
    background-color: var(--bg-accent-hover);
    color: var(--fg-on-accent);
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-x);
    position: relative;
}

.main-nav {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
}

.nav-list {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.5);
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    margin-left: auto;
    z-index: 1001;
}

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

@media (max-width: 767px) {
    .header-top {
        padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.8);
    }

    .header-bottom {
        padding: 0 calc(var(--space-x) * 0.8);
        justify-content: space-between;
    }

    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        padding-top: 5rem;
        box-sizing: border-box;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-link {
        padding: calc(var(--space-y) * 1) calc(var(--space-x) * 0.8);
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
        box-sizing: border-box;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5aa0;
        margin-bottom: 0.5rem;
    }
    .tagline {
        color: #666;
        font-style: italic;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2c5aa0;
        text-decoration: underline;
    }
    .legal-links {
        font-size: 0.85rem;
        color: #777;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .footer-contact address strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-contact a {
        color: #2c5aa0;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2c5aa0;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #777;
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .disclaimer {
        margin-bottom: 0.8rem;
        padding: 0 1rem;
    }
    .copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

.policy-layout-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);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}

.header-contact {
    display: flex;
    align-items: center;
}

.contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.contact-link:hover {
    background-color: var(--bg-accent-hover);
    color: var(--fg-on-accent);
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-x);
    position: relative;
}

.main-nav {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
}

.nav-list {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.5);
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    margin-left: auto;
    z-index: 1001;
}

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

@media (max-width: 767px) {
    .header-top {
        padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.8);
    }

    .header-bottom {
        padding: 0 calc(var(--space-x) * 0.8);
        justify-content: space-between;
    }

    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        padding-top: 5rem;
        box-sizing: border-box;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-link {
        padding: calc(var(--space-y) * 1) calc(var(--space-x) * 0.8);
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
        box-sizing: border-box;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5aa0;
        margin-bottom: 0.5rem;
    }
    .tagline {
        color: #666;
        font-style: italic;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2c5aa0;
        text-decoration: underline;
    }
    .legal-links {
        font-size: 0.85rem;
        color: #777;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .footer-contact address strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-contact a {
        color: #2c5aa0;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2c5aa0;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #777;
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .disclaimer {
        margin-bottom: 0.8rem;
        padding: 0 1rem;
    }
    .copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

.policy-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .policy-layout-d .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .policy-layout-d .section-head {
        margin-bottom: 14px;
    }

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

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

    .policy-layout-d .timeline {
        border-left: 3px solid var(--brand);
        padding-left: 14px;
        display: grid;
        gap: 12px;
    }

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

    .policy-layout-d .meta {
        margin: 0;
        color: var(--brand);
        font-size: .9rem;
        font-weight: 600;
    }

    .policy-layout-d h3 {
        margin: 7px 0;
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}

.header-contact {
    display: flex;
    align-items: center;
}

.contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.contact-link:hover {
    background-color: var(--bg-accent-hover);
    color: var(--fg-on-accent);
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-x);
    position: relative;
}

.main-nav {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
}

.nav-list {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.5);
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    margin-left: auto;
    z-index: 1001;
}

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

@media (max-width: 767px) {
    .header-top {
        padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.8);
    }

    .header-bottom {
        padding: 0 calc(var(--space-x) * 0.8);
        justify-content: space-between;
    }

    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        padding-top: 5rem;
        box-sizing: border-box;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-link {
        padding: calc(var(--space-y) * 1) calc(var(--space-x) * 0.8);
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
        box-sizing: border-box;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5aa0;
        margin-bottom: 0.5rem;
    }
    .tagline {
        color: #666;
        font-style: italic;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2c5aa0;
        text-decoration: underline;
    }
    .legal-links {
        font-size: 0.85rem;
        color: #777;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .footer-contact address strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-contact a {
        color: #2c5aa0;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2c5aa0;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #777;
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .disclaimer {
        margin-bottom: 0.8rem;
        padding: 0 1rem;
    }
    .copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}

.header-contact {
    display: flex;
    align-items: center;
}

.contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 0.8);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.contact-link:hover {
    background-color: var(--bg-accent-hover);
    color: var(--fg-on-accent);
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-x);
    position: relative;
}

.main-nav {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
}

.nav-list {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.5);
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    margin-left: auto;
    z-index: 1001;
}

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

@media (max-width: 767px) {
    .header-top {
        padding: calc(var(--space-y) * 0.8) calc(var(--space-x) * 0.8);
    }

    .header-bottom {
        padding: 0 calc(var(--space-x) * 0.8);
        justify-content: space-between;
    }

    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        padding-top: 5rem;
        box-sizing: border-box;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-link {
        padding: calc(var(--space-y) * 1) calc(var(--space-x) * 0.8);
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
        box-sizing: border-box;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5aa0;
        margin-bottom: 0.5rem;
    }
    .tagline {
        color: #666;
        font-style: italic;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2c5aa0;
        text-decoration: underline;
    }
    .legal-links {
        font-size: 0.85rem;
        color: #777;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .footer-contact address strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-contact a {
        color: #2c5aa0;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2c5aa0;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #777;
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .disclaimer {
        margin-bottom: 0.8rem;
        padding: 0 1rem;
    }
    .copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .social-links {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

.err-slab-e {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 14px, var(--neutral-0) 14px, var(--neutral-0) 28px);
        color: var(--fg-on-page);
    }

    .err-slab-e .inner {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(26px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

    .err-slab-e a {
        display: inline-block;
        margin-top: 16px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }