:root {
  --font-family: "Epilogue", sans-serif;
  --font-size-base: 14.7px;
  --line-height-base: 1.25;

  --max-w: 1020px;
  --space-x: 0.77rem;
  --space-y: 1.07rem;
  --gap: 0.44rem;

  --radius-xl: 0.98rem;
  --radius-lg: 0.64rem;
  --radius-md: 0.38rem;
  --radius-sm: 0.16rem;

  --shadow-sm: 0 0px 2px rgba(0,0,0,0.1);
  --shadow-md: 0 3px 10px rgba(0,0,0,0.13);
  --shadow-lg: 0 14px 22px rgba(0,0,0,0.15);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 180ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --random-number: 1;

  --brand: #1A3A5C;
  --brand-contrast: #FFFFFF;
  --accent: #E85D3A;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D5DB;
  --neutral-600: #6B7280;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

  --bg-page: #FFFFFF;
  --fg-on-page: #1F2937;

  --bg-alt: #F0F4F8;
  --fg-on-alt: #374151;

  --surface-1: #FFFFFF;
  --surface-2: #F9FAFB;
  --fg-on-surface: #1F2937;
  --border-on-surface: #E5E7EB;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #4B5563;
  --border-on-surface-light: #E5E7EB;

  --bg-primary: #1A3A5C;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #142D47;
  --ring: #E85D3A;

  --bg-accent: #E85D3A;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #D04A2A;

  --link: #1A3A5C;
  --link-hover: #E85D3A;

  --gradient-hero: linear-gradient(135deg, #1A3A5C 0%, #2B5A7A 100%);
  --gradient-accent: linear-gradient(135deg, #E85D3A 0%, #D04A2A 100%);

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

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
        line-height: 1.2;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        .nav.open {
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
            text-align: center;
        }
        .nav-link {
            font-size: calc(var(--font-size-base) * 1.25);
            padding: 12px 24px;
            display: block;
            width: 100%;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}

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

.footer-nav .nav-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-nav .nav-list a:hover {
  color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
}

.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  width: 100%;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #f0a500;
}

.disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 700px;
  line-height: 1.4;
}

.copyright {
  font-size: 0.8rem;
  color: #666;
}

@media (max-width: 600px) {
  .footer-nav .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .footer-contact {
    flex-direction: column;
    gap: 0.5rem;
  }

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

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.hero {
        position: relative;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #000000;
        overflow: hidden;
    }

    .hero--compact {
        min-height: 400px;
    }

    .hero__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    .hero__overlay {
        position: absolute;
        inset: 0;
        background: var(--gradient-hero);
        opacity: 0.7;
        z-index: -1;
    }

    .hero--tint .hero__overlay {
        opacity: 0.55;
    }

    .hero__content {
        max-width: 900px;
        padding: clamp(16px, 3vw, 32px);
        z-index: 1;
    }

    .hero--tint .hero__content {
        background: var(--chip-bg);
        border-radius: var(--radius-lg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .hero h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
        text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

    .hero p {
        font-size: clamp(16px, 2.5vw, 20px);
        font-weight: 400;
        margin: 0 auto 0;
        max-width: 700px;
    }

.social-c1 {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.faq-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: white;
        color: black;
    }

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

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

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

    .faq-layout-d .section-head p {
        margin: 10px auto 0;
        max-width: 68ch;
    }

    .faq-layout-d .cards {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    }

    .faq-layout-d .card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        background: var(--accent);
        color: var(--accent-contrast);
        padding: var(--space-y) var(--space-x);
    }

    .faq-layout-d .card h3 {
        margin: 0;
        font-size: 1.05rem;
    }

    .faq-layout-d .card p {
        margin: 9px 0 0;
        color: var(--neutral-100);
    }

.clar-ux4{padding:clamp(20px,3vw,44px);background:var(--bg-primary);color:var(--fg-on-primary)}.clar-ux4__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux4 h2{margin:0;font-size:clamp(24px,4vw,40px)}.clar-ux4>div>p{margin:8px 0 12px;color:rgba(255,255,255,.86)}.clar-ux4__stack{display:grid;gap:10px}.clar-ux4__stack article{border:1px solid rgba(255,255,255,.28);border-radius:var(--radius-lg);background:rgba(255,255,255,.12)}.clar-ux4__stack button{width:100%;border:0;background:transparent;color:inherit;text-align:left;padding:12px;font:inherit;font-weight:700}.clar-ux4__stack p{margin:0;max-height:0;overflow:hidden;padding:0 12px;transition:max-height var(--anim-duration) var(--anim-ease),padding var(--anim-duration) var(--anim-ease)}.clar-ux4__stack article.is-open p{max-height:220px;padding:0 12px 12px}

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
        line-height: 1.2;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        .nav.open {
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
            text-align: center;
        }
        .nav-link {
            font-size: calc(var(--font-size-base) * 1.25);
            padding: 12px 24px;
            display: block;
            width: 100%;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}

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

.footer-nav .nav-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-nav .nav-list a:hover {
  color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
}

.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  width: 100%;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #f0a500;
}

.disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 700px;
  line-height: 1.4;
}

.copyright {
  font-size: 0.8rem;
  color: #666;
}

@media (max-width: 600px) {
  .footer-nav .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .footer-contact {
    flex-direction: column;
    gap: 0.5rem;
  }

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

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.review-list {

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

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

    .review-list .review-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .review-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .review-list .review-list__rating {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .review-list .review-list__rating-value {
        font-size: 2rem;
        font-weight: 700;
    }

    .review-list .review-list__stars {
        color: #ffd700;
        font-size: 1.5rem;
    }

    .review-list .review-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .review-list .review-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: var(--fg-on-page);
        color: var(--bg-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .review-list .review-list__filter:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .review-list .review-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .review-list .review-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .review-list .review-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .review-list .review-list__card {
        background: var(--fg-on-primary);
        backdrop-filter: blur(10px);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .review-list .review-list__author {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
        align-items: center;
    }

    .review-list .review-list__avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: var(--fg-on-page);
    }

    .review-list h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-page);
    }

    .review-list p {
        color: var(--bg-primary);
        line-height: 1.6;
        margin: 0 0 1rem;
    }

    .review-list .review-list__date {
        font-size: 0.875rem;

    }

.add-review--colored-v5 {

    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.add-review__inner {
    max-width: 520px;
    margin: 0 auto;
}

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

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

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

.add-review__field span {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 4px;
    color: var(--neutral-100);
}

.add-review__form input,
.add-review__form textarea {
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid rgba(75,85,99,0.9);
    background: rgba(15,23,42,0.9);
    color: var(--neutral-0);
    padding: 8px 10px;
    font-family: inherit;
    font-size: 0.9rem;
}

.add-review__stars {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.add-review__submit {
    margin-top: 6px;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
}

.social-c1 {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
        line-height: 1.2;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        .nav.open {
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
            text-align: center;
        }
        .nav-link {
            font-size: calc(var(--font-size-base) * 1.25);
            padding: 12px 24px;
            display: block;
            width: 100%;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}

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

.footer-nav .nav-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-nav .nav-list a:hover {
  color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
}

.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  width: 100%;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #f0a500;
}

.disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 700px;
  line-height: 1.4;
}

.copyright {
  font-size: 0.8rem;
  color: #666;
}

@media (max-width: 600px) {
  .footer-nav .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .footer-contact {
    flex-direction: column;
    gap: 0.5rem;
  }

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

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.review-item {

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

    .review-item .review-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

    .review-item .review-item__author-info {
        display: flex;
        gap: 1rem;
        margin-bottom: var(--space-y);
        align-items: flex-start;
    }

    .review-item .review-item__avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.5rem;
    }

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

    .review-item .review-item__author {
        color: var(--neutral-600);
        margin-bottom: 0.5rem;
    }

    .review-item .review-item__rating {
        color: #ffd700;
        font-size: 1.25rem;
    }

    .review-item .review-item__content {
        line-height: 1.8;
        color: var(--fg-on-primary);
        margin-bottom: var(--space-y);
    }

    .review-item .review-item__meta {
        padding-top: var(--space-y);
        border-top: 1px solid var(--ring);
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

.author--light-v6 {

    padding: 32px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.author__inner {
    max-width: 520px;
    margin: 0 auto;
}

.author__name {
    margin: 0 0 4px;
    font-size: 1.05rem;
}

.author__role {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.author__bio {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
        line-height: 1.2;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        .nav.open {
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
            text-align: center;
        }
        .nav-link {
            font-size: calc(var(--font-size-base) * 1.25);
            padding: 12px 24px;
            display: block;
            width: 100%;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}

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

.footer-nav .nav-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-nav .nav-list a:hover {
  color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
}

.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  width: 100%;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #f0a500;
}

.disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 700px;
  line-height: 1.4;
}

.copyright {
  font-size: 0.8rem;
  color: #666;
}

@media (max-width: 600px) {
  .footer-nav .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .footer-contact {
    flex-direction: column;
    gap: 0.5rem;
  }

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

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.review-item {

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

    .review-item .review-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

    .review-item .review-item__author-info {
        display: flex;
        gap: 1rem;
        margin-bottom: var(--space-y);
        align-items: flex-start;
    }

    .review-item .review-item__avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-page) fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.5rem;
    }

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

    .review-item .review-item__author {
        color: var(--neutral-600);
        margin-bottom: 0.5rem;
    }

    .review-item .review-item__rating {
        color: #ffd700;
        font-size: 1.25rem;
    }

    .review-item .review-item__content {
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .review-item .review-item__meta {
        padding-top: var(--space-y);
        border-top: 1px solid var(--ring);
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

.identity-cv1 {
        padding: clamp(56px, 8vw, 104px) clamp(16px, 4vw, 40px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .identity-cv1__head {
        text-align: center;
        margin-bottom: 18px;
    }

    .identity-cv1__head p {
        margin: 0;
        opacity: .9;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .identity-cv1__head h2 {
        margin: 8px 0;
        font-size: clamp(30px, 5vw, 52px);
    }

    .identity-cv1__head span {
        display: block;
        max-width: 74ch;
        margin: 0 auto;
        opacity: .92;
    }

    .identity-cv1__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    }

    .identity-cv1__grid article {
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
    }

    .identity-cv1__icon {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .identity-cv1__grid h3 {
        margin: 0;
    }

    .identity-cv1__grid p {
        margin: 7px 0;
        opacity: .92;
    }

    .identity-cv1__grid small {
        opacity: .9;
    }

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
        line-height: 1.2;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        .nav.open {
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
            text-align: center;
        }
        .nav-link {
            font-size: calc(var(--font-size-base) * 1.25);
            padding: 12px 24px;
            display: block;
            width: 100%;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}

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

.footer-nav .nav-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-nav .nav-list a:hover {
  color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
}

.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  width: 100%;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #f0a500;
}

.disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 700px;
  line-height: 1.4;
}

.copyright {
  font-size: 0.8rem;
  color: #666;
}

@media (max-width: 600px) {
  .footer-nav .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .footer-contact {
    flex-direction: column;
    gap: 0.5rem;
  }

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

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.review-item {

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

    .review-item .review-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

    .review-item .review-item__author-info {
        display: flex;
        gap: 1rem;
        margin-bottom: var(--space-y);
        align-items: flex-start;
    }

    .review-item .review-item__avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.5rem;
    }

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

    .review-item .review-item__author {
        color: var(--neutral-600);
        margin-bottom: 0.5rem;
    }

    .review-item .review-item__rating {
        color: #ffd700;
        font-size: 1.25rem;
    }

    .review-item .review-item__content {
        line-height: 1.8;
        color: var(--fg-on-primary);
        margin-bottom: var(--space-y);
    }

    .review-item .review-item__meta {
        padding-top: var(--space-y);
        border-top: 1px solid var(--ring);
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
        line-height: 1.2;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        .nav.open {
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
            text-align: center;
        }
        .nav-link {
            font-size: calc(var(--font-size-base) * 1.25);
            padding: 12px 24px;
            display: block;
            width: 100%;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}

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

.footer-nav .nav-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-nav .nav-list a:hover {
  color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
}

.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  width: 100%;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #f0a500;
}

.disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 700px;
  line-height: 1.4;
}

.copyright {
  font-size: 0.8rem;
  color: #666;
}

@media (max-width: 600px) {
  .footer-nav .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .footer-contact {
    flex-direction: column;
    gap: 0.5rem;
  }

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

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.social-c1 {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.feedback-ux6 {
        background: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.75), transparent 60%),
        var(--gradient-hero);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .feedback-ux6__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .feedback-ux6__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .feedback-ux6__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .feedback-ux6__list {
        display: grid;
        gap: 12px;
    }

    .feedback-ux6__row {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(248, 225, 231, 0.95);
        background: rgba(58, 46, 61, 0.92);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .feedback-ux6__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--bg-page);
        font: inherit;
    }

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

    .feedback-ux6__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .feedback-ux6__name {
        font-weight: 800;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .feedback-ux6__meta {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .feedback-ux6__right {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .feedback-ux6__stars {
        color: var(--brand);
        letter-spacing: 0.08em;
        font-size: 13px;
        line-height: 1;
    }

    .feedback-ux6__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--bg-page);
    }

    .feedback-ux6__a {
        display: none;
        padding: 0 16px 14px;
        color: rgba(255, 255, 255, 0.85);
        overflow: hidden;
    }

    .feedback-ux6__quote {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
    }

    .feedback-ux6__badge {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.78);
    }

.next-ux25 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900)
    }

    .next-ux25 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .next-ux25 h2, .next-ux25 h3, .next-ux25 p {
        margin: 0
    }

    .next-ux25 a {
        text-decoration: none
    }

    .next-ux25 .center, .next-ux25 .banner, .next-ux25 .stack, .next-ux25 .bar, .next-ux25 .split, .next-ux25 .duo article {
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--border-on-surface)
    }

    .next-ux25 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

    .next-ux25 .split {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    .next-ux25 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

    .next-ux25 .actions a, .next-ux25 .center a, .next-ux25 .banner > a, .next-ux25 .duo a {
        display: inline-flex;
        min-height: 2.35rem;
        padding: 0 .85rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .next-ux25 .banner {
        display: grid;
        gap: .6rem
    }

    .next-ux25 .numbers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: .5rem
    }

    .next-ux25 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300)
    }

    .next-ux25 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .next-ux25 .duo article {
        display: grid;
        gap: .45rem
    }

    .next-ux25 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .next-ux25 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .next-ux25 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300)
    }

    .next-ux25 .bar {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    @media (max-width: 820px) {
        .next-ux25 .split, .next-ux25 .bar, .next-ux25 .duo {
            grid-template-columns:1fr
        }

        .next-ux25 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .next-ux25 .numbers {
            grid-template-columns:1fr
        }
    }

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
        line-height: 1.2;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        .nav.open {
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
            text-align: center;
        }
        .nav-link {
            font-size: calc(var(--font-size-base) * 1.25);
            padding: 12px 24px;
            display: block;
            width: 100%;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}

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

.footer-nav .nav-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-nav .nav-list a:hover {
  color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
}

.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  width: 100%;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #f0a500;
}

.disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 700px;
  line-height: 1.4;
}

.copyright {
  font-size: 0.8rem;
  color: #666;
}

@media (max-width: 600px) {
  .footer-nav .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .footer-contact {
    flex-direction: column;
    gap: 0.5rem;
  }

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

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.contacts-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .contacts-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .contacts-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .contacts-u7 .sub{margin:.35rem 0 0;opacity:.9;} .contacts-u7 article,.contacts-u7 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .contacts-u7 p{margin:0} .contacts-u7 a{text-decoration:none;color:inherit;font-weight:700} .contacts-u7 .pulse{margin-top:.8rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);animation:contacts-u7Pulse 2.8s ease-in-out infinite} @keyframes contacts-u7Pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.01)}} .contacts-u7 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .contacts-u7 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.contacts-u7 .split,.contacts-u7 .media,.contacts-u7 .grid,.contacts-u7 .cards,.contacts-u7 .bento,.contacts-u7 .foot{grid-template-columns:1fr}}

