:root {
  --font-family: "IBM Plex Sans", sans-serif;
  --font-size-base: 15px;
  --line-height-base: 1.92;

  --max-w: 1160px;
  --space-x: 1.65rem;
  --space-y: 1.5rem;
  --gap: 0.78rem;

  --radius-xl: 1.33rem;
  --radius-lg: 1rem;
  --radius-md: 0.69rem;
  --radius-sm: 0.4rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 5px 16px rgba(0,0,0,0.05);
  --shadow-lg: 0 14px 20px rgba(0,0,0,0.06);

  --overlay: rgba(0, 0, 0, 0.45);
  --anim-duration: 460ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 1;

  --brand: #005792;
  --brand-contrast: #ffffff;
  --accent: #ff7a45;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f5f5;
  --neutral-300: #d9d9d9;
  --neutral-600: #8c8c8c;
  --neutral-800: #434343;
  --neutral-900: #141414;

  --bg-page: #fafafa;
  --fg-on-page: #141414;

  --bg-alt: #f0f5ff;
  --fg-on-alt: #1d39c4;

  --surface-1: #ffffff;
  --surface-2: #fafafa;
  --fg-on-surface: #141414;
  --border-on-surface: #d9d9d9;

  --surface-light: #ffffff;
  --fg-on-surface-light: #434343;
  --border-on-surface-light: #f0f0f0;

  --bg-primary: #005792;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d6fa5;
  --ring: #91caff;

  --bg-accent: #fff2e8;
  --fg-on-accent: #d4380d;
  --bg-accent-hover: #ff9c6e;

  --link: #096dd9;
  --link-hover: #1890ff;

  --gradient-hero: linear-gradient(135deg, #005792 0%, #1d6fa5 100%);
  --gradient-accent: linear-gradient(90deg, #ff7a45 0%, #ff9c6e 100%);

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    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;
    position: relative;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    z-index: 1002;
    flex-direction: column;
    gap: 4px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    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;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        width: 100%;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        padding: 1.5rem 0;
        border-bottom: 1px solid #eee;
    }

    .footer-row.top-row {
        align-items: center;
    }

    .footer-row.bottom-row {
        border-bottom: none;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding-bottom: 0;
    }

    .footer-brand {
        flex: 1;
        min-width: 200px;
        margin-bottom: 1rem;
    }

    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .tagline {
        color: #666;
        font-size: 0.95rem;
        max-width: 300px;
    }

    .footer-nav {
        flex: 1;
        min-width: 200px;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: flex-end;
    }

    .footer-nav a {
        text-decoration: none;
        color: #2d3748;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2c5282;
    }

    .contact-block {
        flex: 1;
        min-width: 100%;
    }

    .contact-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2d3748;
    }

    .contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .contact-list li {
        margin-bottom: 0.5rem;
    }

    .contact-phone a,
    .contact-email a {
        color: #2c5282;
        text-decoration: none;
    }

    .contact-phone a:hover,
    .contact-email a:hover {
        text-decoration: underline;
    }

    .legal-links {
        margin-bottom: 0.5rem;
    }

    .legal-links a {
        color: #4a5568;
        text-decoration: none;
        margin: 0 0.5rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #2c5282;
    }

    .copyright {
        color: #718096;
        font-size: 0.9rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        color: #a0aec0;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.4;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1.5rem;
        }

        .contact-list {
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-brand {
            text-align: center;
        }

        .tagline {
            margin: 0 auto;
        }

        .legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .legal-links a {
            margin: 0;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.intro-focus-alt {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.about-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

    .about-struct-v5 h2, .about-struct-v5 h3, .about-struct-v5 p {
        margin: 0
    }

    .about-struct-v5 .split, .about-struct-v5 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v5 .split img, .about-struct-v5 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v5 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v5 .split div {
        display: grid;
        gap: .5rem
    }

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

    .about-struct-v5 article, .about-struct-v5 .values div, .about-struct-v5 .facts div, .about-struct-v5 .quote, .about-struct-v5 .statement {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v5 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v5 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .about-struct-v5 .values, .about-struct-v5 .facts {
        display: grid;
        gap: .6rem
    }

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

    .about-struct-v5 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v5 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v5 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

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

    @media (max-width: 900px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr
        }
    }

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

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

    .visual-board-l4__head {
        margin-bottom: 1rem;
        text-align: center;
    }

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

    .visual-board-l4__head p {
        margin: .6rem 0 0;
        color: var(--neutral-600);
    }

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

    .visual-board-l4__grid figure {
        margin: 0;
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-board-l4__grid figcaption strong {
        color: var(--brand);
    }

    .visual-board-l4__grid h3 {
        margin: .45rem 0 .35rem;
    }

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

    .visual-board-l4__grid img {
        display: block;
        width: 100%;
        height: 12rem;
        object-fit: cover;
        border-radius: var(--radius-md);
        margin-top: .85rem;
    }

.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: 86px;
        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;
        }
    }

.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;
    position: relative;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    z-index: 1002;
    flex-direction: column;
    gap: 4px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    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;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        width: 100%;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        padding: 1.5rem 0;
        border-bottom: 1px solid #eee;
    }

    .footer-row.top-row {
        align-items: center;
    }

    .footer-row.bottom-row {
        border-bottom: none;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding-bottom: 0;
    }

    .footer-brand {
        flex: 1;
        min-width: 200px;
        margin-bottom: 1rem;
    }

    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .tagline {
        color: #666;
        font-size: 0.95rem;
        max-width: 300px;
    }

    .footer-nav {
        flex: 1;
        min-width: 200px;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: flex-end;
    }

    .footer-nav a {
        text-decoration: none;
        color: #2d3748;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2c5282;
    }

    .contact-block {
        flex: 1;
        min-width: 100%;
    }

    .contact-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2d3748;
    }

    .contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .contact-list li {
        margin-bottom: 0.5rem;
    }

    .contact-phone a,
    .contact-email a {
        color: #2c5282;
        text-decoration: none;
    }

    .contact-phone a:hover,
    .contact-email a:hover {
        text-decoration: underline;
    }

    .legal-links {
        margin-bottom: 0.5rem;
    }

    .legal-links a {
        color: #4a5568;
        text-decoration: none;
        margin: 0 0.5rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #2c5282;
    }

    .copyright {
        color: #718096;
        font-size: 0.9rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        color: #a0aec0;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.4;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1.5rem;
        }

        .contact-list {
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-brand {
            text-align: center;
        }

        .tagline {
            margin: 0 auto;
        }

        .legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .legal-links a {
            margin: 0;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.product-list {

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

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

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

    /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
    .product-list .product-list__header-wrapper > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

    /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
    .product-list .product-list__filters > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        transform: translateY(-18px);
    }

    .index-recommendations-list__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: var(--neutral-600);
    }

    .index-recommendations-list__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-recommendations-list__list {
        display: grid;
        gap: 12px;
    }

    .index-recommendations-list__row {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-light);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

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

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

    .index-recommendations-list__icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-recommendations-list__title {
        font-weight: 900;
        font-size: 14px;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 30ch;
    }

    .index-recommendations-list__right {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex: 0 0 auto;
    }

    .index-recommendations-list__tag {
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        color: var(--neutral-800);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .index-recommendations-list__chev {
        width: 30px;
        height: 30px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 900;
        line-height: 1;
    }

    .index-recommendations-list__a {
        display: none;
        padding: 0 16px 14px;
        overflow: hidden;
    }

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

    .index-recommendations-list__actions {
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .index-recommendations-list__hint {
        font-size: 12px;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

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

    .index-recommendations-list__cta::after {
        content: '->';
    }

    .index-recommendations-list__cta:hover {
        background: var(--bg-primary-hover);
    }

    @media (max-width: 560px) {
        .index-recommendations-list__tag {
            display: 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;
    position: relative;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    z-index: 1002;
    flex-direction: column;
    gap: 4px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    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;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        width: 100%;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        padding: 1.5rem 0;
        border-bottom: 1px solid #eee;
    }

    .footer-row.top-row {
        align-items: center;
    }

    .footer-row.bottom-row {
        border-bottom: none;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding-bottom: 0;
    }

    .footer-brand {
        flex: 1;
        min-width: 200px;
        margin-bottom: 1rem;
    }

    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .tagline {
        color: #666;
        font-size: 0.95rem;
        max-width: 300px;
    }

    .footer-nav {
        flex: 1;
        min-width: 200px;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: flex-end;
    }

    .footer-nav a {
        text-decoration: none;
        color: #2d3748;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2c5282;
    }

    .contact-block {
        flex: 1;
        min-width: 100%;
    }

    .contact-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2d3748;
    }

    .contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .contact-list li {
        margin-bottom: 0.5rem;
    }

    .contact-phone a,
    .contact-email a {
        color: #2c5282;
        text-decoration: none;
    }

    .contact-phone a:hover,
    .contact-email a:hover {
        text-decoration: underline;
    }

    .legal-links {
        margin-bottom: 0.5rem;
    }

    .legal-links a {
        color: #4a5568;
        text-decoration: none;
        margin: 0 0.5rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #2c5282;
    }

    .copyright {
        color: #718096;
        font-size: 0.9rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        color: #a0aec0;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.4;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1.5rem;
        }

        .contact-list {
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-brand {
            text-align: center;
        }

        .tagline {
            margin: 0 auto;
        }

        .legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .legal-links a {
            margin: 0;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[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__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);
    }

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

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

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

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

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

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

.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;
    position: relative;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    z-index: 1002;
    flex-direction: column;
    gap: 4px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    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;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        width: 100%;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        padding: 1.5rem 0;
        border-bottom: 1px solid #eee;
    }

    .footer-row.top-row {
        align-items: center;
    }

    .footer-row.bottom-row {
        border-bottom: none;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding-bottom: 0;
    }

    .footer-brand {
        flex: 1;
        min-width: 200px;
        margin-bottom: 1rem;
    }

    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .tagline {
        color: #666;
        font-size: 0.95rem;
        max-width: 300px;
    }

    .footer-nav {
        flex: 1;
        min-width: 200px;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: flex-end;
    }

    .footer-nav a {
        text-decoration: none;
        color: #2d3748;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2c5282;
    }

    .contact-block {
        flex: 1;
        min-width: 100%;
    }

    .contact-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2d3748;
    }

    .contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .contact-list li {
        margin-bottom: 0.5rem;
    }

    .contact-phone a,
    .contact-email a {
        color: #2c5282;
        text-decoration: none;
    }

    .contact-phone a:hover,
    .contact-email a:hover {
        text-decoration: underline;
    }

    .legal-links {
        margin-bottom: 0.5rem;
    }

    .legal-links a {
        color: #4a5568;
        text-decoration: none;
        margin: 0 0.5rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #2c5282;
    }

    .copyright {
        color: #718096;
        font-size: 0.9rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        color: #a0aec0;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.4;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1.5rem;
        }

        .contact-list {
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-brand {
            text-align: center;
        }

        .tagline {
            margin: 0 auto;
        }

        .legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .legal-links a {
            margin: 0;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

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

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

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

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

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

.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;
    position: relative;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    z-index: 1002;
    flex-direction: column;
    gap: 4px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    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;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        width: 100%;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        padding: 1.5rem 0;
        border-bottom: 1px solid #eee;
    }

    .footer-row.top-row {
        align-items: center;
    }

    .footer-row.bottom-row {
        border-bottom: none;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding-bottom: 0;
    }

    .footer-brand {
        flex: 1;
        min-width: 200px;
        margin-bottom: 1rem;
    }

    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .tagline {
        color: #666;
        font-size: 0.95rem;
        max-width: 300px;
    }

    .footer-nav {
        flex: 1;
        min-width: 200px;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: flex-end;
    }

    .footer-nav a {
        text-decoration: none;
        color: #2d3748;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2c5282;
    }

    .contact-block {
        flex: 1;
        min-width: 100%;
    }

    .contact-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2d3748;
    }

    .contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .contact-list li {
        margin-bottom: 0.5rem;
    }

    .contact-phone a,
    .contact-email a {
        color: #2c5282;
        text-decoration: none;
    }

    .contact-phone a:hover,
    .contact-email a:hover {
        text-decoration: underline;
    }

    .legal-links {
        margin-bottom: 0.5rem;
    }

    .legal-links a {
        color: #4a5568;
        text-decoration: none;
        margin: 0 0.5rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #2c5282;
    }

    .copyright {
        color: #718096;
        font-size: 0.9rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        color: #a0aec0;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.4;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1.5rem;
        }

        .contact-list {
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-brand {
            text-align: center;
        }

        .tagline {
            margin: 0 auto;
        }

        .legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .legal-links a {
            margin: 0;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.connect--colored-v5 {
        padding: 64px 20px;
        background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.35), transparent),
        radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.45), transparent),
        var(--neutral-900);
        color: var(--neutral-0);
    }

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

    .connect__header {
        text-align: center;
        margin-bottom: 32px;
    }

    .connect__eyebrow {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: rgba(191, 219, 254, 0.9);
        margin: 0 0 0.5rem;
    }

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

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

    .connect__channels {
        margin-top: 24px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 18px;
    }

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

    .connect__icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(17, 24, 39, 0.96);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .connect__channel-title {
        margin: 0;
        font-size: 1rem;
        color: var(--brand-contrast);
    }

    .connect__channel-text {
        margin: 0;
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .connect__channel-link {
        margin-top: 4px;
        font-size: 0.88rem;
        color: var(--bg-accent);
        text-decoration: none;
    }

    .connect__channel-link:hover {
        text-decoration: underline;
    }

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

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

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

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

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

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

    .contact-layout-b .item-card {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

    .contact-layout-b .item-card h3 {
        margin: 0;
        color: var(--brand);
    }

    .contact-layout-b .item-card p {
        margin: 8px 0 0;
        color: var(--neutral-700, var(--neutral-600));
    }

    .contact-layout-b footer {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .contact-layout-b .social {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .contact-layout-b .social a {
        text-decoration: none;
        color: var(--link);
        padding: 6px 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
    }

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

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

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

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

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

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

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

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

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

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

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

.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;
    position: relative;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    z-index: 1002;
    flex-direction: column;
    gap: 4px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    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;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        width: 100%;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        padding: 1.5rem 0;
        border-bottom: 1px solid #eee;
    }

    .footer-row.top-row {
        align-items: center;
    }

    .footer-row.bottom-row {
        border-bottom: none;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding-bottom: 0;
    }

    .footer-brand {
        flex: 1;
        min-width: 200px;
        margin-bottom: 1rem;
    }

    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .tagline {
        color: #666;
        font-size: 0.95rem;
        max-width: 300px;
    }

    .footer-nav {
        flex: 1;
        min-width: 200px;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: flex-end;
    }

    .footer-nav a {
        text-decoration: none;
        color: #2d3748;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2c5282;
    }

    .contact-block {
        flex: 1;
        min-width: 100%;
    }

    .contact-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2d3748;
    }

    .contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .contact-list li {
        margin-bottom: 0.5rem;
    }

    .contact-phone a,
    .contact-email a {
        color: #2c5282;
        text-decoration: none;
    }

    .contact-phone a:hover,
    .contact-email a:hover {
        text-decoration: underline;
    }

    .legal-links {
        margin-bottom: 0.5rem;
    }

    .legal-links a {
        color: #4a5568;
        text-decoration: none;
        margin: 0 0.5rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #2c5282;
    }

    .copyright {
        color: #718096;
        font-size: 0.9rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        color: #a0aec0;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.4;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1.5rem;
        }

        .contact-list {
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-brand {
            text-align: center;
        }

        .tagline {
            margin: 0 auto;
        }

        .legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .legal-links a {
            margin: 0;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

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

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

.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;
    position: relative;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    z-index: 1002;
    flex-direction: column;
    gap: 4px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    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;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        width: 100%;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        padding: 1.5rem 0;
        border-bottom: 1px solid #eee;
    }

    .footer-row.top-row {
        align-items: center;
    }

    .footer-row.bottom-row {
        border-bottom: none;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding-bottom: 0;
    }

    .footer-brand {
        flex: 1;
        min-width: 200px;
        margin-bottom: 1rem;
    }

    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .tagline {
        color: #666;
        font-size: 0.95rem;
        max-width: 300px;
    }

    .footer-nav {
        flex: 1;
        min-width: 200px;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: flex-end;
    }

    .footer-nav a {
        text-decoration: none;
        color: #2d3748;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2c5282;
    }

    .contact-block {
        flex: 1;
        min-width: 100%;
    }

    .contact-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2d3748;
    }

    .contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .contact-list li {
        margin-bottom: 0.5rem;
    }

    .contact-phone a,
    .contact-email a {
        color: #2c5282;
        text-decoration: none;
    }

    .contact-phone a:hover,
    .contact-email a:hover {
        text-decoration: underline;
    }

    .legal-links {
        margin-bottom: 0.5rem;
    }

    .legal-links a {
        color: #4a5568;
        text-decoration: none;
        margin: 0 0.5rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #2c5282;
    }

    .copyright {
        color: #718096;
        font-size: 0.9rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        color: #a0aec0;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.4;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1.5rem;
        }

        .contact-list {
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-brand {
            text-align: center;
        }

        .tagline {
            margin: 0 auto;
        }

        .legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .legal-links a {
            margin: 0;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[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;
    position: relative;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    z-index: 1002;
    flex-direction: column;
    gap: 4px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    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;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        width: 100%;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        padding: 1.5rem 0;
        border-bottom: 1px solid #eee;
    }

    .footer-row.top-row {
        align-items: center;
    }

    .footer-row.bottom-row {
        border-bottom: none;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding-bottom: 0;
    }

    .footer-brand {
        flex: 1;
        min-width: 200px;
        margin-bottom: 1rem;
    }

    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .tagline {
        color: #666;
        font-size: 0.95rem;
        max-width: 300px;
    }

    .footer-nav {
        flex: 1;
        min-width: 200px;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: flex-end;
    }

    .footer-nav a {
        text-decoration: none;
        color: #2d3748;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2c5282;
    }

    .contact-block {
        flex: 1;
        min-width: 100%;
    }

    .contact-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2d3748;
    }

    .contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .contact-list li {
        margin-bottom: 0.5rem;
    }

    .contact-phone a,
    .contact-email a {
        color: #2c5282;
        text-decoration: none;
    }

    .contact-phone a:hover,
    .contact-email a:hover {
        text-decoration: underline;
    }

    .legal-links {
        margin-bottom: 0.5rem;
    }

    .legal-links a {
        color: #4a5568;
        text-decoration: none;
        margin: 0 0.5rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #2c5282;
    }

    .copyright {
        color: #718096;
        font-size: 0.9rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        color: #a0aec0;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.4;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1.5rem;
        }

        .contact-list {
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-brand {
            text-align: center;
        }

        .tagline {
            margin: 0 auto;
        }

        .legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .legal-links a {
            margin: 0;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

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

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

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

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

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

.site-header {
    background-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;
    position: relative;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    z-index: 1002;
    flex-direction: column;
    gap: 4px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    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;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        width: 100%;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        padding: 1.5rem 0;
        border-bottom: 1px solid #eee;
    }

    .footer-row.top-row {
        align-items: center;
    }

    .footer-row.bottom-row {
        border-bottom: none;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding-bottom: 0;
    }

    .footer-brand {
        flex: 1;
        min-width: 200px;
        margin-bottom: 1rem;
    }

    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .tagline {
        color: #666;
        font-size: 0.95rem;
        max-width: 300px;
    }

    .footer-nav {
        flex: 1;
        min-width: 200px;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: flex-end;
    }

    .footer-nav a {
        text-decoration: none;
        color: #2d3748;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2c5282;
    }

    .contact-block {
        flex: 1;
        min-width: 100%;
    }

    .contact-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2d3748;
    }

    .contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .contact-list li {
        margin-bottom: 0.5rem;
    }

    .contact-phone a,
    .contact-email a {
        color: #2c5282;
        text-decoration: none;
    }

    .contact-phone a:hover,
    .contact-email a:hover {
        text-decoration: underline;
    }

    .legal-links {
        margin-bottom: 0.5rem;
    }

    .legal-links a {
        color: #4a5568;
        text-decoration: none;
        margin: 0 0.5rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #2c5282;
    }

    .copyright {
        color: #718096;
        font-size: 0.9rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        color: #a0aec0;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.4;
    }

    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }

        .footer-nav ul {
            justify-content: center;
            gap: 1.5rem;
        }

        .contact-list {
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-brand {
            text-align: center;
        }

        .tagline {
            margin: 0 auto;
        }

        .legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .legal-links a {
            margin: 0;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.err-slab-a {
    padding: clamp(56px, 10vw, 110px) 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

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

.err-slab-a h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 58px);
}

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
}

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