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

  --max-w: 1080px;
  --space-x: 0.87rem;
  --space-y: 1.5rem;
  --gap: 0.77rem;

  --radius-xl: 0.95rem;
  --radius-lg: 0.63rem;
  --radius-md: 0.5rem;
  --radius-sm: 0.23rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.11);
  --shadow-md: 0 8px 10px rgba(0,0,0,0.14);
  --shadow-lg: 0 18px 42px rgba(0,0,0,0.17);

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

  --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.95);
  --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.08);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}

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

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

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

.logo:hover {
    color: var(--link-hover);
}

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

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

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--link-hover);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease),
                left var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        padding: calc(var(--space-y) / 1.5) 0;
        display: block;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

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

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        letter-spacing: -0.5px;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-contact li {
        color: #6c757d;
    }
    .contact-phone a,
    .contact-email a {
        color: #6c757d;
        text-decoration: none;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        flex: 1;
        min-width: 100%;
        max-width: 800px;
        text-align: center;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #868e96;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .footer-legal {
            justify-content: center;
        }
    }

.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-cardline {
        padding: clamp(60px, 9vw, 120px) clamp(16px, 3vw, 40px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .intro-cardline .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 16px;
        align-items: center;
    }

    .intro-cardline .media {
        order: var(--random-number);
    }

    .intro-cardline .copy {
        order: 1;
    }

    .intro-cardline .media img {
        width: 100%;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .intro-cardline .badge {
        margin: 0 0 8px;
        display: inline-block;
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 6px 10px;
        border-radius: var(--radius-md);
        font-size: 0.85rem;
    }

    .intro-cardline h1 {
        margin: 0 0 8px;
        font-size: clamp(32px, 5.2vw, 54px);
    }

    .intro-cardline .subtitle {
        margin: 0 0 10px;
        color: var(--neutral-600);
    }

    .intro-cardline .desc {
        margin: 0 0 12px;
        color: var(--neutral-600);
    }

    .intro-cardline .question {
        margin: 0 0 16px;
        padding: 10px;
        border-left: 3px solid var(--ring);
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .intro-cardline .btn {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 900px) {
        .intro-cardline .wrap {
            grid-template-columns: 1fr;
        }
    }

.next-beam {
        padding: clamp(60px, 9vw, 108px) clamp(16px, 3vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        position: relative;
        overflow: hidden;
    }

    .next-beam::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, .16) 50%, transparent 75%);
        transform: translateX(-120%);
        animation: beam 7s ease-in-out infinite;
    }

    .next-beam .wrap {
        position: relative;
        z-index: 1;
        max-width: 860px;
        margin: 0 auto;
        text-align: center;
    }

    .next-beam .kicker {
        margin: 0;
        opacity: .9;
    }

    .next-beam h2 {
        margin: 8px 0;
        font-size: clamp(30px, 4.4vw, 46px);
    }

    .next-beam .text {
        margin: 0 auto;
        max-width: 62ch;
        opacity: .9;
    }

    .next-beam .actions {
        margin-top: 16px;
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .next-beam .btn {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .4);
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
    }

    .next-beam .btn-primary {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--accent-contrast);
    }

    @keyframes beam {
        0% {
            transform: translateX(-120%);
        }
        55% {
            transform: translateX(120%);
        }
        100% {
            transform: translateX(120%);
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .next-beam::before {
            animation: none;
        }
    }

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

    .faq-layout-b .wrap {
        max-width: 940px;
        margin: 0 auto;
    }

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

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

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

    .faq-layout-b .grid {
        display: grid;
        gap: var(--gap);
    }

    .faq-layout-b details {
        border: 1px solid var(--border-on-surface-light);
        background: var(--surface-1);
        border-radius: var(--radius-md);
        padding: 10px 12px;
    }

    .faq-layout-b summary {
        cursor: pointer;
        font-weight: 600;
        color: var(--brand);
    }

    .faq-layout-b details p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

.social-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        overflow: hidden;
    }

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

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

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

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

    .social-c1__band {
        margin-top: 18px;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.10);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        position: relative;
    }

    .social-c1__band::before,
    .social-c1__band::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 90px;
        pointer-events: none;
        z-index: 1;
    }

    .social-c1__band::before {
        left: 0;
        background: linear-gradient(90deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__band::after {
        right: 0;
        background: linear-gradient(270deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__track {
        display: flex;
        gap: 18px;
        padding: var(--space-y) var(--space-x);
        width: max-content;
        animation: socialC1Marquee 18s linear infinite;
    }

    @keyframes socialC1Marquee {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-c1__logo {
        width: 140px;
        height: 56px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        display: grid;
        place-items: center;
        flex: 0 0 auto;
    }

    .social-c1__logo img {
        max-width: 78%;
        max-height: 70%;
        opacity: .92;
        filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
    }

    .social-c1__stats {
        margin-top: 18px;
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 12px;
    }

    .social-c1__stat {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: var(--shadow-md);
        padding: 14px 16px;
    }

    .social-c1__num {
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
    }

    .social-c1__lbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .9);
    }

    @media (max-width: 900px) {
        .social-c1__stat {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .social-c1__stat {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .social-c1__track {
            animation: none;
            transform: none;
        }
    }

.visual-highlights-carousel {

        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(60px, 8vw, 108px) clamp(18px, 4vw, 56px);
    }

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

    .visual-highlights-carousel__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

        transform: translateY(-20px);
    }

    .visual-highlights-carousel__h p {
        margin: 0 0 0.75rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--brand);
        font-size: 13px;
    }

    .visual-highlights-carousel__h h2 {
        margin: 0;
        font-size: clamp(30px, 4.8vw, 50px);
        font-weight: 800;
        color: var(--fg-on-alt);
    }

    .visual-highlights-carousel__row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .visual-highlights-carousel__slide {
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        overflow: hidden;

        transform: translateY(30px);
        box-shadow: var(--shadow-lg);
        display: flex;
        flex-direction: column;
    }

    .visual-highlights-carousel__img {
        position: relative;
        padding-top: 60%;
    }

    .visual-highlights-carousel__img img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .visual-highlights-carousel__slide:hover img {
        transform: scale(1.05);
    }

    .visual-highlights-carousel__flag {
        position: absolute;
        top: 16px;
        right: 16px;
        background: var(--bg-page);
        border-radius: 999px;
        padding: 6px 14px;
        font-size: 12px;
        color: var(--accent);
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        box-shadow: 0 12px 20px rgba(0, 86, 179, 0.15);
    }

    .visual-highlights-carousel__text {
        padding: clamp(20px, 3vw, 28px);
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .visual-highlights-carousel__text h3 {
        margin: 0;
        font-size: clamp(18px, 2.4vw, 24px);
        color: var(--fg-on-page);
    }

    .visual-highlights-carousel__text p {
        margin: 0;
        color: var(--neutral-600);
    }

    .visual-highlights-carousel__note {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        color: var(--brand);
    }

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

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

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

.logo:hover {
    color: var(--link-hover);
}

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

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

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--link-hover);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease),
                left var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        padding: calc(var(--space-y) / 1.5) 0;
        display: block;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

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

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        letter-spacing: -0.5px;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-contact li {
        color: #6c757d;
    }
    .contact-phone a,
    .contact-email a {
        color: #6c757d;
        text-decoration: none;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        flex: 1;
        min-width: 100%;
        max-width: 800px;
        text-align: center;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #868e96;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .footer-legal {
            justify-content: center;
        }
    }

.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: var(--bg-page);
        padding: clamp(20px, 3.5vw, 48px) clamp(16px, 4vw, 40px);
    }

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

    .product-list .product-list__h {
        text-align: center;
        margin-bottom: clamp(24px, 4vw, 40px);
    }

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

    .product-list .product-list__h p {
        font-size: clamp(16px, 2.2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .product-list .product-list__toolbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: clamp(24px, 4vw, 40px);
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .product-list .product-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        flex: 1;
    }

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

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

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

    .product-list .product-list__view-toggle {
        display: flex;
        gap: 0.5rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        padding: 0.25rem;
        background: var(--bg-page);
    }

    .product-list .product-list__view-btn {
        padding: 0.5rem 0.75rem;
        border: none;
        background: transparent;
        color: var(--neutral-600);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        border-radius: var(--radius-sm);
        font-size: 1.125rem;
    }

    .product-list .product-list__view-btn.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .product-list .product-list__container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: clamp(16px, 2.5vw, 24px);
    }

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

    .product-list .product-list__card {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        flex-direction: column;
    }

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

    .product-list .product-list__image-container {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
        background: var(--bg-alt);
    }

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

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

    .product-list .product-list__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;

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

    .product-list .product-list__card:hover .product-list__overlay {
        opacity: 1;
    }

    .product-list .product-list__quick-view {
        padding: 0.75rem 1.5rem;
        background: var(--bg-page);
        color: var(--fg-on-page);
        text-decoration: none;
        border-radius: var(--radius-md);
        font-weight: 600;
        transform: translateY(10px);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__quick-view {
        transform: translateY(0);
    }

    .product-list .product-list__content {
        padding: clamp(16px, 2vw, 20px);
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
    }

    .product-list .product-list__header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .product-list h3 {
        margin: 0;
        font-size: clamp(16px, 2vw, 18px);
        color: var(--fg-on-page);
        font-weight: 600;
        flex: 1;
        line-height: 1.4;
    }

    .product-list .product-list__wishlist {
        width: 32px;
        height: 32px;
        border: 1px solid var(--ring);
        border-radius: 50%;
        background: var(--bg-page);
        color: var(--neutral-600);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .product-list .product-list__wishlist:hover {
        border-color: var(--bg-primary);
        color: var(--bg-primary);
        transform: scale(1.1);
    }

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

    .product-list .product-list__footer {
        display: flex;
        gap: 0.5rem;
        margin-top: auto;
    }

    .product-list .product-list__btn {
        flex: 1;
        padding: 0.625rem 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        font-size: 0.875rem;
        text-align: center;
    }

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

    .product-list .product-list__cart-btn {
        width: 40px;
        height: 40px;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-size: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-list .product-list__cart-btn:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        transform: scale(1.1);
    }

    @media (max-width: 767px) {
        .product-list .product-list__container {
            grid-template-columns: repeat(2, 1fr);
            gap: clamp(12px, 2vw, 16px);
        }

        .product-list .product-list__image-container {
            height: 160px;
        }
    }

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

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

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

.logo:hover {
    color: var(--link-hover);
}

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

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

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--link-hover);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease),
                left var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        padding: calc(var(--space-y) / 1.5) 0;
        display: block;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

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

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        letter-spacing: -0.5px;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-contact li {
        color: #6c757d;
    }
    .contact-phone a,
    .contact-email a {
        color: #6c757d;
        text-decoration: none;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        flex: 1;
        min-width: 100%;
        max-width: 800px;
        text-align: center;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #868e96;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .footer-legal {
            justify-content: center;
        }
    }

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

        /* Si randomNumber es par (2) - el primer hijo obtiene 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-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

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

    /* Si randomNumber es par (2) - el primer hijo obtiene 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-page);
        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(--bg-page);
        color: var(--fg-on-page);
        border: 1px solid var(--ring);
    }

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

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

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

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

.gallery__header h2 {
    margin: 0 0 6px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

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

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

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
}

.gallery__item--featured {
    border-color: var(--accent);
}

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

.gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    font-size: 0.85rem;
}

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

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

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

.logo:hover {
    color: var(--link-hover);
}

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

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

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--link-hover);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease),
                left var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        padding: calc(var(--space-y) / 1.5) 0;
        display: block;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

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

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        letter-spacing: -0.5px;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-contact li {
        color: #6c757d;
    }
    .contact-phone a,
    .contact-email a {
        color: #6c757d;
        text-decoration: none;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        flex: 1;
        min-width: 100%;
        max-width: 800px;
        text-align: center;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #868e96;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .footer-legal {
            justify-content: center;
        }
    }

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

        /* Si randomNumber es par (2) - el primer hijo obtiene 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__description ul {
        margin-top: 1rem;
        padding-left: 1.5rem;
    }

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

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

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

.about-mission {

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

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

    .about-mission .about-mission__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: 1fr 1fr;
    }

    .about-mission p {
        color: var(--neutral-600);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__grid {
            grid-template-columns: 1fr;
        }
    }

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

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

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

.logo:hover {
    color: var(--link-hover);
}

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

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

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--link-hover);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease),
                left var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        padding: calc(var(--space-y) / 1.5) 0;
        display: block;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

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

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        letter-spacing: -0.5px;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-contact li {
        color: #6c757d;
    }
    .contact-phone a,
    .contact-email a {
        color: #6c757d;
        text-decoration: none;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        flex: 1;
        min-width: 100%;
        max-width: 800px;
        text-align: center;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #868e96;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .footer-legal {
            justify-content: center;
        }
    }

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

        /* Si randomNumber es par (2) - el primer hijo obtiene 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__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Si randomNumber es par (2) - el primer hijo obtiene 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(--bg-page);
        color: var(--fg-on-page);
        border: 1px solid var(--ring);
    }

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

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

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

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

.logo:hover {
    color: var(--link-hover);
}

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

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

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--link-hover);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease),
                left var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        padding: calc(var(--space-y) / 1.5) 0;
        display: block;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

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

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        letter-spacing: -0.5px;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-contact li {
        color: #6c757d;
    }
    .contact-phone a,
    .contact-email a {
        color: #6c757d;
        text-decoration: none;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        flex: 1;
        min-width: 100%;
        max-width: 800px;
        text-align: center;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #868e96;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .footer-legal {
            justify-content: center;
        }
    }

.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--colored-v5 {
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.checkout__inner {
    max-width: 480px;
    margin: 0 auto;
}

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

.checkout__text {
    margin: 0 0 16px;
    color: var(--neutral-300);
    font-size: 0.95rem;
}

.checkout__summary {
    background: rgba(15,23,42,0.95);
    border-radius: var(--radius-xl);
    padding: 16px 18px;
    border: 1px solid rgba(148,163,184,0.6);
    display: grid;
    gap: 8px;
}

.checkout__row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.checkout__row--total {
    font-weight: 600;
    border-top: 1px solid rgba(75,85,99,0.9);
    padding-top: 8px;
    margin-top: 4px;
}

.checkout__button {
    margin-top: 8px;
    border: none;
    border-radius: var(--radius-lg);
    padding: 10px 18px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.clarifications-l2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

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

    .clarifications-l2__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--fg-on-alt);
    }

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

    .clarifications-l2__panel {
        position: relative;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* constante scan */
    .clarifications-l2__scan {
        position: absolute;
        left: 0;
        top: -40%;
        width: 100%;
        height: 42%;
        background: linear-gradient(180deg, transparent, rgba(0, 86, 179, 0.08), transparent);
        animation: l2Scan 4.8s linear infinite;
        pointer-events: none;
    }

    @keyframes l2Scan {
        0% {
            transform: translateY(0%)
        }
        100% {
            transform: translateY(240%)
        }
    }

    .clarifications-l2__list {
        display: grid;
        gap: 10px;
        padding: 12px;
    }

    .clarifications-l2__row {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 12px;
        padding: 12px 14px;
        text-align: left;
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        cursor: pointer;
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .clarifications-l2__row:hover {
        transform: translateY(-2px);
        border-color: rgba(0, 86, 179, 0.35);
    }

    .clarifications-l2__k {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 34px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
    }

    .clarifications-l2__q {
        display: block;
        font-weight: 900;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-l2__a {
        display: block;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    /* JS añadirá el resaltado flotante */
    .clarifications-l2__row.is-focus {
        border-color: rgba(255, 107, 53, 0.45);
        box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.08);
    }

    @media (max-width: 720px) {
        .clarifications-l2__row {
            grid-template-columns:1fr
        }

        .clarifications-l2__k {
            justify-self: start;
            padding: 0 12px
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-l2__scan {
            animation: none;
        }
    }

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

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

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

.logo:hover {
    color: var(--link-hover);
}

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

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

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--link-hover);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease),
                left var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        padding: calc(var(--space-y) / 1.5) 0;
        display: block;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

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

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        letter-spacing: -0.5px;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-contact li {
        color: #6c757d;
    }
    .contact-phone a,
    .contact-email a {
        color: #6c757d;
        text-decoration: none;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        flex: 1;
        min-width: 100%;
        max-width: 800px;
        text-align: center;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #868e96;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .footer-legal {
            justify-content: center;
        }
    }

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

