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

  --max-w: 1080px;
  --space-x: 0.52rem;
  --space-y: 0.61rem;
  --gap: 0.45rem;

  --radius-xl: 0.94rem;
  --radius-lg: 0.49rem;
  --radius-md: 0.3rem;
  --radius-sm: 0.17rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 10px rgba(0,0,0,0.09);
  --shadow-lg: 0 6px 16px rgba(0,0,0,0.11);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 130ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 1;

  --brand: #0057b8;
  --brand-contrast: #ffffff;
  --accent: #00a8e8;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f7fa;
  --neutral-300: #d1d9e6;
  --neutral-600: #6c7a95;
  --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: #2c3e50;
  --border-on-surface: #e1e8f0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #1a2530;
  --border-on-surface-light: #d1d9e6;

  --bg-primary: #0057b8;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #004a9c;
  --ring: #0057b8;

  --bg-accent: #e6f7ff;
  --fg-on-accent: #003366;
  --bg-accent-hover: #0091cc;

  --link: #0057b8;
  --link-hover: #004a9c;

  --gradient-hero: linear-gradient(135deg, #0057b8 0%, #003d82 100%);
  --gradient-accent: linear-gradient(90deg, #00a8e8 0%, #0088c2 100%);

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

.site-header {
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
    flex: 1;
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: var(--line-height-base);
}
.contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
}
.contact-phone {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
}
.contact-phone:hover {
    color: var(--link-hover);
}
.cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background: var(--bg-primary-hover);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}
.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
    }
    .burger-menu {
        display: flex;
        order: 1;
    }
    .header-left {
        order: 3;
        flex-basis: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none;
    }
    .header-left.active {
        display: flex;
        padding-top: var(--space-y);
    }
    .main-nav {
        width: 100%;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        display: block;
        width: 100%;
    }
    .header-right {
        order: 2;
        flex: 1;
        justify-content: flex-end;
    }
    .contact-info {
        display: none;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f7f4;
        color: #333;
        padding: 3rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #eae2d9;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 2rem;
        font-weight: bold;
        color: #8a6d8c;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #666;
        max-width: 280px;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #8a6d8c;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
    }
    .footer-nav h3,
    .contact-block h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #555;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a,
    .legal-links a {
        color: #333;
        text-decoration: none;
    }
    .footer-nav a:hover,
    .legal-links a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        line-height: 1.5;
        font-style: normal;
    }
    .contact-block a {
        color: #333;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .disclaimer {
        margin-top: auto;
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        border-top: 1px solid #eae2d9;
        padding-top: 1rem;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            gap: 1.25rem;
        }
        .disclaimer {
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .visual-wave-c5__head {
        text-align: center;
        margin-bottom: 1rem;
    }

    .visual-wave-c5__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

    .visual-wave-c5__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

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

    .visual-wave-c5__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .visual-wave-c5__image {
        overflow: hidden;
    }

    .visual-wave-c5__image img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .visual-wave-c5__grid figure:hover img {
        transform: scale(1.05);
    }

    .visual-wave-c5__grid figcaption {
        padding: 1rem;
    }

    .visual-wave-c5__grid small {
        color: rgba(255, 255, 255, .76);
    }

    .visual-wave-c5__grid h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-wave-c5__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .84);
    }

