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

  --max-w: 980px;
  --space-x: 0.95rem;
  --space-y: 0.59rem;
  --gap: 0.84rem;

  --radius-xl: 0.97rem;
  --radius-lg: 0.54rem;
  --radius-md: 0.34rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 3px 14px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 18px rgba(0,0,0,0.12);

  --overlay: rgba(10, 20, 40, 0.7);
  --anim-duration: 110ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 2;

  --brand: #0A1F3F;
  --brand-contrast: #FFFFFF;
  --accent: #1E6F9F;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F4F6F8;
  --neutral-300: #C8D0D8;
  --neutral-600: #6B7A8A;
  --neutral-800: #2C3A4A;
  --neutral-900: #0A1F3F;

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

  --bg-alt: #F0F4F8;
  --fg-on-alt: #1A2A3A;

  --surface-1: #FFFFFF;
  --surface-2: #F8FAFC;
  --fg-on-surface: #1A2A3A;
  --border-on-surface: #D6DEE6;

  --surface-light: #F4F7FA;
  --fg-on-surface-light: #2C3A4A;
  --border-on-surface-light: #D6DEE6;

  --bg-primary: #0A3D6B;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #08304F;
  --ring: #1E6F9F;

  --bg-accent: #1E6F9F;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #155A82;

  --link: #1E6F9F;
  --link-hover: #155A82;

  --gradient-hero: linear-gradient(135deg, #0A1F3F 0%, #1E6F9F 100%);
  --gradient-accent: linear-gradient(135deg, #1E6F9F 0%, #0A3D6B 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 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem;
    backdrop-filter: blur(4px);
  }

  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-btn {
    background: var(--accent);
    color: var(--accent-contrast);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
    transform: scale(1.02);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

  @media (max-width: 767px) {
    .header-card {
      padding: 0.5rem 1rem;
    }

    .nav-menu {
      display: none;
      position: absolute;
      top: calc(100% + 0.5rem);
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      flex-direction: column;
      padding: 1rem;
      gap: 0.5rem;
    }

    .nav-menu.open {
      display: flex;
    }

    .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .cta-btn {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-middle {
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .contact-info ul li {
    font-size: 0.9rem;
  }
  .contact-info ul li a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info ul li a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
  }
  .footer-legal a {
    color: #e0e0e0;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .copyright {
    margin: 0;
    color: #aaa;
  }
  .disclaimer {
    width: 100%;
    text-align: center;
    color: #888;
    font-style: italic;
    margin: 10px 0 0;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .contact-info ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-legal {
      margin-bottom: 10px;
    }
    .footer-legal a {
      margin: 0 10px;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .next-ux23 {
        padding: clamp(3.1rem, 7vw, 5.6rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-ux23__wrap {
        max-width: 56rem;
        margin: 0 auto;
    }

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

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

    .next-ux23__line {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
        gap: .7rem;
    }

    .next-ux23__line a {
        display: flex;
        gap: .6rem;
        align-items: center;
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        text-decoration: none;
        color: var(--neutral-900);
    }

    .next-ux23__line i {
        font-style: normal;
    }

    .next-ux23__copy {
        margin: 1rem 0 0;
        color: var(--neutral-600);
    }

    .next-ux23__cta {
        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-v11 {
        padding: clamp(48px, 8vw, 80px) 0;
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .nfsocial-v11__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
    }

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

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

    .nfsocial-v11__text h2 {
        margin-bottom: var(--space-y);
    }

    .nfsocial-v11__text p {
        margin-bottom: var(--space-y);
        opacity: .92;
    }

    .nfsocial-v11__text a {
        display: inline-block;
        padding: 12px 24px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @media (max-width: 840px) {
        .nfsocial-v11__grid {
            grid-template-columns: 1fr;
        }
    }

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

    .touch-stream .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .touch-stream .touch-header {
        margin-bottom: 12px;
    }

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

    .touch-stream .touhc-header p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .touch-stream .stream {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 8px;
    }

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

    .touch-stream .chip em {
        font-style: normal;
        opacity: .85;
    }

    .touch-stream .foot {
        margin-top: 12px;
    }

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem;
    backdrop-filter: blur(4px);
  }

  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-btn {
    background: var(--accent);
    color: var(--accent-contrast);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
    transform: scale(1.02);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

  @media (max-width: 767px) {
    .header-card {
      padding: 0.5rem 1rem;
    }

    .nav-menu {
      display: none;
      position: absolute;
      top: calc(100% + 0.5rem);
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      flex-direction: column;
      padding: 1rem;
      gap: 0.5rem;
    }

    .nav-menu.open {
      display: flex;
    }

    .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .cta-btn {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-middle {
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .contact-info ul li {
    font-size: 0.9rem;
  }
  .contact-info ul li a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info ul li a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
  }
  .footer-legal a {
    color: #e0e0e0;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .copyright {
    margin: 0;
    color: #aaa;
  }
  .disclaimer {
    width: 100%;
    text-align: center;
    color: #888;
    font-style: italic;
    margin: 10px 0 0;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .contact-info ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-legal {
      margin-bottom: 10px;
    }
    .footer-legal a {
      margin: 0 10px;
    }
  }

.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--colored-v5 {

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

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

.messages__title {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
    color: var(--brand-contrast);
}

.messages__list {
    display: grid;
    gap: 10px;
}

.messages__item {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 12px;
    border-radius: var(--radius-lg);
    padding: 10px 14px;
    border: 1px solid rgba(148,163,184,0.6);
    background: rgba(15,23,42,0.96);
}

.messages__item--positive {
    border-color: var(--accent);
}

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

.messages__avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.messages__meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--neutral-100);
    margin-bottom: 2px;
}

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

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

.nfsocial-v11 {
        padding: clamp(48px, 8vw, 80px) 0;
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .nfsocial-v11__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
    }

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

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

    .nfsocial-v11__text h2 {
        margin-bottom: var(--space-y);
    }

    .nfsocial-v11__text p {
        margin-bottom: var(--space-y);
        opacity: .92;
    }

    .nfsocial-v11__text a {
        display: inline-block;
        padding: 12px 24px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @media (max-width: 840px) {
        .nfsocial-v11__grid {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

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

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem;
    backdrop-filter: blur(4px);
  }

  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-btn {
    background: var(--accent);
    color: var(--accent-contrast);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
    transform: scale(1.02);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

  @media (max-width: 767px) {
    .header-card {
      padding: 0.5rem 1rem;
    }

    .nav-menu {
      display: none;
      position: absolute;
      top: calc(100% + 0.5rem);
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      flex-direction: column;
      padding: 1rem;
      gap: 0.5rem;
    }

    .nav-menu.open {
      display: flex;
    }

    .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .cta-btn {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-middle {
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .contact-info ul li {
    font-size: 0.9rem;
  }
  .contact-info ul li a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info ul li a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
  }
  .footer-legal a {
    color: #e0e0e0;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .copyright {
    margin: 0;
    color: #aaa;
  }
  .disclaimer {
    width: 100%;
    text-align: center;
    color: #888;
    font-style: italic;
    margin: 10px 0 0;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .contact-info ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-legal {
      margin-bottom: 10px;
    }
    .footer-legal a {
      margin: 0 10px;
    }
  }

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

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

    .touch-stream .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .touch-stream .touch-header {
        margin-bottom: 12px;
    }

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

    .touch-stream .touhc-header p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .touch-stream .stream {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 8px;
    }

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

    .touch-stream .chip em {
        font-style: normal;
        opacity: .85;
    }

    .touch-stream .foot {
        margin-top: 12px;
    }

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

.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 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem;
    backdrop-filter: blur(4px);
  }

  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-btn {
    background: var(--accent);
    color: var(--accent-contrast);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
    transform: scale(1.02);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

  @media (max-width: 767px) {
    .header-card {
      padding: 0.5rem 1rem;
    }

    .nav-menu {
      display: none;
      position: absolute;
      top: calc(100% + 0.5rem);
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      flex-direction: column;
      padding: 1rem;
      gap: 0.5rem;
    }

    .nav-menu.open {
      display: flex;
    }

    .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .cta-btn {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-middle {
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .contact-info ul li {
    font-size: 0.9rem;
  }
  .contact-info ul li a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info ul li a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
  }
  .footer-legal a {
    color: #e0e0e0;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .copyright {
    margin: 0;
    color: #aaa;
  }
  .disclaimer {
    width: 100%;
    text-align: center;
    color: #888;
    font-style: italic;
    margin: 10px 0 0;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .contact-info ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-legal {
      margin-bottom: 10px;
    }
    .footer-legal a {
      margin: 0 10px;
    }
  }

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .support-lv4 {
        padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

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

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

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

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

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

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

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

    .faq-fresh-v5 .stack {
        display: grid;
        gap: .75rem;
    }

    .faq-fresh-v5 article {
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .faq-fresh-v5 h3 {
        margin: 0 0 .5rem;
        font-size: 1rem;
    }

    .faq-fresh-v5 p {
        margin: 0;
        opacity: .88;
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem;
    backdrop-filter: blur(4px);
  }

  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-btn {
    background: var(--accent);
    color: var(--accent-contrast);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
    transform: scale(1.02);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

  @media (max-width: 767px) {
    .header-card {
      padding: 0.5rem 1rem;
    }

    .nav-menu {
      display: none;
      position: absolute;
      top: calc(100% + 0.5rem);
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      flex-direction: column;
      padding: 1rem;
      gap: 0.5rem;
    }

    .nav-menu.open {
      display: flex;
    }

    .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .cta-btn {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-middle {
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .contact-info ul li {
    font-size: 0.9rem;
  }
  .contact-info ul li a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info ul li a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
  }
  .footer-legal a {
    color: #e0e0e0;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .copyright {
    margin: 0;
    color: #aaa;
  }
  .disclaimer {
    width: 100%;
    text-align: center;
    color: #888;
    font-style: italic;
    margin: 10px 0 0;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .contact-info ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-legal {
      margin-bottom: 10px;
    }
    .footer-legal a {
      margin: 0 10px;
    }
  }

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

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

    .contact-layout-e .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

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

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

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

    .contact-layout-e .rail {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 16px;
    }

    .contact-layout-e aside {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: 16px;
    }

    .contact-layout-e aside h3 {
        margin: 0 0 10px;
    }

    .contact-layout-e aside p {
        margin: 0 0 10px;
        opacity: .9;
    }

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

    .contact-layout-e .social a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .16);
        padding: 6px 10px;
        border-radius: var(--radius-sm);
    }

    .contact-layout-e .content {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        display: grid;
        gap: 10px;
    }

    .contact-layout-e .row {
        display: grid;
        gap: 3px;
        padding-bottom: 10px;
        border-bottom: 1px dashed var(--neutral-300);
    }

    .contact-layout-e .row:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    @media (max-width: 760px) {
        .contact-layout-e .rail {
            grid-template-columns: 1fr;
        }
    }

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

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

    .form-fresh-v5 .head p {
        margin: .35rem 0 0;
        opacity: .82;
    }

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

    .form-fresh-v5 label {
        display: grid;
        gap: .3rem;
    }

    .form-fresh-v5 span {
        font-size: .82rem;
        opacity: .85;
    }

    .form-fresh-v5 input {
        padding: .65rem .75rem;
        border: 1px solid var(--btn-ghost-bg-hover);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        font: inherit;
    }

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem;
    backdrop-filter: blur(4px);
  }

  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-btn {
    background: var(--accent);
    color: var(--accent-contrast);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
    transform: scale(1.02);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

  @media (max-width: 767px) {
    .header-card {
      padding: 0.5rem 1rem;
    }

    .nav-menu {
      display: none;
      position: absolute;
      top: calc(100% + 0.5rem);
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      flex-direction: column;
      padding: 1rem;
      gap: 0.5rem;
    }

    .nav-menu.open {
      display: flex;
    }

    .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .cta-btn {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-middle {
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .contact-info ul li {
    font-size: 0.9rem;
  }
  .contact-info ul li a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info ul li a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
  }
  .footer-legal a {
    color: #e0e0e0;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .copyright {
    margin: 0;
    color: #aaa;
  }
  .disclaimer {
    width: 100%;
    text-align: center;
    color: #888;
    font-style: italic;
    margin: 10px 0 0;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .contact-info ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-legal {
      margin-bottom: 10px;
    }
    .footer-legal a {
      margin: 0 10px;
    }
  }

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

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

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

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

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

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

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

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

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem;
    backdrop-filter: blur(4px);
  }

  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-btn {
    background: var(--accent);
    color: var(--accent-contrast);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
    transform: scale(1.02);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

  @media (max-width: 767px) {
    .header-card {
      padding: 0.5rem 1rem;
    }

    .nav-menu {
      display: none;
      position: absolute;
      top: calc(100% + 0.5rem);
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      flex-direction: column;
      padding: 1rem;
      gap: 0.5rem;
    }

    .nav-menu.open {
      display: flex;
    }

    .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .cta-btn {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-middle {
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .contact-info ul li {
    font-size: 0.9rem;
  }
  .contact-info ul li a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info ul li a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
  }
  .footer-legal a {
    color: #e0e0e0;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .copyright {
    margin: 0;
    color: #aaa;
  }
  .disclaimer {
    width: 100%;
    text-align: center;
    color: #888;
    font-style: italic;
    margin: 10px 0 0;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .contact-info ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-legal {
      margin-bottom: 10px;
    }
    .footer-legal a {
      margin: 0 10px;
    }
  }

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

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

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

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

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

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

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

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

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

    .terms-layout-b p, .terms-layout-b li {
        color: var(--neutral-600);
        margin-top: 0;
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem;
    backdrop-filter: blur(4px);
  }

  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-btn {
    background: var(--accent);
    color: var(--accent-contrast);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
    transform: scale(1.02);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

  @media (max-width: 767px) {
    .header-card {
      padding: 0.5rem 1rem;
    }

    .nav-menu {
      display: none;
      position: absolute;
      top: calc(100% + 0.5rem);
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      flex-direction: column;
      padding: 1rem;
      gap: 0.5rem;
    }

    .nav-menu.open {
      display: flex;
    }

    .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .cta-btn {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-middle {
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .contact-info ul li {
    font-size: 0.9rem;
  }
  .contact-info ul li a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info ul li a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
  }
  .footer-legal a {
    color: #e0e0e0;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .copyright {
    margin: 0;
    color: #aaa;
  }
  .disclaimer {
    width: 100%;
    text-align: center;
    color: #888;
    font-style: italic;
    margin: 10px 0 0;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .contact-info ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-legal {
      margin-bottom: 10px;
    }
    .footer-legal a {
      margin: 0 10px;
    }
  }

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

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

    .nfthank-v9__panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, .24);
        border-radius: var(--radius-lg);
        padding: clamp(30px, 4vw, 44px);
        background: rgba(255, 255, 255, .06);
    }

    .nfthank-v9 h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 54px);
    }

    .nfthank-v9 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nfthank-v9 a {
        display: inline-block;
        margin-top: 17px;
        color: var(--accent-contrast);
        text-decoration: none;
        border-bottom: 2px solid var(--accent-contrast);
        padding-bottom: 2px;
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem;
    backdrop-filter: blur(4px);
  }

  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-btn {
    background: var(--accent);
    color: var(--accent-contrast);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
    transform: scale(1.02);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

  @media (max-width: 767px) {
    .header-card {
      padding: 0.5rem 1rem;
    }

    .nav-menu {
      display: none;
      position: absolute;
      top: calc(100% + 0.5rem);
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      flex-direction: column;
      padding: 1rem;
      gap: 0.5rem;
    }

    .nav-menu.open {
      display: flex;
    }

    .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .cta-btn {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-middle {
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .contact-info ul li {
    font-size: 0.9rem;
  }
  .contact-info ul li a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info ul li a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
  }
  .footer-legal a {
    color: #e0e0e0;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .copyright {
    margin: 0;
    color: #aaa;
  }
  .disclaimer {
    width: 100%;
    text-align: center;
    color: #888;
    font-style: italic;
    margin: 10px 0 0;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .contact-info ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-legal {
      margin-bottom: 10px;
    }
    .footer-legal a {
      margin: 0 10px;
    }
  }

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

.err-slab-d {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: var(--accent);
        color: var(--neutral-0);
    }

    .err-slab-d .plate {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 50px);
        border-radius: var(--radius-xl);
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

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

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

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