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

  --max-w: 1080px;
  --space-x: 0.48rem;
  --space-y: 0.64rem;
  --gap: 0.44rem;

  --radius-xl: 0.7rem;
  --radius-lg: 0.52rem;
  --radius-md: 0.31rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 0px 4px rgba(0,0,0,0.09);
  --shadow-md: 0 3px 10px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 24px rgba(0,0,0,0.14);

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

  --brand: #2C3E50;
  --brand-contrast: #FFFFFF;
  --accent: #E74C3C;
  --accent-contrast: #FFFFFF;

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

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

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

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

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

  --bg-primary: #2C3E50;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1A252F;
  --ring: rgba(44, 62, 80, 0.25);

  --bg-accent: rgba(231, 76, 60, 0.1);
  --fg-on-accent: #E74C3C;
  --bg-accent-hover: #C0392B;

  --link: #2980B9;
  --link-hover: #1C5D87;

  --gradient-hero: linear-gradient(135deg, #2C3E50 0%, #4A6572 100%);
  --gradient-accent: linear-gradient(90deg, #E74C3C 0%, #C0392B 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 {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--brand-contrast);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    border-top: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 4) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 4);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.5rem) 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(-0.5rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a6572;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

    .footer-nav h4,
    .footer-legal h4,
    .footer-contact h4 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 1rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact address p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #bdc3c7;
    }

    .copyright {
        flex-grow: 1;
    }

    .disclaimer {
        flex-grow: 2;
        text-align: right;
        line-height: 1.4;
        max-width: 700px;
        font-size: 0.85rem;
    }

    .disclaimer a {
        color: #3498db;
        text-decoration: none;
    }

    .disclaimer a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .disclaimer {
            text-align: center;
            order: -1;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

.next-grid-l8 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

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

    .next-grid-l8__copy {
        margin-bottom: 1rem;
        text-align: center;
    }

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

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

    .next-grid-l8__copy span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
    }

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

    .next-grid-l8__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .next-grid-l8__grid div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--surface-2);
    }

    .next-grid-l8__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .next-grid-l8__grid a {
        color: var(--link);
        text-decoration: none;
    }

    .next-grid-l8__foot {
        margin-top: 1rem;
        text-align: center;
    }

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

.faq-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

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

    .faq-layout-a .section-head {
        margin-bottom: 14px;
    }

    .faq-layout-a h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--brand-contrast);
    }

    .faq-layout-a .section-head p {
        margin: 10px 0 0;
        opacity: .92;
        color: var(--brand-contrast);
    }

    .faq-layout-a .list {
        display: grid;
        gap: 10px;
    }

    .faq-layout-a .item {
        border-radius: var(--radius-md);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .3);
        background: rgba(255, 255, 255, .1);
    }

    .faq-layout-a .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        font-weight: 600;
        cursor: pointer;
        color: var(--brand-contrast);
    }

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

    .faq-layout-a .a p {
        margin: 0;
        padding: 0 12px 12px;
        opacity: .95;
        color: var(--brand-contrast);
    }

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