.why-choose-light {

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

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

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

        transform: translateY(20px);
    }

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

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

    .why-choose-light .why-choose-light__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose-light .why-choose-light__item {
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        transition: box-shadow var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose-light .why-choose-light__item:hover {
        box-shadow: var(--shadow-md);
    }

    .why-choose-light .why-choose-light__icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

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

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

.site-header {
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
    flex: 1;
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: var(--line-height-base);
}
.contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
}
.contact-phone {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
}
.contact-phone:hover {
    color: var(--link-hover);
}
.cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background: var(--bg-primary-hover);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}
.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
    }
    .burger-menu {
        display: flex;
        order: 1;
    }
    .header-left {
        order: 3;
        flex-basis: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none;
    }
    .header-left.active {
        display: flex;
        padding-top: var(--space-y);
    }
    .main-nav {
        width: 100%;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        display: block;
        width: 100%;
    }
    .header-right {
        order: 2;
        flex: 1;
        justify-content: flex-end;
    }
    .contact-info {
        display: none;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f7f4;
        color: #333;
        padding: 3rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #eae2d9;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 2rem;
        font-weight: bold;
        color: #8a6d8c;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #666;
        max-width: 280px;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #8a6d8c;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
    }
    .footer-nav h3,
    .contact-block h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #555;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a,
    .legal-links a {
        color: #333;
        text-decoration: none;
    }
    .footer-nav a:hover,
    .legal-links a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        line-height: 1.5;
        font-style: normal;
    }
    .contact-block a {
        color: #333;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .disclaimer {
        margin-top: auto;
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        border-top: 1px solid #eae2d9;
        padding-top: 1rem;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            gap: 1.25rem;
        }
        .disclaimer {
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

.product-list__inner {
    max-width: 640px;
    margin: 0 auto;
}

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

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

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

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

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

.product-list__row-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bg-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
    flex: 1;
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: var(--line-height-base);
}
.contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
}
.contact-phone {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
}
.contact-phone:hover {
    color: var(--link-hover);
}
.cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background: var(--bg-primary-hover);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}
.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
    }
    .burger-menu {
        display: flex;
        order: 1;
    }
    .header-left {
        order: 3;
        flex-basis: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none;
    }
    .header-left.active {
        display: flex;
        padding-top: var(--space-y);
    }
    .main-nav {
        width: 100%;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        display: block;
        width: 100%;
    }
    .header-right {
        order: 2;
        flex: 1;
        justify-content: flex-end;
    }
    .contact-info {
        display: none;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f7f4;
        color: #333;
        padding: 3rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #eae2d9;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 2rem;
        font-weight: bold;
        color: #8a6d8c;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #666;
        max-width: 280px;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #8a6d8c;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
    }
    .footer-nav h3,
    .contact-block h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #555;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a,
    .legal-links a {
        color: #333;
        text-decoration: none;
    }
    .footer-nav a:hover,
    .legal-links a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        line-height: 1.5;
        font-style: normal;
    }
    .contact-block a {
        color: #333;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .disclaimer {
        margin-top: auto;
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        border-top: 1px solid #eae2d9;
        padding-top: 1rem;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            gap: 1.25rem;
        }
        .disclaimer {
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

.product-item--colored-v5 {
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.product-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.75);
    box-shadow: var(--shadow-lg);
}

.product-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 8px;
}

.product-item__header h1 {
    margin: 0;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

.product-item__price {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
}

.product-item__desc {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--neutral-300);
}

.product-item__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.product-item__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--fg-on-accent);
}

.product-item__sku {
    opacity: 0.9;
}

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

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

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

    .nfsocial-v12 p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .nfsocial-v12__badges span {
        display: inline-flex;
        align-items: center;
        padding: 7px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, .06);
        font-weight: 700;
    }

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

    .nfsocial-v12__logos article {
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        min-height: 96px;
        display: grid;
        place-items: center;
        gap: 6px;
        padding: 10px;
    }

    .nfsocial-v12__logos img {
        max-width: 80%;
        max-height: 42px;
    }

    .nfsocial-v12__logos strong {
        font-size: .9rem;
        color: var(--neutral-700, var(--neutral-600));
    }

.site-header {
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
    flex: 1;
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: var(--line-height-base);
}
.contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
}
.contact-phone {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
}
.contact-phone:hover {
    color: var(--link-hover);
}
.cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background: var(--bg-primary-hover);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}
.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
    }
    .burger-menu {
        display: flex;
        order: 1;
    }
    .header-left {
        order: 3;
        flex-basis: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none;
    }
    .header-left.active {
        display: flex;
        padding-top: var(--space-y);
    }
    .main-nav {
        width: 100%;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        display: block;
        width: 100%;
    }
    .header-right {
        order: 2;
        flex: 1;
        justify-content: flex-end;
    }
    .contact-info {
        display: none;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f7f4;
        color: #333;
        padding: 3rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #eae2d9;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 2rem;
        font-weight: bold;
        color: #8a6d8c;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #666;
        max-width: 280px;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #8a6d8c;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
    }
    .footer-nav h3,
    .contact-block h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #555;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a,
    .legal-links a {
        color: #333;
        text-decoration: none;
    }
    .footer-nav a:hover,
    .legal-links a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        line-height: 1.5;
        font-style: normal;
    }
    .contact-block a {
        color: #333;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .disclaimer {
        margin-top: auto;
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        border-top: 1px solid #eae2d9;
        padding-top: 1rem;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            gap: 1.25rem;
        }
        .disclaimer {
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

.product-item--colored-v5 {
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.product-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.75);
    box-shadow: var(--shadow-lg);
}

.product-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 8px;
}

.product-item__header h1 {
    margin: 0;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

.product-item__price {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
}

.product-item__desc {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--neutral-300);
}

.product-item__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.product-item__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--fg-on-accent);
}

.product-item__sku {
    opacity: 0.9;
}

.site-header {
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
    flex: 1;
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: var(--line-height-base);
}
.contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
}
.contact-phone {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
}
.contact-phone:hover {
    color: var(--link-hover);
}
.cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background: var(--bg-primary-hover);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}
.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
    }
    .burger-menu {
        display: flex;
        order: 1;
    }
    .header-left {
        order: 3;
        flex-basis: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none;
    }
    .header-left.active {
        display: flex;
        padding-top: var(--space-y);
    }
    .main-nav {
        width: 100%;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        display: block;
        width: 100%;
    }
    .header-right {
        order: 2;
        flex: 1;
        justify-content: flex-end;
    }
    .contact-info {
        display: none;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f7f4;
        color: #333;
        padding: 3rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #eae2d9;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 2rem;
        font-weight: bold;
        color: #8a6d8c;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #666;
        max-width: 280px;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #8a6d8c;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
    }
    .footer-nav h3,
    .contact-block h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #555;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a,
    .legal-links a {
        color: #333;
        text-decoration: none;
    }
    .footer-nav a:hover,
    .legal-links a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        line-height: 1.5;
        font-style: normal;
    }
    .contact-block a {
        color: #333;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .disclaimer {
        margin-top: auto;
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        border-top: 1px solid #eae2d9;
        padding-top: 1rem;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            gap: 1.25rem;
        }
        .disclaimer {
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

.product-item__inner {
    max-width: 640px;
    margin: 0 auto;
}

.product-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(22px,3.5vw,28px);
}

.product-item__price {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-primary);
}

.product-item__desc {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-600);
}

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

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

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

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

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

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

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

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

    .story-edge-c5__content p {

    }

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

