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

  --max-w: 1120px;
  --space-x: 0.77rem;
  --space-y: 0.92rem;
  --gap: 0.72rem;

  --radius-xl: 0.82rem;
  --radius-lg: 0.62rem;
  --radius-md: 0.36rem;
  --radius-sm: 0.16rem;

  --shadow-sm: 0 0px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 3px 14px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 28px rgba(0,0,0,0.08);

  --overlay: rgba(0,0,0,0.4);
  --anim-duration: 180ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 2;

  --brand: #D946EF;
  --brand-contrast: #FFFFFF;
  --accent: #F97316;
  --accent-contrast: #FFFFFF;

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

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

  --bg-alt: #FCE7F3;
  --fg-on-alt: #831843;

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

  --surface-light: #FFF7ED;
  --fg-on-surface-light: #7C2D12;
  --border-on-surface-light: #FED7AA;

  --bg-primary: #D946EF;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #C026D3;
  --ring: #D946EF;

  --bg-accent: #FFEDD5;
  --fg-on-accent: #7C2D12;
  --bg-accent-hover: #EA580C;

  --link: #D946EF;
  --link-hover: #A21CAF;

  --gradient-hero: linear-gradient(135deg, #FDF2F8 0%, #FFEDD5 100%);
  --gradient-accent: linear-gradient(135deg, #D946EF 0%, #F97316 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%;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    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-list a:hover {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      right: -280px;
      width: 280px;
      height: 100vh;
      background: var(--surface-2);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      flex-direction: column;
      align-items: flex-start;
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
    }
    .nav-menu.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      width: 100%;
      padding: 1rem 0.75rem;
      border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-list a:last-child {
      border-bottom: none;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: flex-end;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  text-align: right;
  margin-bottom: 1rem;
}
.footer-contact p {
  margin: 0.25rem 0;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 500px;
  text-align: right;
  margin-top: 0.5rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left, .footer-right {
    flex: 1 1 auto;
    width: 100%;
    align-items: center;
  }
  .footer-right {
    align-items: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-policy {
    justify-content: center;
  }
  .footer-contact {
    text-align: center;
  }
  .footer-disclaimer {
    text-align: center;
    max-width: 100%;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

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

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

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

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

.nfintro-v12 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .nfintro-v12__shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
        gap: calc(var(--gap) * 2);
        align-items: stretch;
    }

    .nfintro-v12__media {
        padding: var(--gap);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
    }

    .nfintro-v12__media img {
        width: 100%;
        height: 100%;
        min-height: 320px;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .nfintro-v12__copy {
        display: grid;
        gap: var(--gap);
        align-content: start;
    }

    .nfintro-v12__copy h1 {
        margin: .2rem 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
        line-height: 1.1;
    }

    .nfintro-v12__copy span {
        color: var(--fg-on-surface-light);
    }

    .nfintro-v12__stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .nfintro-v12__stats article {
        padding: 1rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
    }

    .nfintro-v12__stats p {
        margin: .3rem 0 0;
        color: var(--fg-on-surface-light);
        font-size: .92rem;
    }

    .nfintro-v12__actions {
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .nfintro-v12__actions a {
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-surface);
        background: var(--surface-1);
    }

    .nfintro-v12__actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    @media (max-width: 940px) {
        .nfintro-v12__shell {grid-template-columns: 1fr;}
        .nfintro-v12__stats {grid-template-columns: 1fr;}
    }

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

    .next-fan-c5 {
        padding: clamp(3.6rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .next-fan-c5__wrap {
        max-width: 58rem;
        margin: 0 auto;
        text-align: center;
    }

    .next-fan-c5__banner p {
        margin: 0;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        opacity: 0.85;
    }

    .next-fan-c5__banner h2 {
        margin: .5rem 0 0;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
        color: var(--accent-contrast);
    }

    .next-fan-c5__fan {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-fan-c5__fan a {
        display: block;
        padding: .9rem 1rem;
        min-width: 10rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, .18);
        color: var(--accent-contrast);
        text-decoration: none;
        transition: background var(--anim-duration) var(--anim-ease);
    }

    .next-fan-c5__fan a:hover {
        background: rgba(255, 255, 255, 0.22);
    }

    .next-fan-c5__fan strong {
        display: block;
        font-weight: 600;
    }

    .next-fan-c5__fan span {
        display: block;
        margin-top: .3rem;
        font-size: 0.85rem;
        opacity: 0.9;
    }

    .next-fan-c5__tail {
        margin-top: 1rem;
        font-size: 1.05rem;
        line-height: 1.5;
        max-width: 36rem;
        margin-left: auto;
        margin-right: auto;
        color: var(--accent-contrast);
    }

    .next-fan-c5__wrap > a {
        display: inline-flex;
        margin-top: 1.5rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 2rem;
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-md);
    }

    .next-fan-c5__wrap > a:hover {
        background: var(--neutral-100);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

.education-struct-light-v14 {
    padding: calc(var(--space-y) * 2) var(--space-x);
    background: var(--neutral-0);
    color: var(--neutral-900);
}

.education-struct-light-v14__shell {
    max-width: var(--max-w);
    margin: 0 auto;
}

.education-struct-light-v14__tiers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gap);
}

.education-struct-light-v14 article {
    display: grid;
    gap: .55rem;
    background: var(--neutral-100);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-lg);
    padding: .9rem;
}

.education-struct-light-v14 h3,
.education-struct-light-v14 p {
    margin: 0;
}

.education-struct-light-v14 p {
    color: var(--neutral-800);
}

.education-struct-light-v14 a {
    display: inline-flex;
    min-height: 2.3rem;
    padding: 0 .8rem;
    align-items: center;
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    border: 1px solid var(--ring);
    text-decoration: none;
    width: fit-content;
}

@media (max-width: 900px) {
    .education-struct-light-v14__tiers {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .education-struct-light-v14__tiers {
        grid-template-columns: 1fr;
    }
}

.visual-film-c1 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-page);
    }

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

    .visual-film-c1__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .visual-film-c1__head p {
        margin: 0;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
        color: var(--neutral-600);
    }

    .visual-film-c1__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--neutral-900);
    }

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

    .visual-film-c1__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
    }

    .visual-film-c1__media {
        position: relative;
    }

    .visual-film-c1__media img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
    }

    .visual-film-c1__media span {
        position: absolute;
        top: .8rem;
        left: .8rem;
        padding: .35rem .7rem;
        border-radius: 999px;
        background: rgba(0, 0, 0, .28);
        color: var(--neutral-0);
        font-size: .8rem;
        font-weight: 600;
    }

    .visual-film-c1__grid figcaption {
        padding: 1rem;
    }

    .visual-film-c1__grid figcaption small {
        color: var(--neutral-600);
        font-size: .8rem;
    }

    .visual-film-c1__grid h3 {
        margin: .5rem 0 .35rem;
        color: var(--neutral-800);
    }

    .visual-film-c1__grid figcaption p {
        color: var(--neutral-600);
        font-size: .9rem;
        margin: 0;
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    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-list a:hover {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      right: -280px;
      width: 280px;
      height: 100vh;
      background: var(--surface-2);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      flex-direction: column;
      align-items: flex-start;
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
    }
    .nav-menu.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      width: 100%;
      padding: 1rem 0.75rem;
      border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-list a:last-child {
      border-bottom: none;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: flex-end;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  text-align: right;
  margin-bottom: 1rem;
}
.footer-contact p {
  margin: 0.25rem 0;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 500px;
  text-align: right;
  margin-top: 0.5rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left, .footer-right {
    flex: 1 1 auto;
    width: 100%;
    align-items: center;
  }
  .footer-right {
    align-items: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-policy {
    justify-content: center;
  }
  .footer-contact {
    text-align: center;
  }
  .footer-disclaimer {
    text-align: center;
    max-width: 100%;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

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

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

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

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

.testimonials-struct-v4 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-primary);
        color: var(--fg-on-primary)
    }

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

    .testimonials-struct-v4 h2, .testimonials-struct-v4 h3, .testimonials-struct-v4 p {
        margin: 0
    }

    .testimonials-struct-v4 article, .testimonials-struct-v4 blockquote, .testimonials-struct-v4 figure, .testimonials-struct-v4 .spotlight, .testimonials-struct-v4 .row {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

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

    .testimonials-struct-v4 .rail {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: .6rem
    }

    .testimonials-struct-v4 .stack {
        display: grid;
        gap: .65rem
    }

    .testimonials-struct-v4 .stack article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .testimonials-struct-v4 img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .testimonials-struct-v4 .table {
        display: grid;
        gap: .45rem
    }

    .testimonials-struct-v4 .row {
        display: grid;
        grid-template-columns:12rem 1fr;
        gap: .6rem
    }

    .testimonials-struct-v4 .wall {
        columns: 3;
        column-gap: var(--gap)
    }

    .testimonials-struct-v4 blockquote {
        break-inside: avoid;
        margin: 0 0 var(--gap) 0;
        display: grid;
        gap: .4rem
    }

    .testimonials-struct-v4 .slider {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap)
    }

    .testimonials-struct-v4 .dots {
        display: flex;
        justify-content: center;
        gap: .4rem
    }

    .testimonials-struct-v4 .dots span {
        padding: .25rem .45rem;
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .testimonials-struct-v4 .grid, .testimonials-struct-v4 .rail, .testimonials-struct-v4 .slider {
            grid-template-columns:1fr 1fr
        }

        .testimonials-struct-v4 .wall {
            columns: 2
        }
    }

    @media (max-width: 680px) {
        .testimonials-struct-v4 .grid, .testimonials-struct-v4 .rail, .testimonials-struct-v4 .slider, .testimonials-struct-v4 .row {
            grid-template-columns:1fr
        }

        .testimonials-struct-v4 .wall {
            columns: 1
        }
    }

.partners {
        color: var(--fg-on-page);
        background: var(--surface-light);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .partners .partners__header {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 72px);
    }

    .partners .partners__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .partners .partners__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__item {
        text-align: center;
        background: var(--bg-page);
        border-radius: var(--radius-lg);
    }

    .partners .partners__logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: clamp(20px, 3vw, 28px);
        height: 300px;
    }

    .partners .partners__text {
        padding: var(--space-y)
    }

    .partners .partners__item h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
    }

    .partners .partners__item p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

    .identity-ux15__grid h3 {
        margin: 0;
    }

    .identity-ux15__grid p {
        margin: 7px 0;
        opacity: .94;
    }

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    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-list a:hover {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      right: -280px;
      width: 280px;
      height: 100vh;
      background: var(--surface-2);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      flex-direction: column;
      align-items: flex-start;
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
    }
    .nav-menu.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      width: 100%;
      padding: 1rem 0.75rem;
      border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-list a:last-child {
      border-bottom: none;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: flex-end;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  text-align: right;
  margin-bottom: 1rem;
}
.footer-contact p {
  margin: 0.25rem 0;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 500px;
  text-align: right;
  margin-top: 0.5rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left, .footer-right {
    flex: 1 1 auto;
    width: 100%;
    align-items: center;
  }
  .footer-right {
    align-items: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-policy {
    justify-content: center;
  }
  .footer-contact {
    text-align: center;
  }
  .footer-disclaimer {
    text-align: center;
    max-width: 100%;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

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

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

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

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

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

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

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

    .hiw-ux11__head {
        margin-bottom: 1.2rem;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

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

    .hiw-ux11__head p {
        margin: 0;
        color: var(--neutral-600);
        max-width: 32rem;
    }

    .hiw-ux11__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        gap: var(--gap);
    }

    .hiw-ux11__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-sm);
    }

    .hiw-ux11__badge {
        display: inline-flex;
        padding: .35rem .65rem;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--brand);
        font-weight: 700;
    }

    .hiw-ux11__grid h3 {
        margin: .75rem 0 .35rem;
    }

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}.plans-ux5{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--brand);color:var(--brand-contrast)}.plans-ux5__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux5__rail{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(240px,1fr);gap:10px;overflow:auto;padding-bottom:4px}.plans-ux5 article{border:1px solid rgba(255,255,255,.3);border-radius:var(--radius-lg);background:rgba(255,255,255,.12);padding:12px}.plans-ux5 h3{margin:0}.plans-ux5 small{display:inline-flex;margin-top:6px;opacity:.9}.plans-ux5 p{margin:7px 0}.plans-ux5 ol{margin:0;padding-left:18px;display:grid;gap:5px}.plans-ux5 button{width:100%;margin-top:9px;background:var(--bg-primary);color:var(--fg-on-primary);border:0;border-radius:var(--radius-sm);padding:8px 10px}

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

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

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

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

    .nfsocial-v8__head p {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

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

    .nfsocial-v8__quotes article {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        padding: 14px;
    }

    .nfsocial-v8__quotes p {
        margin: 0;
        color: var(--fg-on-page);
    }

    .nfsocial-v8__quotes strong {
        display: block;
        margin-top: 10px;
        color: var(--neutral-900);
    }

    .nfsocial-v8__quotes span {
        display: block;
        margin-top: 4px;
        color: var(--neutral-600);
    }

.statistics {
    padding: clamp(48px, 8vw, 80px) 0;
    background: var(--gradient-hero);
    color: var(--gradient-accent);
}

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

.statistics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--gap);
    text-align: center;
}

