:root {
  --font-family: "DM Sans", sans-serif;
  --font-size-base: 15px;
  --line-height-base: 1.53;

  --max-w: 1080px;
  --space-x: 1.15rem;
  --space-y: 1.26rem;
  --gap: 1.04rem;

  --radius-xl: 1.03rem;
  --radius-lg: 0.73rem;
  --radius-md: 0.45rem;
  --radius-sm: 0.29rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 16px rgba(0,0,0,0.09);
  --shadow-lg: 0 20px 30px rgba(0,0,0,0.11);

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

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

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F9FA;
  --neutral-300: #DEE2E6;
  --neutral-600: #6C757D;
  --neutral-800: #343A40;
  --neutral-900: #212529;

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

  --bg-alt: #F8F9FA;
  --fg-on-alt: #343A40;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #212529;
  --border-on-surface: #DEE2E6;

  --surface-light: rgba(255, 255, 255, 0.85);
  --fg-on-surface-light: #212529;
  --border-on-surface-light: rgba(222, 226, 230, 0.7);

  --bg-primary: #0056A3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #003F7A;
  --ring: rgba(0, 86, 163, 0.4);

  --bg-accent: rgba(230, 57, 70, 0.1);
  --fg-on-accent: #E63946;
  --bg-accent-hover: #C1121F;

  --link: #0056A3;
  --link-hover: #003F7A;

  --gradient-hero: linear-gradient(135deg, #0056A3 0%, #003F7A 100%);
  --gradient-accent: linear-gradient(135deg, #E63946 0%, #C1121F 100%);

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

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
    background-color: var(--bg-page);
}
.header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-on-surface-light);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 800;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    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);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 3) var(--space-x);
        gap: calc(var(--gap) * 3);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
    }
    .nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        margin-bottom: 1.5rem;
        font-style: italic;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .footer-disclaimer {
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    .footer-disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

.intro-focus-alt {

        background: var(--fg-on-primary);
        color: var(--bg-primary);
        padding: clamp(60px, 10vw, 120px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .intro-focus-alt::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: var(--accent);
        border-radius: 50%;
        opacity: 0.1;
        filter: blur(80px);
        animation: pulseGlow 4s ease-in-out infinite;
    }

    @keyframes pulseGlow {
        0%, 100% {
            transform: scale(1);
            opacity: 0.1;
        }
        50% {
            transform: scale(1.2);
            opacity: 0.15;
        }
    }

    .intro-focus-alt .intro-focus-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .intro-focus-alt .intro-focus-alt__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(32px, 5vw, 64px);
        align-items: center;
    }

    @media (min-width: 768px) {
        .intro-focus-alt .intro-focus-alt__grid {
            grid-template-columns: 1.2fr 1fr;
        }
    }

    .intro-focus-alt .intro-focus-alt__visual {
        order: var(--random-number);
    }

    .intro-focus-alt .intro-focus-alt__title {
        font-size: clamp(32px, 6vw, 56px);
        font-weight: 800;
        margin: 0 0 1.5rem;
        line-height: 1.1;
        position: relative;
    }

    .intro-focus-alt .intro-focus-alt__title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 80px;
        height: 4px;
        background: var(--accent);
        border-radius: var(--radius-sm);
        animation: expandLine 1s ease-out 0.8s forwards;
        transform: scaleX(0);
        transform-origin: left;
    }

    @keyframes expandLine {
        to {
            transform: scaleX(1);
        }
    }

    .intro-focus-alt .intro-focus-alt__description {
        font-size: clamp(16px, 2vw, 20px);
        margin: 2rem 0 0;
        opacity: 0.9;
        line-height: var(--line-height-base);
    }

    .intro-focus-alt .intro-focus-alt__card {
        background: var(--brand-contrast);
        padding: clamp(32px, 4vw, 48px);
        border-radius: var(--radius-xl);
        text-align: center;
        box-shadow: var(--shadow-lg);
        position: relative;
        overflow: hidden;
    }

    .intro-focus-alt .intro-focus-alt__card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
        to {
            left: 100%;
        }
    }

    .intro-focus-alt .intro-focus-alt__icon {
        color: var(--fg-on-surface-light);
        font-size: clamp(48px, 6vw, 64px);
        margin-bottom: 1rem;
    }

    .intro-focus-alt .intro-focus-alt__fact {
        font-size: clamp(40px, 6vw, 56px);
        font-weight: 900;
        color: var(--brand);
        margin-bottom: 0.5rem;
        line-height: 1;
    }

    .intro-focus-alt .intro-focus-alt__caption {
        font-size: clamp(14px, 1.5vw, 18px);
        color: var(--neutral-600);
        font-weight: 600;
    }