.contact-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .contact-layout-a .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .contact-layout-a .section-head {
        margin-bottom: 18px;
        text-align: center;
    }

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

    .contact-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        opacity: .92;
    }

    .contact-layout-a .panel {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        padding: 18px;
        backdrop-filter: blur(6px);
    }

    .contact-layout-a h3 {
        margin: 0 0 12px;
    }

    .contact-layout-a .list p {
        margin: 0 0 10px;
        display: grid;
        gap: 2px;
    }

    .contact-layout-a .list span {
        opacity: .94;
    }

    .contact-layout-a .social-row {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .contact-layout-a .social-row a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .4);
    }

    .contact-layout-a .social-row a:hover {
        background: rgba(255, 255, 255, .15);
    }

.connect--light-v6 {
        padding: 40px 20px;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
    }

    .connect__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: 20px;
        align-items: center;
    }

    .connect__content h2 {
        margin: 0 0 6px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--fg-on-page);
    }

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

    .connect__chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .connect__chip {
        padding: 6px 12px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .connect__chip {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    @media (max-width: 768px) {
        .connect__inner {
            grid-template-columns: minmax(0, 1fr);
        }

        .connect__chips {
            justify-content: flex-start;
        }
    }

.form-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .form-layout-a .wrap {
        max-width: 820px;
        margin: 0 auto;
    }

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

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

    .form-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 66ch;
        opacity: .92;
    }

    .form-layout-a .card {
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: rgba(255, 255, 255, .1);
    }

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

    .form-layout-a input:not([type="checkbox"]), .form-layout-a textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .34);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .15);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .form-layout-a .agree {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .form-layout-a button {
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--accent);
        color: var(--accent-contrast);
        font-weight: 600;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }
    .form-layout-a button:hover {
        background: var(--bg-accent-hover);
    }
    .form-layout-a input::placeholder,
    .form-layout-a textarea::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

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

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

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