.frm-lx2{padding:calc(var(--space-y)*2.9) var(--space-x)}
.frm-lx2 .frm-shell{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)}
.frm-lx2 .frm-intro{padding:1rem;border-radius:var(--radius-lg);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.frm-lx2 h2{margin:0;font-size:clamp(1.85rem,3.5vw,2.65rem)}
.frm-lx2 .frm-intro p{margin:.45rem 0 0;color:var(--fg-on-surface-light)}
.frm-lx2 .frm-panel{padding:1.1rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-xl);background:var(--surface-1);box-shadow:var(--shadow-md);display:grid;gap:.75rem}
.frm-lx2 .frm-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.62rem}
.frm-lx2 label{display:grid;gap:.28rem}
.frm-lx2 span{font-size:.84rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx2 input,.frm-lx2 textarea{width:100%;padding:.78rem .82rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-md);background:var(--surface-1);color:var(--fg-on-surface);font:inherit;outline:none;transition:border-color var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)}
.frm-lx2 input:focus,.frm-lx2 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 20%, transparent)}
.frm-lx2 textarea{min-height:128px;resize:vertical}
.frm-lx2 button{justify-self:start;padding:.82rem 1.1rem;border:0;border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
.frm-lx2 button:hover{background:var(--bg-primary-hover)}
@media (max-width:920px){.frm-lx2 .frm-shell,.frm-lx2 .frm-grid{grid-template-columns:1fr}}

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
        line-height: 1.2;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        .nav.open {
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
            text-align: center;
        }
        .nav-link {
            font-size: calc(var(--font-size-base) * 1.25);
            padding: 12px 24px;
            display: block;
            width: 100%;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}

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

.footer-nav .nav-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-nav .nav-list a:hover {
  color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
}

.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  width: 100%;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #f0a500;
}

.disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 700px;
  line-height: 1.4;
}

.copyright {
  font-size: 0.8rem;
  color: #666;
}

@media (max-width: 600px) {
  .footer-nav .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .footer-contact {
    flex-direction: column;
    gap: 0.5rem;
  }

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

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.policyitems-u9{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .policyitems-u9 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .policyitems-u9 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .policyitems-u9 .sub{margin:.35rem 0 0;opacity:.9;} .policyitems-u9 article,.policyitems-u9 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .policyitems-u9 p{margin:0} .policyitems-u9 a{text-decoration:none;color:inherit;font-weight:700} .policyitems-u9 .pulse{margin-top:.8rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);animation:policyitems-u9Pulse 2.8s ease-in-out infinite} @keyframes policyitems-u9Pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.01)}} .policyitems-u9 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .policyitems-u9 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.policyitems-u9 .split,.policyitems-u9 .media,.policyitems-u9 .grid,.policyitems-u9 .cards,.policyitems-u9 .bento,.policyitems-u9 .foot{grid-template-columns:1fr}}

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
        line-height: 1.2;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        .nav.open {
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
            text-align: center;
        }
        .nav-link {
            font-size: calc(var(--font-size-base) * 1.25);
            padding: 12px 24px;
            display: block;
            width: 100%;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}

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