.next-c-1 {
        padding: clamp(3.3rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .next-c-1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-c-1__mast {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1.1rem;
    }

    .next-c-1__mast p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__mast h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-c-1__mast a {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

    .next-c-1__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .next-c-1__list i {
        font-style: normal;
        display: inline-flex;
        width: 2.3rem;
        height: 2.3rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
    }

    .next-c-1__list h3 {
        margin: .8rem 0 .35rem;
        font-size: 1.04rem;
    }

    .next-c-1__list p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__list a {
        display: inline-block;
        margin-top: .75rem;
        color: var(--bg-accent);
        text-decoration: none;
        font-weight: 600;
    }

    /* macro-bg:next-c-1__wrap */
    .next-c-1 {
        overflow: hidden;
    }

    .next-c-1__wrap {
        background-image: linear-gradient(rgba(17, 24, 39, .28), rgba(17, 24, 39, .28)), url('https://images.pexels.com/photos/2280571/pexels-photo-2280571.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
    }

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

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

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

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

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

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

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

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

    .values-cloud-c5__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .values-cloud-c5__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

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

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

    .values-cloud-c5__cloud {
        display: flex;
        gap: .8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .values-cloud-c5__cloud article {
        width: min(16rem, 100%);
        padding: 1rem;
        border-radius: 1.5rem;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-cloud-c5__cloud p {
        margin: .45rem 0 0;

    }

    .values-cloud-c5__cloud span {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
    background-color: var(--bg-page);
}
.header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-on-surface-light);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 800;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    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);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 3) var(--space-x);
        gap: calc(var(--gap) * 3);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
    }
    .nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        margin-bottom: 1.5rem;
        font-style: italic;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .footer-disclaimer {
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    .footer-disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

.product-list {

        color: var(--fg-on-page);
        background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-page) 40%);
        padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 40px);
    }

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

    .product-list .product-list__header-wrapper {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: clamp(24px, 4vw, 48px);
        align-items: start;
        margin-bottom: clamp(32px, 5vw, 56px);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .product-list .product-list__header-wrapper > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 1023px) {
        .product-list .product-list__header-wrapper {
            grid-template-columns: 1fr;
        }
    }

    .product-list .product-list__h {
        text-align: left;
    }

    .product-list h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
        font-weight: 700;
        line-height: 1.1;
    }

    .product-list .product-list__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
        line-height: 1.6;
    }

    .product-list .product-list__filters {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        min-width: 200px;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .product-list .product-list__filters > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 1023px) {
        .product-list .product-list__filters {
            flex-direction: row;
            flex-wrap: wrap;
            min-width: auto;
        }
    }

    .product-list .product-list__filter {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 500;
        text-align: left;
    }

    @media (max-width: 1023px) {
        .product-list .product-list__filter {
            text-align: center;
        }
    }

    .product-list .product-list__filter:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        transform: translateX(4px);
    }

    .product-list .product-list__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2.5vw, 24px);
    }

    .product-list .product-list__card {
        background: var(--surface-light);
        border: 2px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(20px, 3vw, 32px);
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        display: grid;
        grid-template-columns: 50% 1fr auto;
        gap: clamp(20px, 3vw, 32px);
        align-items: center;
    }

    .product-list .product-list__card:hover {
        border-color: var(--bg-primary);
        box-shadow: var(--shadow-lg);
        transform: translateX(8px);
    }

    .product-list .product-list__image {
        width: 100%;
        height: 180px;
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .product-list .product-list__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__image img {
        transform: scale(1.05);
    }

    .product-list .product-list__info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        flex: 1;
    }

    .product-list .product-list__main {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .product-list h3 {
        margin: 0;
        font-size: clamp(20px, 2.8vw, 24px);
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .product-list .product-list__description {
        color: var(--neutral-600);
        line-height: 1.6;
        margin: 0;
        font-size: 0.95rem;
    }

    .product-list .product-list__meta {
        display: flex;
        gap: 0.5rem;
        align-items: center;
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

    .product-list .product-list__rating {
        font-weight: 600;
        color: var(--accent);
    }

    .product-list .product-list__actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-end;
        min-width: 180px;
    }

    .product-list .product-list__price {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0;
        text-align: right;
    }

    .product-list .product-list__btn {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        width: 100%;
        text-align: center;
    }

    .product-list .product-list__btn:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .product-list__image img {
        width: 100%;
    }
    @media (max-width: 1023px) {
        .product-list .product-list__card {
            grid-template-columns: 1fr;
        }

        .product-list .product-list__image {
            height: 240px;
        }

        .product-list .product-list__actions {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            min-width: auto;
        }

        .product-list .product-list__price {
            text-align: left;
        }

        .product-list .product-list__btn {
            width: auto;
        }
    }

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
    background-color: var(--bg-page);
}
.header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-on-surface-light);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 800;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    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);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 3) var(--space-x);
        gap: calc(var(--gap) * 3);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
    }
    .nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        margin-bottom: 1.5rem;
        font-style: italic;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .footer-disclaimer {
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    .footer-disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

.product-item {

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

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

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

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

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

    .product-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

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

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
    background-color: var(--bg-page);
}
.header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-on-surface-light);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 800;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    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);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 3) var(--space-x);
        gap: calc(var(--gap) * 3);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
    }
    .nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        margin-bottom: 1.5rem;
        font-style: italic;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .footer-disclaimer {
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    .footer-disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

.product-item {

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

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

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

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

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

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

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-600);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__description ul {
        padding-left: 1.2rem;
        margin-top: 1rem;
    }

    .product-item .product-item__description li {
        margin-bottom: 0.5rem;
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

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

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--bg-page);
        color: var(--fg-on-page);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
    background-color: var(--bg-page);
}
.header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-on-surface-light);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 800;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    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);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 3) var(--space-x);
        gap: calc(var(--gap) * 3);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
    }
    .nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        margin-bottom: 1.5rem;
        font-style: italic;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .footer-disclaimer {
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    .footer-disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

.checkout {

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

    .checkout .checkout__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .checkout .checkout__c {
            grid-template-columns: 2fr 1fr;
        }
    }

    .checkout h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 var(--space-y);
        color: var(--fg-on-page);
    }

    .checkout .checkout__items {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .checkout .checkout__item {
        display: flex;
        gap: 1rem;
        background: var(--surface-light);
        padding: 1rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
    }

    .checkout .checkout__item-image {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .checkout .checkout__item-info {
        flex: 1;
    }

    .checkout h4 {
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .checkout .checkout__item-price {
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0.5rem 0;
    }

    .checkout .checkout__item-quantity {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .checkout .checkout__item-quantity button {
        width: 32px;
        height: 32px;
        border-radius: var(--radius-sm);
        border: 1px solid var(--ring);
        background: var(--bg-page);
        cursor: pointer;
    }

    .checkout .checkout__summary {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .checkout .checkout__total {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--bg-primary);
        margin-bottom: var(--space-y);
        padding-bottom: var(--space-y);
        border-bottom: 1px solid var(--ring);
    }

    .checkout .checkout__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .checkout .checkout__form input,
    .checkout .checkout__form textarea {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
    }

    .checkout .checkout__form input:focus,
    .checkout .checkout__form textarea:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .checkout .checkout__form button {
        padding: 1rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .checkout .checkout__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

.support-cv3 {
        padding: clamp(54px, 7vw, 94px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .support-cv3__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .support-cv3__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-cv3__list {
        display: grid;
        gap: 10px;
    }

    .support-cv3__item {
        border: 1px solid rgba(255, 255, 255, 0.32);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.12);
        overflow: hidden;
    }

    .support-cv3__item button {
        width: 100%;
        border: 0;
        background: transparent;
        color: inherit;
        text-align: left;
        font: inherit;
        font-weight: 700;
        padding: 11px 12px;
        cursor: pointer;
    }

    .support-cv3__item p {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        opacity: .95;
    }

    .support-cv3__item.is-open p {
        max-height: 220px;
        padding: 0 12px 12px;
    }

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
    background-color: var(--bg-page);
}
.header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-on-surface-light);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 800;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    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);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 3) var(--space-x);
        gap: calc(var(--gap) * 3);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
    }
    .nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        margin-bottom: 1.5rem;
        font-style: italic;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .footer-disclaimer {
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    .footer-disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

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

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

    .contacts-fresh-v1 .intro h2 {
        margin: .3rem 0;
        font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    }

    .contacts-fresh-v1 .intro p {
        max-width: 56ch;
        color: var(--fg-on-surface-light);
    }

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

    .contacts-fresh-v1 article {
        padding: 1.1rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .contacts-fresh-v1 h3 {
        margin: 0 0 .6rem;
    }

    .contacts-fresh-v1 .value {
        margin: 0;
        font-weight: 700;
    }

    .contacts-fresh-v1 .hint {
        margin: .3rem 0 .8rem;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v1 a {
        text-decoration: none;
        color: var(--link);
        font-weight: 700;
    }

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

.form-fresh-v4 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .form-fresh-v4 .shell {
        max-width: 820px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .form-fresh-v4 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.3vw, 2.5rem);
    }

    .form-fresh-v4 form {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
        display: grid;
        gap: .85rem;
    }

    .form-fresh-v4 .steps {
        display: flex;
        gap: .5rem;
        flex-wrap: wrap;
    }

    .form-fresh-v4 .steps span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--btn-ghost-bg-hover);
        font-size: .8rem;
    }

    .form-fresh-v4 .fields {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: .7rem;
    }

    .form-fresh-v4 label {
        display: grid;
        gap: .3rem;
        font-size: .88rem;
    }

    .form-fresh-v4 input {
        padding: .62rem .72rem;
        border: 1px solid var(--btn-ghost-bg-hover);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        font: inherit;
    }

    .form-fresh-v4 button {
        padding: .72rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
        cursor: pointer;
    }

    @media (max-width: 700px) {
        .form-fresh-v4 .fields {
            grid-template-columns:1fr;
        }
    }

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
    background-color: var(--bg-page);
}
.header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-on-surface-light);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 800;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    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);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 3) var(--space-x);
        gap: calc(var(--gap) * 3);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
    }
    .nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        margin-bottom: 1.5rem;
        font-style: italic;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .footer-disclaimer {
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    .footer-disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

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

    .policy-layout-f .head {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

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

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
    background-color: var(--bg-page);
}
.header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-on-surface-light);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 800;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    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);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 3) var(--space-x);
        gap: calc(var(--gap) * 3);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
    }
    .nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        margin-bottom: 1.5rem;
        font-style: italic;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .footer-disclaimer {
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    .footer-disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

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

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
    background-color: var(--bg-page);
}
.header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-on-surface-light);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 800;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    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);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 3) var(--space-x);
        gap: calc(var(--gap) * 3);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
    }
    .nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        margin-bottom: 1.5rem;
        font-style: italic;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .footer-disclaimer {
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    .footer-disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

.thank-mode-c {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: linear-gradient(180deg, var(--fg-on-page), var(--bg-page));
        color: var(--fg-on-page);
    }

    .thank-mode-c .panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 44px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

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

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

    .thank-mode-c a {
        display: inline-block;
        margin-top: 17px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
    background-color: var(--bg-page);
}
.header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-on-surface-light);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.75);
    font-weight: 800;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    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);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 3) var(--space-x);
        gap: calc(var(--gap) * 3);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
    }
    .nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .btn-cta {
        width: 100%;
        text-align: center;
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        margin-bottom: 1.5rem;
        font-style: italic;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }
    .footer-contact a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #6c757d;
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .footer-disclaimer {
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    .footer-disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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