:root {
  --font-family: "Montserrat", sans-serif;
  --font-size-base: 17.3px;
  --line-height-base: 1.68;

  --max-w: 1520px;
  --space-x: 2.61rem;
  --space-y: 1.5rem;
  --gap: 1.26rem;

  --radius-xl: 1.27rem;
  --radius-lg: 0.84rem;
  --radius-md: 0.51rem;
  --radius-sm: 0.25rem;

  --shadow-sm: 0 2px 5px rgba(0,0,0,0.15);
  --shadow-md: 0 6px 18px rgba(0,0,0,0.2);
  --shadow-lg: 0 26px 40px rgba(0,0,0,0.24);

  --overlay: rgba(10, 25, 47, 0.7);
  --anim-duration: 280ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 2;

  --brand: #1a2a4a;
  --brand-contrast: #ffffff;
  --accent: #c0a86a;
  --accent-contrast: #1a2a4a;

  --neutral-0: #ffffff;
  --neutral-100: #f4f6f9;
  --neutral-300: #c8cdd5;
  --neutral-600: #6b7280;
  --neutral-800: #2d3748;
  --neutral-900: #1a202c;

  --bg-page: #ffffff;
  --fg-on-page: #1a202c;

  --bg-alt: #f4f6f9;
  --fg-on-alt: #2d3748;

  --surface-1: #ffffff;
  --surface-2: #f4f6f9;
  --fg-on-surface: #1a202c;
  --border-on-surface: #c8cdd5;

  --surface-light: #fafbfc;
  --fg-on-surface-light: #2d3748;
  --border-on-surface-light: #e2e6ed;

  --bg-primary: #1a2a4a;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #2a406a;
  --ring: #c0a86a;

  --bg-accent: #c0a86a;
  --fg-on-accent: #1a2a4a;
  --bg-accent-hover: #a88f4f;

  --link: #1a2a4a;
  --link-hover: #c0a86a;

  --gradient-hero: linear-gradient(135deg, #1a2a4a 0%, #2a406a 100%);
  --gradient-accent: linear-gradient(135deg, #c0a86a 0%, #d4be8a 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: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.4);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface, #333333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link.active {
    color: var(--brand, #1a73e8);
    border-bottom-color: var(--brand, #1a73e8);
  }
  .cta-secondary {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent, #ff5722);
    color: var(--fg-on-accent, #ffffff);
    border-radius: var(--radius-md, 8px);
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover, #e64a19);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface, #333333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-inner {
      flex-wrap: wrap;
    }
    .burger {
      display: flex;
      order: 2;
    }
    .nav {
      order: 3;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav.open {
      max-height: 500px;
      padding-top: var(--space-y, 0.75rem);
    }
    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }
    .nav-link {
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    }
    .nav-link.active {
      border-bottom-color: var(--brand, #1a73e8);
    }
    .cta-secondary {
      order: 1;
      margin-left: auto;
      font-size: 0.9rem;
      padding: 0.4rem 1rem;
    }
    .logo {
      order: 0;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 300px;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e74c3c;
  }
  .footer-contact {
    flex: 1 1 300px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #e74c3c;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
    padding-top: 1rem;
  }
  .footer-bottom p {
    margin: 0.3rem 0;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    max-width: 800px;
    margin: 0.5rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.nfintro-v11 {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--fg-on-primary);
        overflow: hidden;
        min-height: 460px;
    }

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

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

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

    .nfintro-v11 h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
    }

    .nfintro-v11 p {
        font-size: clamp(16px, 2.5vw, 20px);
        margin: 0 auto calc(var(--space-y) * 1.5);
        max-width: 700px;
    }

    .nfintro-v11__actions {
        display: flex;
        gap: var(--gap);
        justify-content: center;
        flex-wrap: wrap;
    }

    .nfintro-v11__btn {
        display: inline-block;
        padding: 12px 26px;
        border-radius: var(--radius-md);
        text-align: center;
        text-decoration: none;
        border: 1px solid transparent;
        font-size: 1rem;
    }

    .nfintro-v11__btn--primary {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .nfintro-v11__btn--outline {
        background-color: transparent;
        color: var(--fg-on-primary);
        border-color: var(--fg-on-primary);
    }

.next-pins-l4 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

    .next-pins-l4__head {
        margin-bottom: 1.1rem;
    }

    .next-pins-l4__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

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

    .next-pins-l4__head span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
        max-width: 38rem;
    }

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

    .next-pins-l4__pins article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
    }

    .next-pins-l4__pins div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--neutral-100);
    }

    .next-pins-l4__pins h3 {
        margin: .75rem 0 .35rem;
    }

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

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

.nfsocial-v9 {
        padding: clamp(20px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

    .nfsocial-v9__head {
        margin-bottom: 14px;
    }

    .nfsocial-v9 h2 {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
    }

    .nfsocial-v9__head p {
        margin: 10px 0 0;
        opacity: .88;
    }

    .nfsocial-v9__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 12px;
    }

    .nfsocial-v9__grid article {
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
        background: rgba(255, 255, 255, .1);
        padding: 14px;
        display: grid;
        gap: 6px;
    }

    .nfsocial-v9__grid span {
        opacity: .9;
        font-size: .85rem;
    }

    .nfsocial-v9__grid strong {
        font-size: clamp(18px, 2.4vw, 28px);
    }

    .nfsocial-v9__grid p {
        margin: 0;
        opacity: .9;
    }

    .nfsocial-v9__grid h3 {
        margin: 6px 0 0;
        font-size: 1rem;
    }

    .nfsocial-v9__grid em {
        font-style: normal;
        opacity: .86;
    }

.about-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.4);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface, #333333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link.active {
    color: var(--brand, #1a73e8);
    border-bottom-color: var(--brand, #1a73e8);
  }
  .cta-secondary {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent, #ff5722);
    color: var(--fg-on-accent, #ffffff);
    border-radius: var(--radius-md, 8px);
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover, #e64a19);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface, #333333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-inner {
      flex-wrap: wrap;
    }
    .burger {
      display: flex;
      order: 2;
    }
    .nav {
      order: 3;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav.open {
      max-height: 500px;
      padding-top: var(--space-y, 0.75rem);
    }
    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }
    .nav-link {
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    }
    .nav-link.active {
      border-bottom-color: var(--brand, #1a73e8);
    }
    .cta-secondary {
      order: 1;
      margin-left: auto;
      font-size: 0.9rem;
      padding: 0.4rem 1rem;
    }
    .logo {
      order: 0;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 300px;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e74c3c;
  }
  .footer-contact {
    flex: 1 1 300px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #e74c3c;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
    padding-top: 1rem;
  }
  .footer-bottom p {
    margin: 0.3rem 0;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    max-width: 800px;
    margin: 0.5rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.messages {

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

    .messages .messages__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);

    }

    @media (max-width: 767px) {
        .messages .messages__c {
            grid-template-columns: 1fr;
            height: auto;
        }

        .messages .messages__chat-form {
            flex-direction: column;
        }
    }

    @media (min-width: 1024px) {
        .messages .messages__c {
            grid-template-columns: 300px 1fr;
        }
    }

    .messages .messages__list {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1rem;
        overflow-y: auto;
    }

    .messages h2 {
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
        font-size: 1.25rem;
    }

    .messages .messages__items {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .messages .messages__item {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.1);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .messages .messages__item:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .messages .messages__avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: var(--fg-on-primary);
        flex-shrink: 0;
    }

    .messages .messages__info {
        flex: 1;
        min-width: 0;
    }

    .messages h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-primary);
        font-size: 1rem;
    }

    .messages .messages__info p {
        margin: 0 0 0.25rem;
        color: var(--fg-on-primary);
        font-size: 0.875rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .messages .messages__time {
        font-size: 0.75rem;
        color: var(--fg-on-primary);
    }

    .messages .messages__chat {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
    }

    .messages .messages__chat-header {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages h3 {
        margin: 0;
        color: var(--fg-on-primary);
    }

    .messages .messages__chat-messages {
        flex: 1;
        padding: 1rem;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .messages .messages__message {
        background: rgba(255, 255, 255, 0.1);
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        max-width: 70%;
    }

    .messages .messages__message-text {
        color: var(--fg-on-primary);
        margin-bottom: 0.25rem;
    }

    .messages .messages__message-time {
        font-size: 0.75rem;
        color: var(--fg-on-primary);
    }

    .messages .messages__chat-form {
        display: flex;
        gap: 0.5rem;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages .messages__chat-form input {
        flex: 1;
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-primary);
        outline: none;
    }

    .messages .messages__chat-form input::placeholder {
        color: var(--fg-on-primary);
    }

    .messages .messages__chat-form button {
        padding: 0.875rem 1.5rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--gradient-hero);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
    }

.index-feedback-summary {
        background: var(--neutral-0);
        color: var(--neutral-900);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

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

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

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

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

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

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

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

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

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

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

    .index-feedback-summary__note {
        color: var(--neutral-900);
        font-size: 14px;
    }

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

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

        transform: translateY(22px);
    }

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

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

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

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

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

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

    .index-feedback-summary__quote {
        margin: 0;
        color: var(--neutral-800);
        font-size: 14px;
        line-height: 1.65;
    }

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

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

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

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

    .faq-layout-c .section-head {
        margin-bottom: 16px;
    }

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

    .faq-layout-c .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-700, var(--neutral-600));
    }

    .faq-layout-c .faq-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
        counter-reset: faq;
    }

    .faq-layout-c .row {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .faq-layout-c .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        cursor: pointer;
    }

    .faq-layout-c .q span {
        display: inline-block;
        min-width: 50px;
        color: var(--brand);
        font-weight: 700;
    }

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

    .faq-layout-c .a p {
        margin: 0;
        padding: 0 12px 12px;
        color: var(--neutral-600);
    }

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.4);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface, #333333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link.active {
    color: var(--brand, #1a73e8);
    border-bottom-color: var(--brand, #1a73e8);
  }
  .cta-secondary {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent, #ff5722);
    color: var(--fg-on-accent, #ffffff);
    border-radius: var(--radius-md, 8px);
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover, #e64a19);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface, #333333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-inner {
      flex-wrap: wrap;
    }
    .burger {
      display: flex;
      order: 2;
    }
    .nav {
      order: 3;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav.open {
      max-height: 500px;
      padding-top: var(--space-y, 0.75rem);
    }
    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }
    .nav-link {
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    }
    .nav-link.active {
      border-bottom-color: var(--brand, #1a73e8);
    }
    .cta-secondary {
      order: 1;
      margin-left: auto;
      font-size: 0.9rem;
      padding: 0.4rem 1rem;
    }
    .logo {
      order: 0;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 300px;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e74c3c;
  }
  .footer-contact {
    flex: 1 1 300px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #e74c3c;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
    padding-top: 1rem;
  }
  .footer-bottom p {
    margin: 0.3rem 0;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    max-width: 800px;
    margin: 0.5rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.nftouch-v9 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .nftouch-v9__wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .nftouch-v9__head {
        margin-bottom: 12px;
    }

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

    .nftouch-v9__head p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .nftouch-v9__stream {
        display: grid;
        gap: 8px;
    }

    .nftouch-v9__stream a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: 999px;
        background: rgba(255, 255, 255, .1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .nftouch-v9__stream span {
        opacity: .86;
        white-space: nowrap;
    }

    .nftouch-v9__foot {
        margin-top: 12px;
    }

    .nftouch-v9__foot a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: var(--radius-md);
        padding: 10px 14px;
        display: inline-block;
    }

    @media (max-width: 700px) {
        .nftouch-v9__stream a {
            flex-direction: column;
            align-items: flex-start;
            border-radius: var(--radius-md);
        }

        .nftouch-v9__stream span {
            white-space: normal;
        }
    }

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.4);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface, #333333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link.active {
    color: var(--brand, #1a73e8);
    border-bottom-color: var(--brand, #1a73e8);
  }
  .cta-secondary {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent, #ff5722);
    color: var(--fg-on-accent, #ffffff);
    border-radius: var(--radius-md, 8px);
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover, #e64a19);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface, #333333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-inner {
      flex-wrap: wrap;
    }
    .burger {
      display: flex;
      order: 2;
    }
    .nav {
      order: 3;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav.open {
      max-height: 500px;
      padding-top: var(--space-y, 0.75rem);
    }
    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }
    .nav-link {
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    }
    .nav-link.active {
      border-bottom-color: var(--brand, #1a73e8);
    }
    .cta-secondary {
      order: 1;
      margin-left: auto;
      font-size: 0.9rem;
      padding: 0.4rem 1rem;
    }
    .logo {
      order: 0;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 300px;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e74c3c;
  }
  .footer-contact {
    flex: 1 1 300px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #e74c3c;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
    padding-top: 1rem;
  }
  .footer-bottom p {
    margin: 0.3rem 0;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    max-width: 800px;
    margin: 0.5rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .faq-layout-c .section-head {
        margin-bottom: 16px;
    }

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

    .faq-layout-c .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-700, var(--neutral-600));
    }

    .faq-layout-c .faq-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
        counter-reset: faq;
    }

    .faq-layout-c .row {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .faq-layout-c .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        cursor: pointer;
    }

    .faq-layout-c .q span {
        display: inline-block;
        min-width: 50px;
        color: var(--brand);
        font-weight: 700;
    }

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

    .faq-layout-c .a p {
        margin: 0;
        padding: 0 12px 12px;
        color: var(--neutral-600);
    }

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

.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: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.4);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface, #333333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link.active {
    color: var(--brand, #1a73e8);
    border-bottom-color: var(--brand, #1a73e8);
  }
  .cta-secondary {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent, #ff5722);
    color: var(--fg-on-accent, #ffffff);
    border-radius: var(--radius-md, 8px);
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover, #e64a19);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface, #333333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-inner {
      flex-wrap: wrap;
    }
    .burger {
      display: flex;
      order: 2;
    }
    .nav {
      order: 3;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav.open {
      max-height: 500px;
      padding-top: var(--space-y, 0.75rem);
    }
    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }
    .nav-link {
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    }
    .nav-link.active {
      border-bottom-color: var(--brand, #1a73e8);
    }
    .cta-secondary {
      order: 1;
      margin-left: auto;
      font-size: 0.9rem;
      padding: 0.4rem 1rem;
    }
    .logo {
      order: 0;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 300px;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e74c3c;
  }
  .footer-contact {
    flex: 1 1 300px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #e74c3c;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
    padding-top: 1rem;
  }
  .footer-bottom p {
    margin: 0.3rem 0;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    max-width: 800px;
    margin: 0.5rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

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

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

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

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

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

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

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

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

.form-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .form-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .form-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .form-u5 .sub{margin:.35rem 0 0;opacity:.9;} .form-u5 .panel,.form-u5 .box{padding:1.1rem;border-radius:var(--radius-xl);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);box-shadow:var(--shadow-md)} .form-u5 form{display:grid;gap:.75rem} .form-u5 .field{display:grid;gap:.28rem} .form-u5 .field span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)} .form-u5 input,.form-u5 textarea{width:100%;padding:.8rem .85rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface-light);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)} .form-u5 input:focus,.form-u5 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 22%, transparent)} .form-u5 textarea{min-height:120px;resize:vertical} .form-u5 button{padding:.82rem 1rem;border:0;border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer;transition:transform var(--anim-duration) var(--anim-ease),background var(--anim-duration) var(--anim-ease)} .form-u5 button:hover{transform:translateY(-1px);background:var(--bg-primary-hover)} .form-u5 .split{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)} .form-u5 .grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem} .form-u5 .line{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u5 .bar{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u5 .stack{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u5 .steps{display:flex;gap:.45rem;flex-wrap:wrap} .form-u5 .steps span{padding:.33rem .55rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);font-size:.8rem} .form-u5 .agree{display:flex;align-items:center;gap:.45rem;font-size:.86rem} .form-u5 .media{display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)} .form-u5 .media img,.form-u5 .frame img{width:100%;height:100%;min-height:320px;object-fit:cover;border-radius:var(--radius-xl)} .form-u5 .frame{display:grid;grid-template-columns:1.1fr .9fr;gap:var(--gap)} .form-u5 .full{grid-column:1/-1} @media (max-width:860px){.form-u5 .split,.form-u5 .media,.form-u5 .frame{grid-template-columns:1fr} .form-u5 .grid,.form-u5 .bar{grid-template-columns:1fr}}

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.4);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface, #333333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link.active {
    color: var(--brand, #1a73e8);
    border-bottom-color: var(--brand, #1a73e8);
  }
  .cta-secondary {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent, #ff5722);
    color: var(--fg-on-accent, #ffffff);
    border-radius: var(--radius-md, 8px);
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover, #e64a19);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface, #333333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-inner {
      flex-wrap: wrap;
    }
    .burger {
      display: flex;
      order: 2;
    }
    .nav {
      order: 3;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav.open {
      max-height: 500px;
      padding-top: var(--space-y, 0.75rem);
    }
    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }
    .nav-link {
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    }
    .nav-link.active {
      border-bottom-color: var(--brand, #1a73e8);
    }
    .cta-secondary {
      order: 1;
      margin-left: auto;
      font-size: 0.9rem;
      padding: 0.4rem 1rem;
    }
    .logo {
      order: 0;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 300px;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e74c3c;
  }
  .footer-contact {
    flex: 1 1 300px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #e74c3c;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
    padding-top: 1rem;
  }
  .footer-bottom p {
    margin: 0.3rem 0;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    max-width: 800px;
    margin: 0.5rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.policyitems-u3{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .policyitems-u3 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .policyitems-u3 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .policyitems-u3 .sub{margin:.35rem 0 0;opacity:.9;} .policyitems-u3 article,.policyitems-u3 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .policyitems-u3 p{margin:0} .policyitems-u3 a{text-decoration:none;color:inherit;font-weight:700} .policyitems-u3 .rail{display:flex;gap:.55rem;overflow:auto} .policyitems-u3 .rail article{min-width:240px} .policyitems-u3 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .policyitems-u3 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.policyitems-u3 .split,.policyitems-u3 .media,.policyitems-u3 .grid,.policyitems-u3 .cards,.policyitems-u3 .bento,.policyitems-u3 .foot{grid-template-columns:1fr}}

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.4);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface, #333333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link.active {
    color: var(--brand, #1a73e8);
    border-bottom-color: var(--brand, #1a73e8);
  }
  .cta-secondary {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent, #ff5722);
    color: var(--fg-on-accent, #ffffff);
    border-radius: var(--radius-md, 8px);
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover, #e64a19);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface, #333333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-inner {
      flex-wrap: wrap;
    }
    .burger {
      display: flex;
      order: 2;
    }
    .nav {
      order: 3;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav.open {
      max-height: 500px;
      padding-top: var(--space-y, 0.75rem);
    }
    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }
    .nav-link {
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    }
    .nav-link.active {
      border-bottom-color: var(--brand, #1a73e8);
    }
    .cta-secondary {
      order: 1;
      margin-left: auto;
      font-size: 0.9rem;
      padding: 0.4rem 1rem;
    }
    .logo {
      order: 0;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 300px;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e74c3c;
  }
  .footer-contact {
    flex: 1 1 300px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #e74c3c;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
    padding-top: 1rem;
  }
  .footer-bottom p {
    margin: 0.3rem 0;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    max-width: 800px;
    margin: 0.5rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

    .terms-layout-c .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

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

    .terms-layout-c summary {
        cursor: pointer;
        color: var(--brand);
        font-weight: 700;
    }

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

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.4);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface, #333333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link.active {
    color: var(--brand, #1a73e8);
    border-bottom-color: var(--brand, #1a73e8);
  }
  .cta-secondary {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent, #ff5722);
    color: var(--fg-on-accent, #ffffff);
    border-radius: var(--radius-md, 8px);
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover, #e64a19);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface, #333333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-inner {
      flex-wrap: wrap;
    }
    .burger {
      display: flex;
      order: 2;
    }
    .nav {
      order: 3;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav.open {
      max-height: 500px;
      padding-top: var(--space-y, 0.75rem);
    }
    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }
    .nav-link {
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    }
    .nav-link.active {
      border-bottom-color: var(--brand, #1a73e8);
    }
    .cta-secondary {
      order: 1;
      margin-left: auto;
      font-size: 0.9rem;
      padding: 0.4rem 1rem;
    }
    .logo {
      order: 0;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 300px;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e74c3c;
  }
  .footer-contact {
    flex: 1 1 300px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #e74c3c;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
    padding-top: 1rem;
  }
  .footer-bottom p {
    margin: 0.3rem 0;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    max-width: 800px;
    margin: 0.5rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.thx-lx4{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.thx-lx4 .thx-wrap{max-width:900px;margin:0 auto;display:grid;gap:.72rem}
.thx-lx4 .thx-hero{padding:1rem;border-radius:var(--radius-xl);border:1px solid var(--border-on-surface);background:var(--surface-1);text-align:center}
.thx-lx4 h2{margin:0;font-size:clamp(1.75rem,3.2vw,2.45rem)}
.thx-lx4 .thx-hero p{margin:.4rem 0 0;color:var(--fg-on-surface-light)}
.thx-lx4 ul{margin:0;padding:0;list-style:none;display:grid;gap:.45rem}
.thx-lx4 li{padding:.72rem .82rem;border-radius:var(--radius-md);background:var(--surface-1);border-inline-start:4px solid var(--bg-primary)}
.thx-lx4 .thx-line{margin:0;padding:.75rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px dashed var(--border-on-surface-light)}

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.4);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface, #333333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link.active {
    color: var(--brand, #1a73e8);
    border-bottom-color: var(--brand, #1a73e8);
  }
  .cta-secondary {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent, #ff5722);
    color: var(--fg-on-accent, #ffffff);
    border-radius: var(--radius-md, 8px);
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover, #e64a19);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface, #333333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-inner {
      flex-wrap: wrap;
    }
    .burger {
      display: flex;
      order: 2;
    }
    .nav {
      order: 3;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav.open {
      max-height: 500px;
      padding-top: var(--space-y, 0.75rem);
    }
    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }
    .nav-link {
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    }
    .nav-link.active {
      border-bottom-color: var(--brand, #1a73e8);
    }
    .cta-secondary {
      order: 1;
      margin-left: auto;
      font-size: 0.9rem;
      padding: 0.4rem 1rem;
    }
    .logo {
      order: 0;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 300px;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e74c3c;
  }
  .footer-contact {
    flex: 1 1 300px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #e74c3c;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
    padding-top: 1rem;
  }
  .footer-bottom p {
    margin: 0.3rem 0;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    max-width: 800px;
    margin: 0.5rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.nf404-v10 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .nf404-v10__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

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

    .nf404-v10 p {
        margin: 12px 0 0;
        color: var(--neutral-600);
    }

    .nf404-v10 a {
        display: inline-block;
        margin-top: 18px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }