:root {
  --font-family: "Open Sans", sans-serif;
  --font-size-base: 14.9px;
  --line-height-base: 1.51;

  --max-w: 1140px;
  --space-x: 1.17rem;
  --space-y: 1.17rem;
  --gap: 0.87rem;

  --radius-xl: 0.97rem;
  --radius-lg: 0.79rem;
  --radius-md: 0.38rem;
  --radius-sm: 0.29rem;

  --shadow-sm: 0 2px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 7px 18px rgba(0,0,0,0.13);
  --shadow-lg: 0 16px 28px rgba(0,0,0,0.15);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 290ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 2;

  --brand: #1a3a5c;
  --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: #ffffff;
  --fg-on-page: #1f2937;

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

  --surface-1: #ffffff;
  --surface-2: #f3f4f6;
  --fg-on-surface: #1f2937;
  --border-on-surface: #e5e7eb;

  --surface-light: #f9fafb;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #e5e7eb;

  --bg-primary: #2563eb;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d4ed8;
  --ring: #2563eb;

  --bg-accent: #f97316;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #e05e0a;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #2563eb 100%);
  --gradient-accent: linear-gradient(135deg, #f97316 0%, #e05e0a 100%);

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

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.main-nav {
  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(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.5rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--brand);
}

.nav-list a:hover::after {
  width: 100%;
}

.cta-button {
  display: inline-block;
  background-color: var(--brand);
  color: var(--brand-contrast);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover {
  background-color: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}

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

.burger:hover {
  background-color: var(--neutral-100);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-900);
  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(6px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--neutral-0);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    min-width: 250px;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }

  .cta-button {
    display: none;
  }

  .header-inner {
    padding: var(--space-y) var(--space-x);
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .main-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    height: auto;
    width: auto;
  }

  .nav-list {
    flex-direction: row;
    background: none;
    padding: 0;
    box-shadow: none;
    min-width: auto;
  }

  .cta-button {
    display: inline-block;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #b0b0b0;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-policy a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-contact {
  background-color: #16213e;
  padding: 1rem;
  border-radius: 8px;
}
.footer-contact p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  margin-top: 0.5rem;
  border-top: 1px solid #333;
  padding-top: 0.5rem;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-lv6 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

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

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

.hero-arc-v4 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .hero-arc-v4 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:repeat(12, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v4 .headline {
        grid-column: 1/8;
        padding: calc(var(--space-y) * 1.2);
        border-radius: var(--radius-xl);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .hero-arc-v4 h1 {
        margin: .2rem 0 .7rem;
        font-size: clamp(2rem, 4.6vw, 3.6rem);
        line-height: 1.08;
    }

    .hero-arc-v4 .headline p {
        margin: 0;
        max-width: 52ch;
        opacity: .92;
    }

    .hero-arc-v4 .actionbox {
        grid-column: 8/13;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        padding: calc(var(--space-y) * 1.2);
        border-radius: var(--radius-xl);
        display: grid;
        align-content: center;
        gap: var(--gap);
    }

    .hero-arc-v4 .actions {
        display: grid;
        gap: .65rem;
    }

    .hero-arc-v4 .actions a {
        display: inline-flex;
        justify-content: center;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 700;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .hero-arc-v4 .actions a:nth-child(even) {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border: 1px solid var(--border-on-surface);
    }

    .hero-arc-v4 .media {
        grid-column: 1/6;
        overflow: hidden;
        border-radius: var(--radius-xl);
        min-height: 260px;
    }

    .hero-arc-v4 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero-arc-v4 .stats {
        grid-column: 6/13;
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v4 .stats div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .hero-arc-v4 .stats span {
        display: block;
        color: var(--fg-on-surface-light);
        font-size: .88rem;
    }

    .hero-arc-v4 .stats strong {
        font-size: 1.1rem;
    }

    @media (max-width: 960px) {
        .hero-arc-v4 .headline, .hero-arc-v4 .actionbox, .hero-arc-v4 .media, .hero-arc-v4 .stats {
            grid-column: 1/-1;
        }

        .hero-arc-v4 .stats {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

.next-pins-l4 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

    .next-pins-l4__pins article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

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

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

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

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

.education-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

    .education-struct-v5 h2, .education-struct-v5 h3, .education-struct-v5 p {
        margin: 0
    }

    .education-struct-v5 a {
        text-decoration: none
    }

    .education-struct-v5 article, .education-struct-v5 .row, .education-struct-v5 details, .education-struct-v5 .program {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

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

    .education-struct-v5 .grid a, .education-struct-v5 .tiers a, .education-struct-v5 .cta 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)
    }

    .education-struct-v5 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v5 .path article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .education-struct-v5 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v5 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

    .education-struct-v5 .combo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .education-struct-v5 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v5 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

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

    .education-struct-v5 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v5 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v5 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v5 .grid, .education-struct-v5 .tiers, .education-struct-v5 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v5 .grid, .education-struct-v5 .tiers, .education-struct-v5 .combo, .education-struct-v5 .row {
            grid-template-columns:1fr
        }
    }

.why-choose-light {

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

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

    .why-choose-light .why-choose-light__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

        transform: translateY(20px);
    }

    .why-choose-light h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .why-choose-light .why-choose-light__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

    .why-choose-light .why-choose-light__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose-light .why-choose-light__item {
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        transition: box-shadow var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose-light .why-choose-light__item:hover {
        box-shadow: var(--shadow-md);
    }

    .why-choose-light .why-choose-light__icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

    .why-choose-light .why-choose-light__item h3 {
        font-size: clamp(18px, 2.2vw, 22px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

    .why-choose-light .why-choose-light__item p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.main-nav {
  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(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.5rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--brand);
}

.nav-list a:hover::after {
  width: 100%;
}

.cta-button {
  display: inline-block;
  background-color: var(--brand);
  color: var(--brand-contrast);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover {
  background-color: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}

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

.burger:hover {
  background-color: var(--neutral-100);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-900);
  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(6px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--neutral-0);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    min-width: 250px;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }

  .cta-button {
    display: none;
  }

  .header-inner {
    padding: var(--space-y) var(--space-x);
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .main-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    height: auto;
    width: auto;
  }

  .nav-list {
    flex-direction: row;
    background: none;
    padding: 0;
    box-shadow: none;
    min-width: auto;
  }

  .cta-button {
    display: inline-block;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #b0b0b0;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-policy a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-contact {
  background-color: #16213e;
  padding: 1rem;
  border-radius: 8px;
}
.footer-contact p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  margin-top: 0.5rem;
  border-top: 1px solid #333;
  padding-top: 0.5rem;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-lv6 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

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

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

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

.team-fresh-v4 {
        padding: calc(var(--space-y) * 2.6) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .team-fresh-v4 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

    .team-fresh-v4 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.3vw, 2.5rem);
    }

    .team-fresh-v4 .strip {
        display: flex;
        gap: var(--gap);
        overflow: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: .2rem;
    }

    .team-fresh-v4 article {
        min-width: 220px;
        scroll-snap-align: start;
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
        padding: .9rem;
        border-radius: var(--radius-md);
    }

    .team-fresh-v4 img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: var(--radius-sm);
    }

    .team-fresh-v4 h3 {
        margin: .7rem 0 .2rem;
    }

    .team-fresh-v4 .role {
        margin: 0;
        opacity: .9;
    }

.identity-nv10 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .identity-nv10__head {
        margin-bottom: 16px;
    }

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

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

    .identity-nv10__head span {
        color: var(--neutral-600);
    }

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

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

    .identity-nv10__grid i {
        display: inline-block;
        font-style: normal;
        color: var(--link);
        margin-bottom: 6px;
    }

    .identity-nv10__grid h3 {
        margin: 0;
        color: var(--neutral-900);
    }

    .identity-nv10__grid p {
        margin: 7px 0;
        color: var(--neutral-600);
    }

    .identity-nv10__grid small {
        color: var(--neutral-800);
        font-weight: 600;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.main-nav {
  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(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.5rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--brand);
}

.nav-list a:hover::after {
  width: 100%;
}

.cta-button {
  display: inline-block;
  background-color: var(--brand);
  color: var(--brand-contrast);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover {
  background-color: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}

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

.burger:hover {
  background-color: var(--neutral-100);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-900);
  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(6px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--neutral-0);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    min-width: 250px;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }

  .cta-button {
    display: none;
  }

  .header-inner {
    padding: var(--space-y) var(--space-x);
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .main-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    height: auto;
    width: auto;
  }

  .nav-list {
    flex-direction: row;
    background: none;
    padding: 0;
    box-shadow: none;
    min-width: auto;
  }

  .cta-button {
    display: inline-block;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #b0b0b0;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-policy a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-contact {
  background-color: #16213e;
  padding: 1rem;
  border-radius: 8px;
}
.footer-contact p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  margin-top: 0.5rem;
  border-top: 1px solid #333;
  padding-top: 0.5rem;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-lv6 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

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

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

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

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

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

        transform: translateY(28px);
    }

    .index-feedback-light__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
    }

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

    .index-feedback-light__avatar {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex: 0 0 auto;
    }

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

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

    .index-feedback-light__rating {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        border-radius: 999px;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        flex: 0 0 auto;
    }

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

    .index-feedback-light__score {
        font-size: 12px;
        font-weight: 800;
        color: var(--fg-on-page);
    }

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

    .index-feedback-light__badge {
        display: inline-flex;
        margin-top: 12px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

.hiw-orbit-c7 {
        padding: clamp(3.6rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

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

    .hiw-orbit-c7__head {
        text-align: center;
        margin-bottom: 1.25rem;
    }

    .hiw-orbit-c7__head p {
        margin: 0;
        color: var(--neutral-100);
    }

    .hiw-orbit-c7__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--neutral-0);
    }

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

    .hiw-orbit-c7__ring article {
        padding: 1rem;
        background: rgba(255, 255, 255, .52);
        border: 1px solid rgba(255, 255, 255, .2);
        text-align: center;
        border-radius: var(--radius-md);
    }

    .hiw-orbit-c7__ring span {
        display: inline-flex;
        min-width: 2.6rem;
        height: 2.6rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--chip-bg);
        color: var(--neutral-900);
        font-weight: 700;
    }

    .hiw-orbit-c7__ring h3 {
        margin: .75rem 0 .35rem;
        color: var(--neutral-900);
    }

    .hiw-orbit-c7__ring p {
        margin: 0;
        color: var(--neutral-800);
    }

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.main-nav {
  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(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.5rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--brand);
}

.nav-list a:hover::after {
  width: 100%;
}

.cta-button {
  display: inline-block;
  background-color: var(--brand);
  color: var(--brand-contrast);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover {
  background-color: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}

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

.burger:hover {
  background-color: var(--neutral-100);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-900);
  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(6px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--neutral-0);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    min-width: 250px;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }

  .cta-button {
    display: none;
  }

  .header-inner {
    padding: var(--space-y) var(--space-x);
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .main-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    height: auto;
    width: auto;
  }

  .nav-list {
    flex-direction: row;
    background: none;
    padding: 0;
    box-shadow: none;
    min-width: auto;
  }

  .cta-button {
    display: inline-block;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #b0b0b0;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-policy a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-contact {
  background-color: #16213e;
  padding: 1rem;
  border-radius: 8px;
}
.footer-contact p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  margin-top: 0.5rem;
  border-top: 1px solid #333;
  padding-top: 0.5rem;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-lv6 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

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

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

.contacts-fresh-v1 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .contacts-fresh-v1 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: calc(var(--gap) * 1.4);
    }

    .contacts-fresh-v1 .intro h2 {
        margin: .3rem 0;
        font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    }

    .contacts-fresh-v1 .intro p {
        max-width: 56ch;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v1 .cards {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap);
    }

    .contacts-fresh-v1 article {
        padding: 1.1rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .contacts-fresh-v1 h3 {
        margin: 0 0 .6rem;
    }

    .contacts-fresh-v1 .value {
        margin: 0;
        font-weight: 700;
    }

    .contacts-fresh-v1 .hint {
        margin: .3rem 0 .8rem;
        color: var(--fg-on-surface-light);
    }

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

    @media (max-width: 900px) {
        .contacts-fresh-v1 .cards {
            grid-template-columns:1fr;
        }
    }

.form-fresh-v2 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

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

    .form-fresh-v2 p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v2 form {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: .75rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .form-fresh-v2 label {
        display: grid;
        gap: .3rem;
        font-size: .9rem;
    }

    .form-fresh-v2 input {
        padding: .66rem .75rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

    .form-fresh-v2 button {
        grid-column: 1/-1;
        padding: .72rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        font-weight: 700;
        cursor: pointer;
    }

    @media (max-width: 700px) {
        .form-fresh-v2 form {
            grid-template-columns:1fr;
        }
    }

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

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

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

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

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

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

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(14px, 2.2vw, 18px);
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s;
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .connect .connect__item:not(:last-of-type):before {
        position: absolute;
        content: '';
        top: 50%;
        right: -32px;
        transform: translatey(-50%);
        width: 32px;
        height: 1px;
        background: var(--accent);
    }

    .connect .connect__item:hover {
        transform: translateY(-4px);
    }

    .connect .connect__icon {
        font-size: clamp(44px, 7.5vw, 68px);
        width: clamp(90px, 13vw, 130px);
        height: clamp(90px, 13vw, 130px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

    .connect .connect__icon {
        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 span {
        font-size: clamp(16px, 2.5vw, 18px);
        font-weight: 600;
        color: var(--fg-on-page);
    }

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.main-nav {
  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(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.5rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--brand);
}

.nav-list a:hover::after {
  width: 100%;
}

.cta-button {
  display: inline-block;
  background-color: var(--brand);
  color: var(--brand-contrast);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover {
  background-color: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}

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

.burger:hover {
  background-color: var(--neutral-100);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-900);
  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(6px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--neutral-0);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    min-width: 250px;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }

  .cta-button {
    display: none;
  }

  .header-inner {
    padding: var(--space-y) var(--space-x);
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .main-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    height: auto;
    width: auto;
  }

  .nav-list {
    flex-direction: row;
    background: none;
    padding: 0;
    box-shadow: none;
    min-width: auto;
  }

  .cta-button {
    display: inline-block;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #b0b0b0;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-policy a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-contact {
  background-color: #16213e;
  padding: 1rem;
  border-radius: 8px;
}
.footer-contact p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  margin-top: 0.5rem;
  border-top: 1px solid #333;
  padding-top: 0.5rem;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-lv6 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

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

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

.policy-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

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

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

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

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

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.main-nav {
  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(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.5rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--brand);
}

.nav-list a:hover::after {
  width: 100%;
}

.cta-button {
  display: inline-block;
  background-color: var(--brand);
  color: var(--brand-contrast);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover {
  background-color: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}

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

.burger:hover {
  background-color: var(--neutral-100);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-900);
  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(6px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--neutral-0);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    min-width: 250px;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }

  .cta-button {
    display: none;
  }

  .header-inner {
    padding: var(--space-y) var(--space-x);
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .main-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    height: auto;
    width: auto;
  }

  .nav-list {
    flex-direction: row;
    background: none;
    padding: 0;
    box-shadow: none;
    min-width: auto;
  }

  .cta-button {
    display: inline-block;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #b0b0b0;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-policy a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-contact {
  background-color: #16213e;
  padding: 1rem;
  border-radius: 8px;
}
.footer-contact p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  margin-top: 0.5rem;
  border-top: 1px solid #333;
  padding-top: 0.5rem;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-lv6 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

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

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

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

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.main-nav {
  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(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.5rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--brand);
}

.nav-list a:hover::after {
  width: 100%;
}

.cta-button {
  display: inline-block;
  background-color: var(--brand);
  color: var(--brand-contrast);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover {
  background-color: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}

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

.burger:hover {
  background-color: var(--neutral-100);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-900);
  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(6px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--neutral-0);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    min-width: 250px;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }

  .cta-button {
    display: none;
  }

  .header-inner {
    padding: var(--space-y) var(--space-x);
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .main-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    height: auto;
    width: auto;
  }

  .nav-list {
    flex-direction: row;
    background: none;
    padding: 0;
    box-shadow: none;
    min-width: auto;
  }

  .cta-button {
    display: inline-block;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #b0b0b0;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-policy a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-contact {
  background-color: #16213e;
  padding: 1rem;
  border-radius: 8px;
}
.footer-contact p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  margin-top: 0.5rem;
  border-top: 1px solid #333;
  padding-top: 0.5rem;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-lv6 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

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

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

.nfthank-v11 {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .nfthank-v11__box {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .2);
        background: rgba(255, 255, 255, .08);
    }

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

    .nfthank-v11 p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .nfthank-v11 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        background: var(--neutral-0);
        color: var(--neutral-900);
    }

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.main-nav {
  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(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.5rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--brand);
}

.nav-list a:hover::after {
  width: 100%;
}

.cta-button {
  display: inline-block;
  background-color: var(--brand);
  color: var(--brand-contrast);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover {
  background-color: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}

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

.burger:hover {
  background-color: var(--neutral-100);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-900);
  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(6px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--neutral-0);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    min-width: 250px;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }

  .cta-button {
    display: none;
  }

  .header-inner {
    padding: var(--space-y) var(--space-x);
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .main-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    height: auto;
    width: auto;
  }

  .nav-list {
    flex-direction: row;
    background: none;
    padding: 0;
    box-shadow: none;
    min-width: auto;
  }

  .cta-button {
    display: inline-block;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #b0b0b0;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-policy a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-contact {
  background-color: #16213e;
  padding: 1rem;
  border-radius: 8px;
}
.footer-contact p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  margin-top: 0.5rem;
  border-top: 1px solid #333;
  padding-top: 0.5rem;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-lv6 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

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

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

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