.statistics__card {
    padding: clamp(16px, 3vw, 32px);
}

.statistics__number {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.statistics__label {
    font-size: 1.1rem;
    font-weight: 400;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    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-list a:hover {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      right: -280px;
      width: 280px;
      height: 100vh;
      background: var(--surface-2);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      flex-direction: column;
      align-items: flex-start;
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
    }
    .nav-menu.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      width: 100%;
      padding: 1rem 0.75rem;
      border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-list a:last-child {
      border-bottom: none;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: flex-end;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  text-align: right;
  margin-bottom: 1rem;
}
.footer-contact p {
  margin: 0.25rem 0;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 500px;
  text-align: right;
  margin-top: 0.5rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left, .footer-right {
    flex: 1 1 auto;
    width: 100%;
    align-items: center;
  }
  .footer-right {
    align-items: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-policy {
    justify-content: center;
  }
  .footer-contact {
    text-align: center;
  }
  .footer-disclaimer {
    text-align: center;
    max-width: 100%;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

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

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

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

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

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

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

    .contact-layout-a .section-head {
        margin-bottom: 18px;
        text-align: center;
    }

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

    .contact-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        opacity: .92;
    }

    .contact-layout-a .panel {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        padding: 18px;
        backdrop-filter: blur(6px);
    }

    .contact-layout-a h3 {
        margin: 0 0 12px;
    }

    .contact-layout-a .list p {
        margin: 0 0 10px;
        display: grid;
        gap: 2px;
    }

    .contact-layout-a .list span {
        opacity: .94;
    }

    .contact-layout-a .social-row {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .contact-layout-a .social-row a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .4);
    }

    .contact-layout-a .social-row a:hover {
        background: rgba(255, 255, 255, .15);
    }

.map-panel-l5 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .map-panel-l5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .map-panel-l5__top {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }

    .map-panel-l5__top h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .map-panel-l5__top p {
        margin: .55rem 0 0;
        color: var(--neutral-600);
    }

    .map-panel-l5__tags {
        color: var(--brand);
    }

    .map-panel-l5__grid {
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1rem;
    }

    .map-panel-l5__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-panel-l5__embed iframe {
        display: block;
        width: 100%;
        height: 24rem;
    }

    .map-panel-l5__list {
        display: grid;
        gap: .75rem;
    }

    .map-panel-l5__list div {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-panel-l5__list span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    @media (max-width: 840px) {
        .map-panel-l5__grid {
            grid-template-columns: 1fr;
        }
    }

.connect {
        color: var(--gradient-accent);
        background: var(--gradient-hero);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .connect .connect__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: clamp(24px, 4vw, 32px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
        padding: var(--space-x);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s, border-color 0.3s;
    }

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

    .connect .connect__item:hover {
        transform: translateY(-6px);
        border-color: var(--bg-accent);
    }

    .connect .connect__item span {
        font-size: clamp(17px, 2.8vw, 20px);
        font-weight: 600;
    }

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

    .form-layout-b .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-b .split {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 16px;
    }

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

    .form-layout-b aside h3 {
        margin: 0;
    }

    .form-layout-b aside p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .form-layout-b form {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
    }

    .form-layout-b label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
    }

    .form-layout-b input, .form-layout-b textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

    .form-layout-b button {
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 10px 14px;
    }

    @media (max-width: 760px) {
        .form-layout-b .split {
            grid-template-columns: 1fr;
        }
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    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-list a:hover {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      right: -280px;
      width: 280px;
      height: 100vh;
      background: var(--surface-2);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      flex-direction: column;
      align-items: flex-start;
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
    }
    .nav-menu.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      width: 100%;
      padding: 1rem 0.75rem;
      border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-list a:last-child {
      border-bottom: none;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: flex-end;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  text-align: right;
  margin-bottom: 1rem;
}
.footer-contact p {
  margin: 0.25rem 0;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 500px;
  text-align: right;
  margin-top: 0.5rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left, .footer-right {
    flex: 1 1 auto;
    width: 100%;
    align-items: center;
  }
  .footer-right {
    align-items: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-policy {
    justify-content: center;
  }
  .footer-contact {
    text-align: center;
  }
  .footer-disclaimer {
    text-align: center;
    max-width: 100%;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    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-list a:hover {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      right: -280px;
      width: 280px;
      height: 100vh;
      background: var(--surface-2);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      flex-direction: column;
      align-items: flex-start;
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
    }
    .nav-menu.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      width: 100%;
      padding: 1rem 0.75rem;
      border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-list a:last-child {
      border-bottom: none;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: flex-end;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  text-align: right;
  margin-bottom: 1rem;
}
.footer-contact p {
  margin: 0.25rem 0;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 500px;
  text-align: right;
  margin-top: 0.5rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left, .footer-right {
    flex: 1 1 auto;
    width: 100%;
    align-items: center;
  }
  .footer-right {
    align-items: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-policy {
    justify-content: center;
  }
  .footer-contact {
    text-align: center;
  }
  .footer-disclaimer {
    text-align: center;
    max-width: 100%;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

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

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

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

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

.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 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    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-list a:hover {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      right: -280px;
      width: 280px;
      height: 100vh;
      background: var(--surface-2);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      flex-direction: column;
      align-items: flex-start;
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
    }
    .nav-menu.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      width: 100%;
      padding: 1rem 0.75rem;
      border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-list a:last-child {
      border-bottom: none;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: flex-end;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  text-align: right;
  margin-bottom: 1rem;
}
.footer-contact p {
  margin: 0.25rem 0;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 500px;
  text-align: right;
  margin-top: 0.5rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left, .footer-right {
    flex: 1 1 auto;
    width: 100%;
    align-items: center;
  }
  .footer-right {
    align-items: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-policy {
    justify-content: center;
  }
  .footer-contact {
    text-align: center;
  }
  .footer-disclaimer {
    text-align: center;
    max-width: 100%;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

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

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

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

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

.thank-mode-c {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: linear-gradient(180deg, var(--fg-on-page), var(--bg-page));
        color: var(--fg-on-page);
    }

    .thank-mode-c .panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 44px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

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

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

    .thank-mode-c a {
        display: inline-block;
        margin-top: 17px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    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-list a:hover {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      right: -280px;
      width: 280px;
      height: 100vh;
      background: var(--surface-2);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      flex-direction: column;
      align-items: flex-start;
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
    }
    .nav-menu.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      width: 100%;
      padding: 1rem 0.75rem;
      border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-list a:last-child {
      border-bottom: none;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: flex-end;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  text-align: right;
  margin-bottom: 1rem;
}
.footer-contact p {
  margin: 0.25rem 0;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 500px;
  text-align: right;
  margin-top: 0.5rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left, .footer-right {
    flex: 1 1 auto;
    width: 100%;
    align-items: center;
  }
  .footer-right {
    align-items: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-policy {
    justify-content: center;
  }
  .footer-contact {
    text-align: center;
  }
  .footer-disclaimer {
    text-align: center;
    max-width: 100%;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

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

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

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

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

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

    .err-slab-f .chip {
        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);
        position: relative;
    }

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

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

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

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