.why-choose {

        padding: clamp(16px, 3vw, 44px);
    }

    .why-choose--light.why-choose--v2 {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
    }

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

    .why-choose__wrap {
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.6vw, 26px);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-md);
    }

    .why-choose__h {
        margin-bottom: clamp(14px, 2vw, 22px);
    }

    .why-choose__pill {
        display: inline-flex;
        padding: 7px 12px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        line-height: 1.1;
        color: var(--bg-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: var(--neutral-600);
        max-width: 70ch;
    }

    .why-choose__cards {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .why-choose__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transform: perspective(900px) rotateX(0) rotateY(0) translateY(0);
        transition: transform 180ms var(--anim-ease),
        box-shadow 180ms var(--anim-ease),
        border-color 180ms var(--anim-ease);
        will-change: transform;
        position: relative;
    }

    /* dinamnic glow prin CSS variabile */
    .why-choose__card::after {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(220px 220px at var(--gx, 50%) var(--gy, 50%),
        rgba(0, 85, 183, 0.20), transparent 60%);

        transition: opacity 180ms var(--anim-ease);
        pointer-events: none;
    }

    .why-choose__card.is-hover {
        box-shadow: var(--shadow-lg);
        border-color: rgba(0, 85, 183, 0.28);
    }

    .why-choose__card.is-hover::after {
        opacity: 1;
    }

    .why-choose__cardHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background: rgba(0, 0, 0, 0.03);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .why-choose__num {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .why-choose__mini {
        color: var(--neutral-600);
        font-size: 0.9rem;
    }

    .why-choose__cardBody {
        padding: 14px 16px;
    }

    .why-choose__cardTitle {
        margin: 0 0 8px;
        color: var(--bg-primary);
        font-size: clamp(18px, 2.2vw, 20px);
    }

    .why-choose__cardText {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (max-width: 860px) {
        .why-choose__card {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .why-choose__card {
            transition: none;
            transform: none;
        }

        .why-choose__card::after {
            display: none;
        }
    }

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

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

    .plans-cv2__head {
        margin-bottom: 16px;
    }

    .plans-cv2__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv2__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .plans-cv2__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .plans-cv2__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: var(--space-y) var(--space-x);
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .plans-cv2__card.is-active {
        transform: translateY(-4px);
        border-color: var(--bg-accent);
    }

    .plans-cv2__line {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        align-items: center;
    }

    .plans-cv2__line h3 {
        margin: 0;
    }

    .plans-cv2__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .plans-cv2__price {
        margin: 10px 0 8px;
        font-size: 1.45rem;
        font-weight: 800;
    }

    .plans-cv2__list p {
        margin: 0 0 6px;
        opacity: .92;
    }

    .plans-cv2__card button {
        width: 100%;
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.site-header {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--brand-contrast);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    border-top: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 4) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 4);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.5rem) 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(-0.5rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a6572;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

    .footer-nav h4,
    .footer-legal h4,
    .footer-contact h4 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 1rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact address p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #bdc3c7;
    }

    .copyright {
        flex-grow: 1;
    }

    .disclaimer {
        flex-grow: 2;
        text-align: right;
        line-height: 1.4;
        max-width: 700px;
        font-size: 0.85rem;
    }

    .disclaimer a {
        color: #3498db;
        text-decoration: none;
    }

    .disclaimer a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .disclaimer {
            text-align: center;
            order: -1;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

    /* Dacă randomNumber este par (2) - primul copil primește 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;
    }

    /* Dacă randomNumber este par (2) - primul copil primește 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;
        }
    }

.site-header {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--brand-contrast);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    border-top: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 4) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 4);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.5rem) 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(-0.5rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a6572;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

    .footer-nav h4,
    .footer-legal h4,
    .footer-contact h4 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 1rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact address p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #bdc3c7;
    }

    .copyright {
        flex-grow: 1;
    }

    .disclaimer {
        flex-grow: 2;
        text-align: right;
        line-height: 1.4;
        max-width: 700px;
        font-size: 0.85rem;
    }

    .disclaimer a {
        color: #3498db;
        text-decoration: none;
    }

    .disclaimer a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .disclaimer {
            text-align: center;
            order: -1;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.product-item {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .index-feedback-summary__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);
        transform: translateY(-18px);
    }

    .index-feedback-summary__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
    }

    .index-feedback-summary__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .index-feedback-summary__layout {
        display: grid;
        grid-template-columns: minmax(260px, 340px) 1fr;
        gap: clamp(16px, 3vw, 28px);
        align-items: start;
    }

    .index-feedback-summary__panel {
        border-radius: var(--radius-xl);
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        padding: clamp(18px, 3vw, 26px);
        box-shadow: var(--shadow-md);

        transform: translateY(22px);
        position: sticky;
        top: 16px;
    }

    .index-feedback-summary__kpi {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 14px;
    }

    .index-feedback-summary__avg {
        width: 72px;
        height: 72px;
        border-radius: 22px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 22px;
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .index-feedback-summary__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 14px;
        line-height: 1;
        margin-bottom: 6px;
    }

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

    .index-feedback-summary__note {
        color: var(--fg-on-accent);
        font-size: 14px;
    }

    .index-feedback-summary__cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-feedback-summary__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        padding: 18px 18px 16px;

        transform: translateY(22px);
    }

    .index-feedback-summary__head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

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

    .index-feedback-summary__avatar {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-summary__who h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 900;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-summary__who p {
        margin: 2px 0 0;
        font-size: 12px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-summary__chip {
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        white-space: nowrap;
    }

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

    @media (max-width: 860px) {
        .index-feedback-summary__layout {
            grid-template-columns: 1fr;
        }

        .index-feedback-summary__panel {
            position: relative;
            top: 0;
        }
    }

.site-header {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--brand-contrast);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    border-top: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 4) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 4);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.5rem) 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(-0.5rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a6572;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

    .footer-nav h4,
    .footer-legal h4,
    .footer-contact h4 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 1rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact address p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #bdc3c7;
    }

    .copyright {
        flex-grow: 1;
    }

    .disclaimer {
        flex-grow: 2;
        text-align: right;
        line-height: 1.4;
        max-width: 700px;
        font-size: 0.85rem;
    }

    .disclaimer a {
        color: #3498db;
        text-decoration: none;
    }

    .disclaimer a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .disclaimer {
            text-align: center;
            order: -1;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.article-content-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.article-content-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.article-content-section__content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content-section__content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--fg-on-page);
}

.article-content-section__content p {
    max-width: 100%;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content ul,
.article-content-section__content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content-section__callout {
    margin-top: 2rem;
    padding: clamp(16px, 3vw, 24px);
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-on-surface);
}

.article-content-section__callout p {
    margin: 0;
    color: var(--fg-on-alt);
}

.article-content-section__actions {
    margin-top: 2rem;
    text-align: center;
}

.article-content-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.article-content-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.site-header {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--brand-contrast);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    border-top: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 4) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 4);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.5rem) 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(-0.5rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a6572;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

    .footer-nav h4,
    .footer-legal h4,
    .footer-contact h4 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 1rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact address p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #bdc3c7;
    }

    .copyright {
        flex-grow: 1;
    }

    .disclaimer {
        flex-grow: 2;
        text-align: right;
        line-height: 1.4;
        max-width: 700px;
        font-size: 0.85rem;
    }

    .disclaimer a {
        color: #3498db;
        text-decoration: none;
    }

    .disclaimer a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .disclaimer {
            text-align: center;
            order: -1;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

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

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

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

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

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

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

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

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

.product-item__sku {
    opacity: 0.9;
}

.two-column-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.two-column-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.two-column-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
    align-items: center;
}

.two-column-section__media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    display: block;
}

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
}

.two-column-section__text p {
    margin-bottom: var(--space-y);
    color: var(--neutral-600);
}

.two-column-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.two-column-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.site-header {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--brand-contrast);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    border-top: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 4) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 4);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.5rem) 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(-0.5rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a6572;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

    .footer-nav h4,
    .footer-legal h4,
    .footer-contact h4 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 1rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact address p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #bdc3c7;
    }

    .copyright {
        flex-grow: 1;
    }

    .disclaimer {
        flex-grow: 2;
        text-align: right;
        line-height: 1.4;
        max-width: 700px;
        font-size: 0.85rem;
    }

    .disclaimer a {
        color: #3498db;
        text-decoration: none;
    }

    .disclaimer a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .disclaimer {
            text-align: center;
            order: -1;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.checkout {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        outline: none;
    }

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

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

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

.site-header {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--brand-contrast);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    border-top: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 4) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 4);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.5rem) 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(-0.5rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a6572;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

    .footer-nav h4,
    .footer-legal h4,
    .footer-contact h4 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 1rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact address p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #bdc3c7;
    }

    .copyright {
        flex-grow: 1;
    }

    .disclaimer {
        flex-grow: 2;
        text-align: right;
        line-height: 1.4;
        max-width: 700px;
        font-size: 0.85rem;
    }

    .disclaimer a {
        color: #3498db;
        text-decoration: none;
    }

    .disclaimer a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .disclaimer {
            text-align: center;
            order: -1;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

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

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

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

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

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

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

.contacts-fresh-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

    .contacts-fresh-v5 .head p {
        margin: .35rem 0 0;
        opacity: .85;
    }

    .contacts-fresh-v5 .stack {
        display: grid;
        gap: .7rem;
    }

    .contacts-fresh-v5 details {
        background: var(--chip-bg);
        border-radius: var(--radius-md);
        padding: .8rem 1rem;
    }

    .contacts-fresh-v5 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .contacts-fresh-v5 .inside {
        display: grid;
        gap: .4rem;
        padding-top: .6rem;
    }

    .contacts-fresh-v5 .inside p {
        margin: 0;
    }

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

.site-header {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--brand-contrast);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    border-top: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 4) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 4);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.5rem) 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(-0.5rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a6572;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

    .footer-nav h4,
    .footer-legal h4,
    .footer-contact h4 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 1rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact address p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #bdc3c7;
    }

    .copyright {
        flex-grow: 1;
    }

    .disclaimer {
        flex-grow: 2;
        text-align: right;
        line-height: 1.4;
        max-width: 700px;
        font-size: 0.85rem;
    }

    .disclaimer a {
        color: #3498db;
        text-decoration: none;
    }

    .disclaimer a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .disclaimer {
            text-align: center;
            order: -1;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

    .terms-layout-a .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

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

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

    .terms-layout-a h3, .terms-layout-a h4 {
        margin: 0 0 8px;
    }

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

.site-header {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--brand-contrast);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    border-top: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 4) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 4);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.5rem) 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(-0.5rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a6572;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

    .footer-nav h4,
    .footer-legal h4,
    .footer-contact h4 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 1rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact address p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #bdc3c7;
    }

    .copyright {
        flex-grow: 1;
    }

    .disclaimer {
        flex-grow: 2;
        text-align: right;
        line-height: 1.4;
        max-width: 700px;
        font-size: 0.85rem;
    }

    .disclaimer a {
        color: #3498db;
        text-decoration: none;
    }

    .disclaimer a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .disclaimer {
            text-align: center;
            order: -1;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.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 {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--brand-contrast);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    border-top: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 4) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 4);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.5rem) 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(-0.5rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a6572;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

    .footer-nav h4,
    .footer-legal h4,
    .footer-contact h4 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 1rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact address p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #bdc3c7;
    }

    .copyright {
        flex-grow: 1;
    }

    .disclaimer {
        flex-grow: 2;
        text-align: right;
        line-height: 1.4;
        max-width: 700px;
        font-size: 0.85rem;
    }

    .disclaimer a {
        color: #3498db;
        text-decoration: none;
    }

    .disclaimer a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .disclaimer {
            text-align: center;
            order: -1;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

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

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

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

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

.site-header {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--brand-contrast);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    border-top: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 4) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 4);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.5rem) 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(-0.5rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a6572;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

    .footer-nav h4,
    .footer-legal h4,
    .footer-contact h4 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 1rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact address p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #bdc3c7;
    }

    .copyright {
        flex-grow: 1;
    }

    .disclaimer {
        flex-grow: 2;
        text-align: right;
        line-height: 1.4;
        max-width: 700px;
        font-size: 0.85rem;
    }

    .disclaimer a {
        color: #3498db;
        text-decoration: none;
    }

    .disclaimer a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .disclaimer {
            text-align: center;
            order: -1;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

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

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

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

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