.site-header {
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
    flex: 1;
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: var(--line-height-base);
}
.contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
}
.contact-phone {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
}
.contact-phone:hover {
    color: var(--link-hover);
}
.cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background: var(--bg-primary-hover);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}
.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
    }
    .burger-menu {
        display: flex;
        order: 1;
    }
    .header-left {
        order: 3;
        flex-basis: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none;
    }
    .header-left.active {
        display: flex;
        padding-top: var(--space-y);
    }
    .main-nav {
        width: 100%;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        display: block;
        width: 100%;
    }
    .header-right {
        order: 2;
        flex: 1;
        justify-content: flex-end;
    }
    .contact-info {
        display: none;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f7f4;
        color: #333;
        padding: 3rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #eae2d9;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 2rem;
        font-weight: bold;
        color: #8a6d8c;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #666;
        max-width: 280px;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #8a6d8c;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
    }
    .footer-nav h3,
    .contact-block h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #555;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a,
    .legal-links a {
        color: #333;
        text-decoration: none;
    }
    .footer-nav a:hover,
    .legal-links a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        line-height: 1.5;
        font-style: normal;
    }
    .contact-block a {
        color: #333;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .disclaimer {
        margin-top: auto;
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        border-top: 1px solid #eae2d9;
        padding-top: 1rem;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            gap: 1.25rem;
        }
        .disclaimer {
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .faq-layout-c .section-head {
        margin-bottom: 16px;
    }

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

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

    .faq-layout-c .faq-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
        counter-reset: faq;
    }

    .faq-layout-c .row {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .faq-layout-c .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        cursor: pointer;
    }

    .faq-layout-c .q span {
        display: inline-block;
        min-width: 50px;
        color: var(--brand);
        font-weight: 700;
    }

    .faq-layout-c .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-c .a p {
        margin: 0;
        padding: 0 12px 12px;
        color: var(--neutral-600);
    }

    .faq-layout-c .row.open .a {
        max-height: 240px;
    }

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

    .form-layout-b .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .form-layout-b .section-head {
        margin-bottom: 16px;
    }

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

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

    .form-layout-b .split {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 16px;
    }

    .form-layout-b aside {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: 16px;
    }

    .form-layout-b aside h3 {
        margin: 0;
    }

    .form-layout-b aside p {
        margin: 10px 0 0;
        opacity: .92;
    }

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

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

    .form-layout-b input, .form-layout-b textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

    .form-layout-b button {
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 10px 14px;
    }

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

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

    .nfcontacts-v11__shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
    }

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

    .nfcontacts-v11__head p {
        margin: 8px 0 0;
        opacity: .85;
    }

    .nfcontacts-v11__stack {
        display: grid;
        gap: 8px;
    }

    .nfcontacts-v11 details {
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .2);
        padding: 10px 12px;
    }

    .nfcontacts-v11 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .nfcontacts-v11 details div {
        margin-top: 8px;
        display: grid;
        gap: 6px;
    }

    .nfcontacts-v11 details p {
        margin: 0;
    }

    .nfcontacts-v11 details a {
        color: var(--neutral-0);
        text-decoration: underline;
    }

.site-header {
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
    flex: 1;
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: var(--line-height-base);
}
.contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
}
.contact-phone {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
}
.contact-phone:hover {
    color: var(--link-hover);
}
.cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background: var(--bg-primary-hover);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}
.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
    }
    .burger-menu {
        display: flex;
        order: 1;
    }
    .header-left {
        order: 3;
        flex-basis: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none;
    }
    .header-left.active {
        display: flex;
        padding-top: var(--space-y);
    }
    .main-nav {
        width: 100%;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        display: block;
        width: 100%;
    }
    .header-right {
        order: 2;
        flex: 1;
        justify-content: flex-end;
    }
    .contact-info {
        display: none;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f7f4;
        color: #333;
        padding: 3rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #eae2d9;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 2rem;
        font-weight: bold;
        color: #8a6d8c;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #666;
        max-width: 280px;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #8a6d8c;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
    }
    .footer-nav h3,
    .contact-block h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #555;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a,
    .legal-links a {
        color: #333;
        text-decoration: none;
    }
    .footer-nav a:hover,
    .legal-links a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        line-height: 1.5;
        font-style: normal;
    }
    .contact-block a {
        color: #333;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .disclaimer {
        margin-top: auto;
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        border-top: 1px solid #eae2d9;
        padding-top: 1rem;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            gap: 1.25rem;
        }
        .disclaimer {
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
    flex: 1;
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: var(--line-height-base);
}
.contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
}
.contact-phone {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
}
.contact-phone:hover {
    color: var(--link-hover);
}
.cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background: var(--bg-primary-hover);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}
.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
    }
    .burger-menu {
        display: flex;
        order: 1;
    }
    .header-left {
        order: 3;
        flex-basis: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none;
    }
    .header-left.active {
        display: flex;
        padding-top: var(--space-y);
    }
    .main-nav {
        width: 100%;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        display: block;
        width: 100%;
    }
    .header-right {
        order: 2;
        flex: 1;
        justify-content: flex-end;
    }
    .contact-info {
        display: none;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f7f4;
        color: #333;
        padding: 3rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #eae2d9;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 2rem;
        font-weight: bold;
        color: #8a6d8c;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #666;
        max-width: 280px;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #8a6d8c;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
    }
    .footer-nav h3,
    .contact-block h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #555;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a,
    .legal-links a {
        color: #333;
        text-decoration: none;
    }
    .footer-nav a:hover,
    .legal-links a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        line-height: 1.5;
        font-style: normal;
    }
    .contact-block a {
        color: #333;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .disclaimer {
        margin-top: auto;
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        border-top: 1px solid #eae2d9;
        padding-top: 1rem;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            gap: 1.25rem;
        }
        .disclaimer {
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
    flex: 1;
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: var(--line-height-base);
}
.contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
}
.contact-phone {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
}
.contact-phone:hover {
    color: var(--link-hover);
}
.cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background: var(--bg-primary-hover);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}
.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
    }
    .burger-menu {
        display: flex;
        order: 1;
    }
    .header-left {
        order: 3;
        flex-basis: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none;
    }
    .header-left.active {
        display: flex;
        padding-top: var(--space-y);
    }
    .main-nav {
        width: 100%;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        display: block;
        width: 100%;
    }
    .header-right {
        order: 2;
        flex: 1;
        justify-content: flex-end;
    }
    .contact-info {
        display: none;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f7f4;
        color: #333;
        padding: 3rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #eae2d9;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 2rem;
        font-weight: bold;
        color: #8a6d8c;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #666;
        max-width: 280px;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #8a6d8c;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
    }
    .footer-nav h3,
    .contact-block h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #555;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a,
    .legal-links a {
        color: #333;
        text-decoration: none;
    }
    .footer-nav a:hover,
    .legal-links a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        line-height: 1.5;
        font-style: normal;
    }
    .contact-block a {
        color: #333;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .disclaimer {
        margin-top: auto;
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        border-top: 1px solid #eae2d9;
        padding-top: 1rem;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            gap: 1.25rem;
        }
        .disclaimer {
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

    .thank-mode-d .core {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .24);
    }

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

    .thank-mode-d p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .thank-mode-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        background: var(--accent);
        color: var(--accent-contrast);
    }

.site-header {
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
    flex: 1;
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
}
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: var(--line-height-base);
}
.contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
}
.contact-phone {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
}
.contact-phone:hover {
    color: var(--link-hover);
}
.cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background: var(--bg-primary-hover);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}
.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
    }
    .burger-menu {
        display: flex;
        order: 1;
    }
    .header-left {
        order: 3;
        flex-basis: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none;
    }
    .header-left.active {
        display: flex;
        padding-top: var(--space-y);
    }
    .main-nav {
        width: 100%;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        display: block;
        width: 100%;
    }
    .header-right {
        order: 2;
        flex: 1;
        justify-content: flex-end;
    }
    .contact-info {
        display: none;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f9f7f4;
        color: #333;
        padding: 3rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #eae2d9;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        font-size: 2rem;
        font-weight: bold;
        color: #8a6d8c;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.5;
        color: #666;
        max-width: 280px;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #8a6d8c;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
    }
    .footer-nav h3,
    .contact-block h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #555;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a,
    .legal-links a {
        color: #333;
        text-decoration: none;
    }
    .footer-nav a:hover,
    .legal-links a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        line-height: 1.5;
        font-style: normal;
    }
    .contact-block a {
        color: #333;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
        color: #8a6d8c;
    }
    .disclaimer {
        margin-top: auto;
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        border-top: 1px solid #eae2d9;
        padding-top: 1rem;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            gap: 1.25rem;
        }
        .disclaimer {
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

.nf404-v9 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .nf404-v9__card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .26);
        background: rgba(255, 255, 255, .08);
        padding: clamp(28px, 4vw, 46px);
    }

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

    .nf404-v9 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nf404-v9 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        color: var(--accent-contrast);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .45);
    }