.footer-nav .nav-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-nav .nav-list a:hover {
  color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
}

.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  width: 100%;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #f0a500;
}

.disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 700px;
  line-height: 1.4;
}

.copyright {
  font-size: 0.8rem;
  color: #666;
}

@media (max-width: 600px) {
  .footer-nav .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .footer-contact {
    flex-direction: column;
    gap: 0.5rem;
  }

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

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

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

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

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

    .policy-layout-b ol {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

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

    .policy-layout-b h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

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

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
        line-height: 1.2;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        .nav.open {
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
            text-align: center;
        }
        .nav-link {
            font-size: calc(var(--font-size-base) * 1.25);
            padding: 12px 24px;
            display: block;
            width: 100%;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}

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

.footer-nav .nav-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-nav .nav-list a:hover {
  color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
}

.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  width: 100%;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #f0a500;
}

.disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 700px;
  line-height: 1.4;
}

.copyright {
  font-size: 0.8rem;
  color: #666;
}

@media (max-width: 600px) {
  .footer-nav .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .footer-contact {
    flex-direction: column;
    gap: 0.5rem;
  }

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

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.thank-u1{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)} .thank-u1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u1 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u1 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u1 article,.thank-u1 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u1 p{margin:0} .thank-u1 a{text-decoration:none;color:inherit;font-weight:700} .thank-u1 .pulse{margin-top:.8rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);animation:thank-u1Pulse 2.8s ease-in-out infinite} @keyframes thank-u1Pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.01)}} @media (max-width:860px){.thank-u1 .split,.thank-u1 .media,.thank-u1 .grid,.thank-u1 .cards,.thank-u1 .bento,.thank-u1 .foot{grid-template-columns:1fr}}

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
        line-height: 1.2;
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        .nav.open {
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
            text-align: center;
        }
        .nav-link {
            font-size: calc(var(--font-size-base) * 1.25);
            padding: 12px 24px;
            display: block;
            width: 100%;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}

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

.footer-nav .nav-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-nav .nav-list a:hover {
  color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
}

.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  width: 100%;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #f0a500;
}

.disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 700px;
  line-height: 1.4;
}

.copyright {
  font-size: 0.8rem;
  color: #666;
}

@media (max-width: 600px) {
  .footer-nav .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .footer-contact {
    flex-direction: column;
    gap: 0.5rem;
  }

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

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.err-slab-c {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: linear-gradient(180deg, var(--bg-accent), var(--bg-page));
        color: var(--fg-on-page);
    }

    .err-slab-c .tile {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 44px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        border-top: 8px solid var(--accent);
    }

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

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

    .err-slab-c a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: 999px;
        border: 1px solid var(--neutral-300);
        color: var(--fg-on-page);
        text-decoration: none;
    }