.logo:hover {
    color: var(--link-hover);
}

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

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

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--link-hover);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease),
                left var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        padding: calc(var(--space-y) / 1.5) 0;
        display: block;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

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

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        letter-spacing: -0.5px;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-contact li {
        color: #6c757d;
    }
    .contact-phone a,
    .contact-email a {
        color: #6c757d;
        text-decoration: none;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        flex: 1;
        min-width: 100%;
        max-width: 800px;
        text-align: center;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #868e96;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .footer-legal {
            justify-content: center;
        }
    }

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

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

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

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

.logo:hover {
    color: var(--link-hover);
}

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

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

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--link-hover);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease),
                left var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        padding: calc(var(--space-y) / 1.5) 0;
        display: block;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

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

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        letter-spacing: -0.5px;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-contact li {
        color: #6c757d;
    }
    .contact-phone a,
    .contact-email a {
        color: #6c757d;
        text-decoration: none;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        flex: 1;
        min-width: 100%;
        max-width: 800px;
        text-align: center;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #868e96;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .footer-legal {
            justify-content: center;
        }
    }

.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-f {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

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

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

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

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

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

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

.logo:hover {
    color: var(--link-hover);
}

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

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

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--link-hover);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease),
                left var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        padding: calc(var(--space-y) / 1.5) 0;
        display: block;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

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

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        letter-spacing: -0.5px;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-contact li {
        color: #6c757d;
    }
    .contact-phone a,
    .contact-email a {
        color: #6c757d;
        text-decoration: none;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        flex: 1;
        min-width: 100%;
        max-width: 800px;
        text-align: center;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #868e96;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .footer-legal {
            justify-content: center;
        }
    }

.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-a {
        padding: clamp(56px, 10vw, 110px) 18px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

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

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

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

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

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

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

.logo:hover {
    color: var(--link-hover);
}

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

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

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--link-hover);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease),
                left var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        padding: calc(var(--space-y) / 1.5) 0;
        display: block;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

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

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        letter-spacing: -0.5px;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-contact li {
        color: #6c757d;
    }
    .contact-phone a,
    .contact-email a {
        color: #6c757d;
        text-decoration: none;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        flex: 1;
        min-width: 100%;
        max-width: 800px;
        text-align: center;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #868e96;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            min-width: 100%;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .footer-legal {
            justify-content: center;
        }
    }

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