:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 13.5px;
  --line-height-base: 1.28;

  --max-w: 1060px;
  --space-x: 0.46rem;
  --space-y: 0.66rem;
  --gap: 0.57rem;

  --radius-xl: 0.88rem;
  --radius-lg: 0.57rem;
  --radius-md: 0.41rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 5px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 18px rgba(0,0,0,0.1);

  --overlay: rgba(0,0,0,0.6);
  --anim-duration: 150ms;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #1a1a2e;
  --brand-contrast: #ffffff;
  --accent: #ff6b35;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f5f5;
  --neutral-300: #d1d1d1;
  --neutral-600: #6b6b6b;
  --neutral-800: #2d2d2d;
  --neutral-900: #1a1a1a;

  --bg-page: #f0f0f0;
  --fg-on-page: #1a1a1a;

  --bg-alt: #2d2d2d;
  --fg-on-alt: #e0e0e0;

  --surface-1: #ffffff;
  --surface-2: #fafafa;
  --fg-on-surface: #1a1a1a;
  --border-on-surface: #d1d1d1;

  --surface-light: #ffffff;
  --fg-on-surface-light: #1a1a1a;
  --border-on-surface-light: #e0e0e0;

  --bg-primary: #ff6b35;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #e55a2b;
  --ring: #ff6b35;

  --bg-accent: #ff6b35;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #e55a2b;

  --link: #ff6b35;
  --link-hover: #e55a2b;

  --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #2d2d2d 100%);
  --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #e55a2b 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 */
  header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x, 1.5rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) 0;
    gap: var(--gap, 1.5rem);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--gap, 2rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a1a2e);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav a:hover {
    border-bottom-color: var(--accent, #e94560);
    color: var(--accent, #e94560);
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap, 1.5rem);
  }
  .contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.4;
    font-size: 0.875rem;
    color: var(--neutral-600, #666);
  }
  .contact-phone {
    font-weight: 600;
    color: var(--neutral-900, #111);
  }
  .contact-email {
    font-size: 0.8rem;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--accent, #e94560);
    color: var(--accent-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), box-shadow var(--anim-duration, 0.2s) var(--anim-ease, ease);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-accent-hover, #d63850);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.15));
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--neutral-800, #222);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  /* burger open state */
  .burger.open .burger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .burger.open .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.open .burger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* mobile */
  @media (max-width: 767px) {
    .header-inner {
      flex-wrap: wrap;
      padding: var(--space-y, 0.75rem) 0;
    }
    .header-left {
      flex: 1;
      min-width: 0;
    }
    .header-right {
      gap: 0.75rem;
    }
    .contact-block {
      display: none;
    }
    .btn-action {
      font-size: 0.8rem;
      padding: 0.4rem 0.9rem;
    }
    .burger {
      display: flex;
    }
    .nav {
      display: none;
      width: 100%;
      order: 3;
      margin-top: 0.75rem;
      border-top: 1px solid var(--border-on-surface, #e0e0e0);
      padding-top: 0.75rem;
    }
    .nav.open {
      display: block;
    }
    .nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav a {
      display: block;
      padding: 0.5rem 0;
      border-bottom: none;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 280px;
  min-width: 220px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 260px;
}
.brand {
  margin-bottom: 1.2rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.logo:hover {
  color: #ffc107;
}
.contacts {
  line-height: 1.8;
}
.contact-item {
  margin: 0.3rem 0;
}
.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item a:hover {
  color: #f0a500;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.legal-links a:hover {
  color: #f0a500;
}
.disclaimer {
  font-size: 0.8rem;
  color: #999;
  line-height: 1.4;
  margin: 0.8rem 0;
  font-style: italic;
}
.copyright {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.5rem;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

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

    .hero-arc-v3 .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;
    }

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

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

    .hero-arc-v3 .copy {
        display: grid;
        gap: var(--gap);
        align-content: start;
    }

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

    .hero-arc-v3 .subtitle {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

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

    .hero-arc-v3 .stats article {
        padding: 1rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
    }

    .hero-arc-v3 .stats p {
        margin: .3rem 0 0;
        color: var(--fg-on-surface-light);
        font-size: .92rem;
    }

    .hero-arc-v3 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

    .hero-arc-v3 .actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    @media (max-width: 940px) {
        .hero-arc-v3 .shell {
            grid-template-columns:1fr;
        }

        .hero-arc-v3 .stats {
            grid-template-columns:1fr;
        }
    }

.next-c-1 {
        padding: clamp(3.3rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .next-c-1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-c-1__mast {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1.1rem;
    }

    .next-c-1__mast p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__mast h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-c-1__mast a {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

    .next-c-1__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .next-c-1__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .next-c-1__list i {
        font-style: normal;
        display: inline-flex;
        width: 2.3rem;
        height: 2.3rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
    }

    .next-c-1__list h3 {
        margin: .8rem 0 .35rem;
        font-size: 1.04rem;
    }

    .next-c-1__list p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__list a {
        display: inline-block;
        margin-top: .75rem;
        color: var(--bg-accent);
        text-decoration: none;
        font-weight: 600;
    }

    /* macro-bg:next-c-1__wrap */
    .next-c-1 {
        overflow: hidden;
    }

    .next-c-1__wrap {
        background-image: linear-gradient(rgba(0, 0, 0, .88), rgba(17, 24, 39, .88)), url('https://images.pexels.com/photos/162553/pexels-photo-162553.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--space-y);
    }

.education-struct-v1 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface)
    }

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

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

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

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

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

    .education-struct-v1 .grid a, .education-struct-v1 .tiers a, .education-struct-v1 .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-v1 .path {
        display: grid;
        gap: .65rem
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.social-c2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        position: relative;
        overflow: hidden;
    }

    .social-c2::before {
        content: '';
        position: absolute;
        inset: -30%;
        background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
        radial-gradient(circle at 80% 55%, rgba(255, 107, 53, 0.18), transparent 55%);
        filter: blur(18px);
        animation: socialC2Bg 7s var(--anim-ease) infinite;
        pointer-events: none;
    }

    @keyframes socialC2Bg {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1)
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.04)
        }
    }

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

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

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

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

    .social-c2__grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 14px;
        align-items: stretch;
    }

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

    .social-c2__quote {
        display: none;
        padding: 18px 18px 16px;
    }

    .social-c2__quote.is-on {
        display: block;
    }

    .social-c2__qText {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: rgba(255, 255, 255, .92);
    }

    .social-c2__qMeta {
        margin-top: 14px;
        display: flex;
        gap: 10px;
        align-items: baseline;
        flex-wrap: wrap;

    }

    .social-c2__qName {
        font-weight: 900;
    }

    .social-c2__qRole {
        opacity: .85;
    }

    .social-c2__metrics {
        display: grid;
        gap: 12px;
    }

    .social-c2__metric {
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-md);
        padding: 16px;
    }

    .social-c2__mVal {
        font-weight: 900;
        font-size: clamp(22px, 3vw, 32px);
        letter-spacing: -.01em;
    }

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

    @media (max-width: 980px) {
        .social-c2__grid {
            grid-template-columns:1fr;
        }
    }

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

.why-choose-light-alt {

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

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

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

    }

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

    .why-choose-light-alt h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
        0%, 100% {
            opacity: 1;
            transform: scaleX(1);
        }
        50% {
            opacity: 0.4;
            transform: scaleX(0.8);
        }
    }

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

    .why-choose-light-alt .why-choose-light-alt__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2vw, 24px);
    }

    .why-choose-light-alt .why-choose-light-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        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);
        align-items: flex-start;

        position: relative;
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,
        var(--bg-primary) 0%,
        var(--accent) 50%,
        var(--bg-primary) 100%);
        background-size: 200% 100%;
        animation: wave 3s linear infinite;

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    @keyframes wave {
        0% {
            background-position: 0% 0%;
        }
        100% {
            background-position: 200% 0%;
        }
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover .why-choose-light-alt__wave {
        opacity: 1;
    }

    .why-choose-light-alt .why-choose-light-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        animation: sparkle 4s ease-in-out infinite;
    }

    @keyframes sparkle {
        0%, 100% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        10% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
        20%, 80% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        90% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
    }

    .why-choose-light-alt .why-choose-light-alt__content {
        flex: 1;
    }

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

    .why-choose-light-alt .why-choose-light-alt__item h3::before {
        content: '';
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        transition: height var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover h3::before {
        height: 100%;
    }

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

/* header */
  header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x, 1.5rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) 0;
    gap: var(--gap, 1.5rem);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--gap, 2rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a1a2e);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav a:hover {
    border-bottom-color: var(--accent, #e94560);
    color: var(--accent, #e94560);
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap, 1.5rem);
  }
  .contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.4;
    font-size: 0.875rem;
    color: var(--neutral-600, #666);
  }
  .contact-phone {
    font-weight: 600;
    color: var(--neutral-900, #111);
  }
  .contact-email {
    font-size: 0.8rem;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--accent, #e94560);
    color: var(--accent-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), box-shadow var(--anim-duration, 0.2s) var(--anim-ease, ease);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-accent-hover, #d63850);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.15));
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--neutral-800, #222);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  /* burger open state */
  .burger.open .burger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .burger.open .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.open .burger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* mobile */
  @media (max-width: 767px) {
    .header-inner {
      flex-wrap: wrap;
      padding: var(--space-y, 0.75rem) 0;
    }
    .header-left {
      flex: 1;
      min-width: 0;
    }
    .header-right {
      gap: 0.75rem;
    }
    .contact-block {
      display: none;
    }
    .btn-action {
      font-size: 0.8rem;
      padding: 0.4rem 0.9rem;
    }
    .burger {
      display: flex;
    }
    .nav {
      display: none;
      width: 100%;
      order: 3;
      margin-top: 0.75rem;
      border-top: 1px solid var(--border-on-surface, #e0e0e0);
      padding-top: 0.75rem;
    }
    .nav.open {
      display: block;
    }
    .nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav a {
      display: block;
      padding: 0.5rem 0;
      border-bottom: none;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 280px;
  min-width: 220px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 260px;
}
.brand {
  margin-bottom: 1.2rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.logo:hover {
  color: #ffc107;
}
.contacts {
  line-height: 1.8;
}
.contact-item {
  margin: 0.3rem 0;
}
.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item a:hover {
  color: #f0a500;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.legal-links a:hover {
  color: #f0a500;
}
.disclaimer {
  font-size: 0.8rem;
  color: #999;
  line-height: 1.4;
  margin: 0.8rem 0;
  font-style: italic;
}
.copyright {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.5rem;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

.about-mission {

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

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

    .about-mission .about-mission__q {
        font-size: clamp(22px, 4.5vw, 40px);
        margin: 0 0 .6rem;
        font-weight: 700;
    }

    .about-mission .about-mission__txt {
        margin: 0;
        max-width: var(--max-w);
    }

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

    .story-folio-l6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .story-folio-l6__head {
        margin-bottom: 1rem;
    }

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

    .story-folio-l6__head h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-folio-l6__head span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
    }

    .story-folio-l6__body {
        display: grid;
        grid-template-columns: 1fr .9fr;
        gap: 1rem;
        align-items: center;
    }

    .story-folio-l6__body p {
        margin: 0 0 .75rem;
        color: var(--neutral-600);
    }

    .story-folio-l6__body img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

    @media (max-width: 820px) {
        .story-folio-l6__body {
            grid-template-columns: 1fr;
        }
    }

.team-fresh-v3 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--accent);
        color: var(--accent-contrast);
    }

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

    .team-fresh-v3 .head p {
        margin: .35rem 0 0;
        color: var(--fg-on-surface-light);
    }

    .team-fresh-v3 .rows {
        display: grid;
        grid-template-columns:repeat(12, minmax(0, 1fr));
        gap: var(--gap);
    }

    .team-fresh-v3 article {
        grid-column: span 6;
        display: grid;
        grid-template-columns:1fr 140px;
        gap: var(--gap);
        align-items: center;
        padding: 1rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-2);
    }

    .team-fresh-v3 img {
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .team-fresh-v3 h3 {
        margin: 0 0 .2rem;
        color: var(--neutral-600)
    }

    .team-fresh-v3 .role {
        margin: 0;
        font-weight: 700;
        color: var(--link);
    }

    .team-fresh-v3 .bio {
        margin: .3rem 0 0;
        color: var(--fg-on-surface-light);
    }

    @media (max-width: 960px) {
        .team-fresh-v3 article {
            grid-column: 1/-1;
        }
    }

    @media (max-width: 640px) {
        .team-fresh-v3 article {
            grid-template-columns:1fr;
        }
    }

.identity-nv8 {
        padding: clamp(52px, 7vw, 92px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .identity-nv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .95fr 1.05fr;
        gap: var(--gap);
        align-items: start;
    }

    .identity-nv8__media img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        display: block;
        background: var(--surface-2);
    }

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

    .identity-nv8__body h2 {
        margin: 7px 0;
        font-size: clamp(28px, 4vw, 42px);
        color: var(--neutral-900);
    }

    .identity-nv8__body h3 {
        margin: 0 0 10px;
        font-size: 1rem;
        color: var(--brand);
    }

    .identity-nv8__body span {
        display: block;
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .identity-nv8__body ul {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 6px;
        color: var(--neutral-800);
    }

    @media (max-width: 860px) {
        .identity-nv8__wrap {
            grid-template-columns: 1fr;
        }
    }

/* header */
  header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x, 1.5rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) 0;
    gap: var(--gap, 1.5rem);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--gap, 2rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a1a2e);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav a:hover {
    border-bottom-color: var(--accent, #e94560);
    color: var(--accent, #e94560);
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap, 1.5rem);
  }
  .contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.4;
    font-size: 0.875rem;
    color: var(--neutral-600, #666);
  }
  .contact-phone {
    font-weight: 600;
    color: var(--neutral-900, #111);
  }
  .contact-email {
    font-size: 0.8rem;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--accent, #e94560);
    color: var(--accent-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), box-shadow var(--anim-duration, 0.2s) var(--anim-ease, ease);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-accent-hover, #d63850);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.15));
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--neutral-800, #222);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  /* burger open state */
  .burger.open .burger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .burger.open .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.open .burger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* mobile */
  @media (max-width: 767px) {
    .header-inner {
      flex-wrap: wrap;
      padding: var(--space-y, 0.75rem) 0;
    }
    .header-left {
      flex: 1;
      min-width: 0;
    }
    .header-right {
      gap: 0.75rem;
    }
    .contact-block {
      display: none;
    }
    .btn-action {
      font-size: 0.8rem;
      padding: 0.4rem 0.9rem;
    }
    .burger {
      display: flex;
    }
    .nav {
      display: none;
      width: 100%;
      order: 3;
      margin-top: 0.75rem;
      border-top: 1px solid var(--border-on-surface, #e0e0e0);
      padding-top: 0.75rem;
    }
    .nav.open {
      display: block;
    }
    .nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav a {
      display: block;
      padding: 0.5rem 0;
      border-bottom: none;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 280px;
  min-width: 220px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 260px;
}
.brand {
  margin-bottom: 1.2rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.logo:hover {
  color: #ffc107;
}
.contacts {
  line-height: 1.8;
}
.contact-item {
  margin: 0.3rem 0;
}
.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item a:hover {
  color: #f0a500;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.legal-links a:hover {
  color: #f0a500;
}
.disclaimer {
  font-size: 0.8rem;
  color: #999;
  line-height: 1.4;
  margin: 0.8rem 0;
  font-style: italic;
}
.copyright {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.5rem;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

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

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

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

    .features-struct-v2 .head {
        display: grid;
        gap: calc(var(--gap) * .35)
    }

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

    .features-struct-v2 article {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .9rem;
        display: grid;
        gap: .5rem
    }

    .features-struct-v2 .icon {
        min-height: 2rem;
        min-width: 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-1);
        border-radius: var(--radius-sm)
    }

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

    .features-struct-v2 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

    .features-struct-v2 .chips {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem
    }

    .features-struct-v2 .chips span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v2 .list {
        display: grid;
        gap: .6rem
    }

    .features-struct-v2 .list div {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v2 .timeline {
        display: grid;
        gap: .7rem
    }

    .features-struct-v2 .timeline article {
        position: relative;
        padding-left: 1.2rem
    }

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

    .features-struct-v2 .side img, .features-struct-v2 .media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .features-struct-v2 .table {
        display: grid;
        gap: .45rem
    }

    .features-struct-v2 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .5rem;
        padding: .65rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v2 .cards {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v2 .cta {
        display: flex;
        justify-content: flex-start
    }

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

    .features-struct-v2 details {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

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

        .features-struct-v2 .layout, .features-struct-v2 .split {
            grid-template-columns:1fr
        }
    }

    @media (max-width: 680px) {
        .features-struct-v2 .grid, .features-struct-v2 .cards, .features-struct-v2 .row {
            grid-template-columns:1fr
        }
    }

.hiw-split-c6 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .hiw-split-c6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .hiw-split-c6__media {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .hiw-split-c6__content {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .hiw-split-c6__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-lg);
    }

    .hiw-split-c6__content p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .hiw-split-c6__content h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.1rem);
    }

    .hiw-split-c6__content strong {
        display: block;
        margin-top: .8rem;
        color: var(--bg-accent);
    }

    .hiw-split-c6__copy {
        margin: .75rem 0 0;
        color: rgba(255, 255, 255, .85);
    }

    .hiw-split-c6__content ul {
        margin: 1rem 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: .65rem;
    }

    .hiw-split-c6__content li {
        padding: .8rem .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .16);
    }

.social-c2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        position: relative;
        overflow: hidden;
    }

    .social-c2::before {
        content: '';
        position: absolute;
        inset: -30%;
        background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
        radial-gradient(circle at 80% 55%, rgba(255, 107, 53, 0.18), transparent 55%);
        filter: blur(18px);
        animation: socialC2Bg 7s var(--anim-ease) infinite;
        pointer-events: none;
    }

    @keyframes socialC2Bg {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1)
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.04)
        }
    }

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

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

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

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

    .social-c2__grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 14px;
        align-items: stretch;
    }

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

    .social-c2__quote {
        display: none;
        padding: 18px 18px 16px;
    }

    .social-c2__quote.is-on {
        display: block;
    }

    .social-c2__qText {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: rgba(255, 255, 255, .92);
    }

    .social-c2__qMeta {
        margin-top: 14px;
        display: flex;
        gap: 10px;
        align-items: baseline;
        flex-wrap: wrap;

    }

    .social-c2__qName {
        font-weight: 900;
    }

    .social-c2__qRole {
        opacity: .85;
    }

    .social-c2__metrics {
        display: grid;
        gap: 12px;
    }

    .social-c2__metric {
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-md);
        padding: 16px;
    }

    .social-c2__mVal {
        font-weight: 900;
        font-size: clamp(22px, 3vw, 32px);
        letter-spacing: -.01em;
    }

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

    @media (max-width: 980px) {
        .social-c2__grid {
            grid-template-columns:1fr;
        }
    }

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

/* header */
  header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x, 1.5rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) 0;
    gap: var(--gap, 1.5rem);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--gap, 2rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a1a2e);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav a:hover {
    border-bottom-color: var(--accent, #e94560);
    color: var(--accent, #e94560);
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap, 1.5rem);
  }
  .contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.4;
    font-size: 0.875rem;
    color: var(--neutral-600, #666);
  }
  .contact-phone {
    font-weight: 600;
    color: var(--neutral-900, #111);
  }
  .contact-email {
    font-size: 0.8rem;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--accent, #e94560);
    color: var(--accent-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), box-shadow var(--anim-duration, 0.2s) var(--anim-ease, ease);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-accent-hover, #d63850);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.15));
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--neutral-800, #222);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  /* burger open state */
  .burger.open .burger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .burger.open .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.open .burger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* mobile */
  @media (max-width: 767px) {
    .header-inner {
      flex-wrap: wrap;
      padding: var(--space-y, 0.75rem) 0;
    }
    .header-left {
      flex: 1;
      min-width: 0;
    }
    .header-right {
      gap: 0.75rem;
    }
    .contact-block {
      display: none;
    }
    .btn-action {
      font-size: 0.8rem;
      padding: 0.4rem 0.9rem;
    }
    .burger {
      display: flex;
    }
    .nav {
      display: none;
      width: 100%;
      order: 3;
      margin-top: 0.75rem;
      border-top: 1px solid var(--border-on-surface, #e0e0e0);
      padding-top: 0.75rem;
    }
    .nav.open {
      display: block;
    }
    .nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav a {
      display: block;
      padding: 0.5rem 0;
      border-bottom: none;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 280px;
  min-width: 220px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 260px;
}
.brand {
  margin-bottom: 1.2rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.logo:hover {
  color: #ffc107;
}
.contacts {
  line-height: 1.8;
}
.contact-item {
  margin: 0.3rem 0;
}
.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item a:hover {
  color: #f0a500;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.legal-links a:hover {
  color: #f0a500;
}
.disclaimer {
  font-size: 0.8rem;
  color: #999;
  line-height: 1.4;
  margin: 0.8rem 0;
  font-style: italic;
}
.copyright {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.5rem;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

.nfform-v7 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .nfform-v7__form {
        max-width: 760px;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v7 p {
        margin: 0 0 2px;
        opacity: .92;
    }

    .nfform-v7 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v7 input:not([type='checkbox']),
    .nfform-v7 textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .nfform-v7__agree {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nfform-v7 button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

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

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

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

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

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

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

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

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

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

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

.nfcontacts-v11 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .nfcontacts-v11__shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
    }

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

    .nfcontacts-v11__head p {
        margin: 8px 0 0;
        opacity: .85;
    }

    .nfcontacts-v11__stack {
        display: grid;
        gap: 8px;
    }

    .nfcontacts-v11 details {
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .2);
        padding: 10px 12px;
    }

    .nfcontacts-v11 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .nfcontacts-v11 details div {
        margin-top: 8px;
        display: grid;
        gap: 6px;
    }

    .nfcontacts-v11 details p {
        margin: 0;
    }

    .nfcontacts-v11 details a {
        color: var(--neutral-0);
        text-decoration: underline;
    }

.nftouch-v8 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .nftouch-v8__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

    .nftouch-v8__lead {
        margin: 10px 0 14px;
        color: var(--neutral-600);
    }

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

    .nftouch-v8__row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .nftouch-v8__title {
        margin: 0 0 4px;
        font-weight: 600;
    }

    .nftouch-v8__text {
        margin: 0;
        color: var(--neutral-600);
    }

    .nftouch-v8__row a {
        color: var(--link);
        text-decoration: none;
        white-space: nowrap;
    }

    .nftouch-v8__cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 700px) {
        .nftouch-v8__row {
            flex-direction: column;
            align-items: flex-start;
        }

        .nftouch-v8__row a {
            white-space: normal;
        }
    }

/* header */
  header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x, 1.5rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) 0;
    gap: var(--gap, 1.5rem);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--gap, 2rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a1a2e);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav a:hover {
    border-bottom-color: var(--accent, #e94560);
    color: var(--accent, #e94560);
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap, 1.5rem);
  }
  .contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.4;
    font-size: 0.875rem;
    color: var(--neutral-600, #666);
  }
  .contact-phone {
    font-weight: 600;
    color: var(--neutral-900, #111);
  }
  .contact-email {
    font-size: 0.8rem;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--accent, #e94560);
    color: var(--accent-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), box-shadow var(--anim-duration, 0.2s) var(--anim-ease, ease);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-accent-hover, #d63850);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.15));
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--neutral-800, #222);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  /* burger open state */
  .burger.open .burger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .burger.open .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.open .burger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* mobile */
  @media (max-width: 767px) {
    .header-inner {
      flex-wrap: wrap;
      padding: var(--space-y, 0.75rem) 0;
    }
    .header-left {
      flex: 1;
      min-width: 0;
    }
    .header-right {
      gap: 0.75rem;
    }
    .contact-block {
      display: none;
    }
    .btn-action {
      font-size: 0.8rem;
      padding: 0.4rem 0.9rem;
    }
    .burger {
      display: flex;
    }
    .nav {
      display: none;
      width: 100%;
      order: 3;
      margin-top: 0.75rem;
      border-top: 1px solid var(--border-on-surface, #e0e0e0);
      padding-top: 0.75rem;
    }
    .nav.open {
      display: block;
    }
    .nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav a {
      display: block;
      padding: 0.5rem 0;
      border-bottom: none;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 280px;
  min-width: 220px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 260px;
}
.brand {
  margin-bottom: 1.2rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.logo:hover {
  color: #ffc107;
}
.contacts {
  line-height: 1.8;
}
.contact-item {
  margin: 0.3rem 0;
}
.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item a:hover {
  color: #f0a500;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.legal-links a:hover {
  color: #f0a500;
}
.disclaimer {
  font-size: 0.8rem;
  color: #999;
  line-height: 1.4;
  margin: 0.8rem 0;
  font-style: italic;
}
.copyright {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.5rem;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

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

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

    .policy-layout-d .section-head {
        margin-bottom: 14px;
    }

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

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

    .policy-layout-d .timeline {
        border-left: 3px solid var(--brand);
        padding-left: 14px;
        display: grid;
        gap: 12px;
    }

    .policy-layout-d article {
        position: relative;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
    }

    .policy-layout-d .meta {
        margin: 0;
        color: var(--brand);
        font-size: .9rem;
        font-weight: 600;
    }

    .policy-layout-d h3 {
        margin: 7px 0;
    }

    .policy-layout-d article p {
        margin: 0;
        color: var(--neutral-600);
    }

/* header */
  header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x, 1.5rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) 0;
    gap: var(--gap, 1.5rem);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--gap, 2rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a1a2e);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav a:hover {
    border-bottom-color: var(--accent, #e94560);
    color: var(--accent, #e94560);
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap, 1.5rem);
  }
  .contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.4;
    font-size: 0.875rem;
    color: var(--neutral-600, #666);
  }
  .contact-phone {
    font-weight: 600;
    color: var(--neutral-900, #111);
  }
  .contact-email {
    font-size: 0.8rem;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--accent, #e94560);
    color: var(--accent-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), box-shadow var(--anim-duration, 0.2s) var(--anim-ease, ease);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-accent-hover, #d63850);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.15));
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--neutral-800, #222);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  /* burger open state */
  .burger.open .burger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .burger.open .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.open .burger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* mobile */
  @media (max-width: 767px) {
    .header-inner {
      flex-wrap: wrap;
      padding: var(--space-y, 0.75rem) 0;
    }
    .header-left {
      flex: 1;
      min-width: 0;
    }
    .header-right {
      gap: 0.75rem;
    }
    .contact-block {
      display: none;
    }
    .btn-action {
      font-size: 0.8rem;
      padding: 0.4rem 0.9rem;
    }
    .burger {
      display: flex;
    }
    .nav {
      display: none;
      width: 100%;
      order: 3;
      margin-top: 0.75rem;
      border-top: 1px solid var(--border-on-surface, #e0e0e0);
      padding-top: 0.75rem;
    }
    .nav.open {
      display: block;
    }
    .nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav a {
      display: block;
      padding: 0.5rem 0;
      border-bottom: none;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 280px;
  min-width: 220px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 260px;
}
.brand {
  margin-bottom: 1.2rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.logo:hover {
  color: #ffc107;
}
.contacts {
  line-height: 1.8;
}
.contact-item {
  margin: 0.3rem 0;
}
.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item a:hover {
  color: #f0a500;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.legal-links a:hover {
  color: #f0a500;
}
.disclaimer {
  font-size: 0.8rem;
  color: #999;
  line-height: 1.4;
  margin: 0.8rem 0;
  font-style: italic;
}
.copyright {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.5rem;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

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

    .terms-layout-d .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .terms-layout-d .section-head {
        margin-bottom: 16px;
    }

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

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

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

    .terms-layout-d h3, .terms-layout-d h4 {
        margin: 0 0 8px;
    }

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

/* header */
  header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x, 1.5rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) 0;
    gap: var(--gap, 1.5rem);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--gap, 2rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a1a2e);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav a:hover {
    border-bottom-color: var(--accent, #e94560);
    color: var(--accent, #e94560);
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap, 1.5rem);
  }
  .contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.4;
    font-size: 0.875rem;
    color: var(--neutral-600, #666);
  }
  .contact-phone {
    font-weight: 600;
    color: var(--neutral-900, #111);
  }
  .contact-email {
    font-size: 0.8rem;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--accent, #e94560);
    color: var(--accent-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), box-shadow var(--anim-duration, 0.2s) var(--anim-ease, ease);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-accent-hover, #d63850);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.15));
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--neutral-800, #222);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  /* burger open state */
  .burger.open .burger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .burger.open .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.open .burger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* mobile */
  @media (max-width: 767px) {
    .header-inner {
      flex-wrap: wrap;
      padding: var(--space-y, 0.75rem) 0;
    }
    .header-left {
      flex: 1;
      min-width: 0;
    }
    .header-right {
      gap: 0.75rem;
    }
    .contact-block {
      display: none;
    }
    .btn-action {
      font-size: 0.8rem;
      padding: 0.4rem 0.9rem;
    }
    .burger {
      display: flex;
    }
    .nav {
      display: none;
      width: 100%;
      order: 3;
      margin-top: 0.75rem;
      border-top: 1px solid var(--border-on-surface, #e0e0e0);
      padding-top: 0.75rem;
    }
    .nav.open {
      display: block;
    }
    .nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav a {
      display: block;
      padding: 0.5rem 0;
      border-bottom: none;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 280px;
  min-width: 220px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 260px;
}
.brand {
  margin-bottom: 1.2rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.logo:hover {
  color: #ffc107;
}
.contacts {
  line-height: 1.8;
}
.contact-item {
  margin: 0.3rem 0;
}
.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item a:hover {
  color: #f0a500;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.legal-links a:hover {
  color: #f0a500;
}
.disclaimer {
  font-size: 0.8rem;
  color: #999;
  line-height: 1.4;
  margin: 0.8rem 0;
  font-style: italic;
}
.copyright {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.5rem;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

.nfthank-v10 {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .nfthank-v10__wrap {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
    }

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

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

    .nfthank-v10 a {
        display: inline-block;
        margin-top: 16px;
        padding: 9px 14px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-page);
    }

/* header */
  header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x, 1.5rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) 0;
    gap: var(--gap, 1.5rem);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--gap, 2rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a1a2e);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav a:hover {
    border-bottom-color: var(--accent, #e94560);
    color: var(--accent, #e94560);
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap, 1.5rem);
  }
  .contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.4;
    font-size: 0.875rem;
    color: var(--neutral-600, #666);
  }
  .contact-phone {
    font-weight: 600;
    color: var(--neutral-900, #111);
  }
  .contact-email {
    font-size: 0.8rem;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--accent, #e94560);
    color: var(--accent-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), box-shadow var(--anim-duration, 0.2s) var(--anim-ease, ease);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-accent-hover, #d63850);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.15));
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--neutral-800, #222);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  /* burger open state */
  .burger.open .burger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .burger.open .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.open .burger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* mobile */
  @media (max-width: 767px) {
    .header-inner {
      flex-wrap: wrap;
      padding: var(--space-y, 0.75rem) 0;
    }
    .header-left {
      flex: 1;
      min-width: 0;
    }
    .header-right {
      gap: 0.75rem;
    }
    .contact-block {
      display: none;
    }
    .btn-action {
      font-size: 0.8rem;
      padding: 0.4rem 0.9rem;
    }
    .burger {
      display: flex;
    }
    .nav {
      display: none;
      width: 100%;
      order: 3;
      margin-top: 0.75rem;
      border-top: 1px solid var(--border-on-surface, #e0e0e0);
      padding-top: 0.75rem;
    }
    .nav.open {
      display: block;
    }
    .nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav a {
      display: block;
      padding: 0.5rem 0;
      border-bottom: none;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 280px;
  min-width: 220px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 260px;
}
.brand {
  margin-bottom: 1.2rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.logo:hover {
  color: #ffc107;
}
.contacts {
  line-height: 1.8;
}
.contact-item {
  margin: 0.3rem 0;
}
.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item a:hover {
  color: #f0a500;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.legal-links a:hover {
  color: #f0a500;
}
.disclaimer {
  font-size: 0.8rem;
  color: #999;
  line-height: 1.4;
  margin: 0.8rem 0;
  font-style: italic;
}
.copyright {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.5rem;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

.nf404-v11 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: linear-gradient(150deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .nf404-v11__shell {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(28px, 4vw, 44px);
        background: rgba(15, 23, 42, .24);
        border: 1px solid rgba(255, 255, 255, .24);
    }

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

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

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