:root {
  --font-family: "Inter", sans-serif;
  --font-size-base: 18.1px;
  --line-height-base: 1.38;

  --max-w: 1180px;
  --space-x: 1.3rem;
  --space-y: 1.48rem;
  --gap: 2.24rem;

  --radius-xl: 1.25rem;
  --radius-lg: 1rem;
  --radius-md: 0.67rem;
  --radius-sm: 0.35rem;

  --shadow-sm: 0 1px 7px rgba(0,0,0,0.22);
  --shadow-md: 0 12px 24px rgba(0,0,0,0.29);
  --shadow-lg: 0 34px 64px rgba(0,0,0,0.35);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 230ms;
  --anim-ease: ease;
  --random-number: 1;

  --brand: #0066cc;
  --brand-contrast: #ffffff;
  --accent: #00a8e8;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f7fa;
  --neutral-300: #d1d9e6;
  --neutral-600: #6b7c93;
  --neutral-800: #2c3e50;
  --neutral-900: #1a2530;

  --bg-page: #ffffff;
  --fg-on-page: #1a2530;

  --bg-alt: #f8fafc;
  --fg-on-alt: #2c3e50;

  --surface-1: #ffffff;
  --surface-2: #f5f7fa;
  --fg-on-surface: #1a2530;
  --border-on-surface: #e1e8f0;

  --surface-light: #f8fafc;
  --fg-on-surface-light: #2c3e50;
  --border-on-surface-light: #d1d9e6;

  --bg-primary: #0066cc;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #0055aa;
  --ring: #0066cc;

  --bg-accent: #e6f7ff;
  --fg-on-accent: #003d66;
  --bg-accent-hover: #0099d6;

  --link: #0066cc;
  --link-hover: #0055aa;

  --gradient-hero: linear-gradient(135deg, #0066cc 0%, #00a8e8 100%);
  --gradient-accent: linear-gradient(90deg, #e6f7ff 0%, #f0f9ff 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;}

.header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.btn-cta {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-cta:hover {
    background-color: var(--bg-primary-hover);
}
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: var(--gap);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0 0 0.5rem 0;
        color: #222;
    }
    .footer-tagline {
        color: #666;
        margin: 0;
        font-size: 0.95rem;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #777;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.95rem;
        color: #555;
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        text-decoration: none;
        color: #555;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #888;
        line-height: 1.5;
    }
    .footer-disclaimer p {
        margin: 0;
    }
    #currentYear {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 2rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 2;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
        .footer-contacts {
            order: 1;
        }
        .footer-disclaimer {
            order: 2;
            text-align: right;
            max-width: 60%;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-bottom {
            align-items: flex-start;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-disclaimer {
            text-align: left;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.intro-band {
        padding: clamp(60px, 9vw, 120px) clamp(16px, 3vw, 40px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .intro-band .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .intro-band .eyebrow {
        margin: 0 0 8px;
        opacity: 0.9;
    }

    .intro-band h1 {
        margin: 0 0 10px;
        font-size: clamp(34px, 5.6vw, 60px);
    }

    .intro-band .lead {
        margin: 0 0 16px;
        max-width: 70ch;
        opacity: 0.9;
    }

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

    .intro-band .fact {
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        padding: 12px;
    }

    .intro-band .label {
        margin: 0;
        opacity: 0.85;
    }

    .intro-band .number {
        margin: 6px 0 0;
        font-size: clamp(24px, 4vw, 36px);
        font-weight: 600;
    }

    .intro-band .actions {
        margin-top: 16px;
    }

    .intro-band .actions a {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
    }

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

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

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

.visual-film-c1 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

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

    .visual-film-c1__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .visual-film-c1__head p {
        margin: 0;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
        color: var(--neutral-100);
    }

    .visual-film-c1__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--neutral-0);
    }

    .visual-film-c1__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        gap: var(--gap);
    }

    .visual-film-c1__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);

    }

    .visual-film-c1__media {
        position: relative;
    }

    .visual-film-c1__media img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
    }

    .visual-film-c1__media span {
        position: absolute;
        top: .8rem;
        left: .8rem;
        padding: .35rem .7rem;
        border-radius: 999px;
        background: rgba(0, 0, 0, .28);
        color: var(--neutral-0);
        font-size: .9rem;
    }

    .visual-film-c1__grid figcaption {
        padding: 1rem;
    }

    .visual-film-c1__grid small {
        color: var(--neutral-600);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .05em;
        font-size: .75rem;
    }

    .visual-film-c1__grid h3 {
        margin: .5rem 0 .35rem;
        color: var(--neutral-900);
        font-size: 1.25rem;
    }

    .visual-film-c1__grid p {
        margin: 0;
        color: var(--neutral-800);
        font-size: .9rem;
        line-height: 1.5;
    }

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

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

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

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

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

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

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

    .values-grid-l2__grid i {
        font-style: normal;
        font-size: 1.8rem;
        display: block;
    }

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

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

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

.next-fan-c5 {
        padding: clamp(3.6rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-surface-light);
    }

    .next-fan-c5__wrap {
        max-width: 58rem;
        margin: 0 auto;
        text-align: center;
    }

    .next-fan-c5__banner p {
        margin: 0;
        color: var(--neutral-600);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.9rem;
    }

    .next-fan-c5__banner h2 {
        margin: .5rem 0 0;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
        color: var(--neutral-900);
        line-height: 1.2;
    }

    .next-fan-c5__fan {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-fan-c5__fan a {
        display: block;
        padding: .9rem 1rem;
        min-width: 10rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, .18);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .next-fan-c5__fan a:hover {
        background: var(--bg-primary-hover);
    }

    .next-fan-c5__fan strong {
        display: block;
        font-size: 1rem;
    }

    .next-fan-c5__fan span {
        display: block;
        margin-top: .3rem;
        font-size: 0.85rem;
        opacity: 0.9;
    }

    .next-fan-c5__tail {
        margin-top: 1rem;
        color: var(--neutral-800);
        line-height: var(--line-height-base);
        max-width: 42rem;
        margin-left: auto;
        margin-right: auto;
    }

    .next-fan-c5__wrap > a {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .next-fan-c5__wrap > a:hover {
        background: var(--bg-primary-hover);
    }

.header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.btn-cta {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-cta:hover {
    background-color: var(--bg-primary-hover);
}
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: var(--gap);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0 0 0.5rem 0;
        color: #222;
    }
    .footer-tagline {
        color: #666;
        margin: 0;
        font-size: 0.95rem;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #777;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.95rem;
        color: #555;
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        text-decoration: none;
        color: #555;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #888;
        line-height: 1.5;
    }
    .footer-disclaimer p {
        margin: 0;
    }
    #currentYear {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 2rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 2;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
        .footer-contacts {
            order: 1;
        }
        .footer-disclaimer {
            order: 2;
            text-align: right;
            max-width: 60%;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-bottom {
            align-items: flex-start;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-disclaimer {
            text-align: left;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.project-list {

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

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

    .project-list .project-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .project-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .project-list .project-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .project-list .project-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .project-list .project-list__filter:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        border-color: var(--bg-primary);
    }

    .project-list .project-list__grid {
        display: grid;
        gap: var(--space-x);
    }

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

    @media (min-width: 1024px) {
        .project-list .project-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .project-list .project-list__card {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .project-list .project-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .project-list .project-list__image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .project-list .project-list__content {
        padding: clamp(16px, 2vw, 24px);
    }

    .project-list h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .project-list h3 a {
        color: var(--fg-on-page);
        text-decoration: none;
    }

    .project-list h3 a:hover {
        color: var(--bg-primary);
    }

    .project-list p {
        color: var(--neutral-600);
        margin: 0.5rem 0 1rem;
    }

    .project-list .project-list__tags {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .project-list .project-list__tag {
        padding: 0.25rem 0.75rem;
        border-radius: var(--radius-sm);
        background: var(--bg-page);
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .partners .partners__header {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 72px);
    }

    .partners .partners__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .partners .partners__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__item {
        text-align: center;
        background: var(--bg-page);
        border-radius: var(--radius-lg);
    }

    .partners .partners__logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: clamp(20px, 3vw, 28px);
    }

    .partners .partners__logo img {
        width: 100%;
        border-top-left-radius: var(--radius-lg);
        border-top-right-radius: var(--radius-lg);
    }

    .partners .partners__text {
        padding: var(--space-y)
    }

    .partners .partners__item h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
    }

    .partners .partners__item p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

.header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.btn-cta {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-cta:hover {
    background-color: var(--bg-primary-hover);
}
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: var(--gap);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0 0 0.5rem 0;
        color: #222;
    }
    .footer-tagline {
        color: #666;
        margin: 0;
        font-size: 0.95rem;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #777;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.95rem;
        color: #555;
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        text-decoration: none;
        color: #555;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #888;
        line-height: 1.5;
    }
    .footer-disclaimer p {
        margin: 0;
    }
    #currentYear {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 2rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 2;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
        .footer-contacts {
            order: 1;
        }
        .footer-disclaimer {
            order: 2;
            text-align: right;
            max-width: 60%;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-bottom {
            align-items: flex-start;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-disclaimer {
            text-align: left;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.project-item {

        color: var(--fg-on-primary);
        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-primary);
    }

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

        /* Si randomNumber es par (2) - el primer hijo obtiene 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-primary);
    }

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

    }

.index-feedback-accordion {
        background: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.75), transparent 60%),
        var(--gradient-hero);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

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

        transform: translateY(-18px);
    }

    .index-feedback-accordion__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-feedback-accordion__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-feedback-accordion__list {
        display: grid;
        gap: 12px;
    }

    .index-feedback-accordion__row {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(248, 225, 231, 0.95);
        background: rgba(58, 46, 61, 0.92);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-feedback-accordion__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--bg-page);
        font: inherit;
    }

    .index-feedback-accordion__left {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-feedback-accordion__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-accordion__name {
        font-weight: 800;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-accordion__meta {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-accordion__right {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .index-feedback-accordion__stars {
        color: var(--brand);
        letter-spacing: 0.08em;
        font-size: 13px;
        line-height: 1;
    }

    .index-feedback-accordion__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--bg-page);
    }

    .index-feedback-accordion__a {
        display: none;
        padding: 0 16px 14px;
        color: rgba(255, 255, 255, 0.85);
        overflow: hidden;
    }

    .index-feedback-accordion__quote {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback-accordion__badge {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.78);
    }

.header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.btn-cta {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-cta:hover {
    background-color: var(--bg-primary-hover);
}
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: var(--gap);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0 0 0.5rem 0;
        color: #222;
    }
    .footer-tagline {
        color: #666;
        margin: 0;
        font-size: 0.95rem;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #777;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.95rem;
        color: #555;
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        text-decoration: none;
        color: #555;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #888;
        line-height: 1.5;
    }
    .footer-disclaimer p {
        margin: 0;
    }
    #currentYear {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 2rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 2;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
        .footer-contacts {
            order: 1;
        }
        .footer-disclaimer {
            order: 2;
            text-align: right;
            max-width: 60%;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-bottom {
            align-items: flex-start;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-disclaimer {
            text-align: left;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.project-item {

        color: var(--fg-on-primary);
        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-primary);
    }

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

        /* Si randomNumber es par (2) - el primer hijo obtiene 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-primary);
    }

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

    }

.header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.btn-cta {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-cta:hover {
    background-color: var(--bg-primary-hover);
}
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: var(--gap);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0 0 0.5rem 0;
        color: #222;
    }
    .footer-tagline {
        color: #666;
        margin: 0;
        font-size: 0.95rem;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #777;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.95rem;
        color: #555;
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        text-decoration: none;
        color: #555;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #888;
        line-height: 1.5;
    }
    .footer-disclaimer p {
        margin: 0;
    }
    #currentYear {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 2rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 2;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
        .footer-contacts {
            order: 1;
        }
        .footer-disclaimer {
            order: 2;
            text-align: right;
            max-width: 60%;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-bottom {
            align-items: flex-start;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-disclaimer {
            text-align: left;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

.project-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,32px);
}

.project-item__meta {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.project-item__desc {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-700);
    line-height: 1.7;
}

.index-feedback-accordion {
        background: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.75), transparent 60%),
        var(--gradient-hero);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

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

        transform: translateY(-18px);
    }

    .index-feedback-accordion__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-feedback-accordion__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-feedback-accordion__list {
        display: grid;
        gap: 12px;
    }

    .index-feedback-accordion__row {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(248, 225, 231, 0.95);
        background: rgba(58, 46, 61, 0.92);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-feedback-accordion__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--bg-page);
        font: inherit;
    }

    .index-feedback-accordion__left {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-feedback-accordion__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-accordion__name {
        font-weight: 800;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-accordion__meta {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-accordion__right {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .index-feedback-accordion__stars {
        color: var(--brand);
        letter-spacing: 0.08em;
        font-size: 13px;
        line-height: 1;
    }

    .index-feedback-accordion__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--bg-page);
    }

    .index-feedback-accordion__a {
        display: none;
        padding: 0 16px 14px;
        color: rgba(255, 255, 255, 0.85);
        overflow: hidden;
    }

    .index-feedback-accordion__quote {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback-accordion__badge {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.78);
    }

.header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.btn-cta {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-cta:hover {
    background-color: var(--bg-primary-hover);
}
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: var(--gap);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0 0 0.5rem 0;
        color: #222;
    }
    .footer-tagline {
        color: #666;
        margin: 0;
        font-size: 0.95rem;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #777;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.95rem;
        color: #555;
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        text-decoration: none;
        color: #555;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #888;
        line-height: 1.5;
    }
    .footer-disclaimer p {
        margin: 0;
    }
    #currentYear {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 2rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 2;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
        .footer-contacts {
            order: 1;
        }
        .footer-disclaimer {
            order: 2;
            text-align: right;
            max-width: 60%;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-bottom {
            align-items: flex-start;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-disclaimer {
            text-align: left;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.identity-cv1 {
        padding: clamp(56px, 8vw, 104px) clamp(16px, 4vw, 40px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .identity-cv1__head {
        text-align: center;
        margin-bottom: 18px;
    }

    .identity-cv1__head p {
        margin: 0;
        opacity: .9;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .identity-cv1__head h2 {
        margin: 8px 0;
        font-size: clamp(30px, 5vw, 52px);
    }

    .identity-cv1__head span {
        display: block;
        max-width: 74ch;
        margin: 0 auto;
        opacity: .92;
    }

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

    .identity-cv1__grid article {
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
    }

    .identity-cv1__icon {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .identity-cv1__grid h3 {
        margin: 0;
    }

    .identity-cv1__grid p {
        margin: 7px 0;
        opacity: .92;
    }

    .identity-cv1__grid small {
        opacity: .9;
    }

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

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

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

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

    .story-stream-l7__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

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

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

    .story-stream-l7__content strong {
        display: block;
        margin-top: .75rem;
    }

    .story-stream-l7__copy {
        margin: .75rem 0 0;
        color: var(--neutral-600);
    }

    .story-stream-l7__content a {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

.header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.btn-cta {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-cta:hover {
    background-color: var(--bg-primary-hover);
}
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: var(--gap);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0 0 0.5rem 0;
        color: #222;
    }
    .footer-tagline {
        color: #666;
        margin: 0;
        font-size: 0.95rem;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #777;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.95rem;
        color: #555;
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        text-decoration: none;
        color: #555;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #888;
        line-height: 1.5;
    }
    .footer-disclaimer p {
        margin: 0;
    }
    #currentYear {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 2rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 2;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
        .footer-contacts {
            order: 1;
        }
        .footer-disclaimer {
            order: 2;
            text-align: right;
            max-width: 60%;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-bottom {
            align-items: flex-start;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-disclaimer {
            text-align: left;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .form-layout-c .steps {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
    }

    .form-layout-c .row {
        display: grid;
        gap: 10px;
    }

    .form-layout-c .row.two {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .form-layout-c .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 2px;
    }

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

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

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

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

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

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

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

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

.header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.btn-cta {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-cta:hover {
    background-color: var(--bg-primary-hover);
}
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: var(--gap);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0 0 0.5rem 0;
        color: #222;
    }
    .footer-tagline {
        color: #666;
        margin: 0;
        font-size: 0.95rem;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #777;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.95rem;
        color: #555;
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        text-decoration: none;
        color: #555;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #888;
        line-height: 1.5;
    }
    .footer-disclaimer p {
        margin: 0;
    }
    #currentYear {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 2rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 2;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
        .footer-contacts {
            order: 1;
        }
        .footer-disclaimer {
            order: 2;
            text-align: right;
            max-width: 60%;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-bottom {
            align-items: flex-start;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-disclaimer {
            text-align: left;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

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

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

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

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

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

.header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.btn-cta {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-cta:hover {
    background-color: var(--bg-primary-hover);
}
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: var(--gap);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0 0 0.5rem 0;
        color: #222;
    }
    .footer-tagline {
        color: #666;
        margin: 0;
        font-size: 0.95rem;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #777;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.95rem;
        color: #555;
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        text-decoration: none;
        color: #555;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #888;
        line-height: 1.5;
    }
    .footer-disclaimer p {
        margin: 0;
    }
    #currentYear {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 2rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 2;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
        .footer-contacts {
            order: 1;
        }
        .footer-disclaimer {
            order: 2;
            text-align: right;
            max-width: 60%;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-bottom {
            align-items: flex-start;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-disclaimer {
            text-align: left;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

.header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.btn-cta {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-cta:hover {
    background-color: var(--bg-primary-hover);
}
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: var(--gap);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0 0 0.5rem 0;
        color: #222;
    }
    .footer-tagline {
        color: #666;
        margin: 0;
        font-size: 0.95rem;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #777;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.95rem;
        color: #555;
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        text-decoration: none;
        color: #555;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #888;
        line-height: 1.5;
    }
    .footer-disclaimer p {
        margin: 0;
    }
    #currentYear {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 2rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 2;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
        .footer-contacts {
            order: 1;
        }
        .footer-disclaimer {
            order: 2;
            text-align: right;
            max-width: 60%;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-bottom {
            align-items: flex-start;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-disclaimer {
            text-align: left;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

.header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.btn-cta {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-cta:hover {
    background-color: var(--bg-primary-hover);
}
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: var(--gap);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        overflow-y: auto;
    }
    .nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-y);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem 1.5rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0 0 0.5rem 0;
        color: #222;
    }
    .footer-tagline {
        color: #666;
        margin: 0;
        font-size: 0.95rem;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #777;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.95rem;
        color: #555;
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        text-decoration: none;
        color: #555;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #888;
        line-height: 1.5;
    }
    .footer-disclaimer p {
        margin: 0;
    }
    #currentYear {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 2rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 2;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
        .footer-contacts {
            order: 1;
        }
        .footer-disclaimer {
            order: 2;
            text-align: right;
            max-width: 60%;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-bottom {
            align-items: flex-start;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-disclaimer {
            text-align: left;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.err-slab-c {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: linear-gradient(180deg, var(--bg-accent), var(--bg-page));
        color: var(--fg-on-page);
    }

    .err-slab-c .tile {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 44px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        border-top: 8px solid var(--accent);
    }

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

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

    .err-slab-c a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: 999px;
        border: 1px solid var(--neutral-300);
        color: var(--fg-on-page);
        text-decoration: none;
    }