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

  --max-w: 1080px;
  --space-x: 1.18rem;
  --space-y: 1.5rem;
  --gap: 2.34rem;

  --radius-xl: 1.21rem;
  --radius-lg: 0.86rem;
  --radius-md: 0.65rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.23);
  --shadow-md: 0 10px 32px rgba(0,0,0,0.3);
  --shadow-lg: 0 22px 64px rgba(0,0,0,0.36);

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

  --brand: #1A3C34;
  --brand-contrast: #FFFFFF;
  --accent: #D4A843;
  --accent-contrast: #1A1A1A;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F0;
  --neutral-300: #C2C2B8;
  --neutral-600: #6B6B63;
  --neutral-800: #2E2E2A;
  --neutral-900: #1A1A17;

  --bg-page: #F5F5F0;
  --fg-on-page: #1A1A17;

  --bg-alt: #E8E6DF;
  --fg-on-alt: #1A1A17;

  --surface-1: #FFFFFF;
  --surface-2: #F0EFE8;
  --fg-on-surface: #1A1A17;
  --border-on-surface: #D6D4CC;

  --surface-light: #FAFAF7;
  --fg-on-surface-light: #1A1A17;
  --border-on-surface-light: #E0DFD8;

  --bg-primary: #1A3C34;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #14302A;
  --ring: #D4A843;

  --bg-accent: #D4A843;
  --fg-on-accent: #1A1A1A;
  --bg-accent-hover: #B8922E;

  --link: #1A3C34;
  --link-hover: #D4A843;

  --gradient-hero: linear-gradient(135deg, #1A3C34 0%, #2A5C52 100%);
  --gradient-accent: linear-gradient(135deg, #D4A843 0%, #B8922E 100%);

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .nav-menu a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  .nav-menu a.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 8px;
    }
    .nav-menu a {
      display: block;
      padding: 12px 16px;
      text-align: center;
    }
    .cta-secondary {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-brand {
  flex: 1 1 200px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f0a500;
  text-transform: uppercase;
}

.footer-right {
  flex: 2 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-menu a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #f0a500;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: #f0a500;
}

.footer-contact {
  max-width: 1200px;
  margin: 2rem auto 0;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.contact-address,
.contact-phone,
.contact-email {
  color: #e0e0e0;
  font-size: 0.95rem;
}

.contact-phone,
.contact-email {
  text-decoration: none;
  transition: color 0.3s;
}

.contact-phone:hover,
.contact-email:hover {
  color: #f0a500;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: #999;
  margin: 0 0 0.5rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-menu {
    justify-content: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

.nfintro-v7 {
        padding: clamp(3.8rem, 8vw, 6.8rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .nfintro-v7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1rem;
    }

    .nfintro-v7__copy,
    .nfintro-v7__meta {
        padding: 1.1rem;
        border-radius: var(--radius-xl);
        background: rgba(17, 24, 39, .18);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .nfintro-v7__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .nfintro-v7__copy h1 {
        margin: .65rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.8rem);
        line-height: 1.02;
    }

    .nfintro-v7__copy span {
        display: block;
        margin-top: .95rem;
        max-width: 38rem;
    }

    .nfintro-v7__actions {
        margin-top: 1.1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .nfintro-v7__actions a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .22);
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .12);
    }

    .nfintro-v7__actions a:first-child {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

    .nfintro-v7__meta {
        display: grid;
        align-content: center;
        gap: .7rem;
    }

    .nfintro-v7__meta p,
    .nfintro-v7__meta div {margin: 0; color: rgba(255, 255, 255, .88);}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.features {
    padding: clamp(48px, 8vw, 80px) 0;
    color: var(--fg-on-page);
}

.features--alt {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}

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

.features__title {
    text-align: center;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
    color: inherit;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: calc(var(--gap) * 1.5);
}

.features__card {
    background-color: var(--surface-1);
    padding: clamp(16px, 3vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: center;
    border: 1px solid var(--border-on-surface);
}

.features__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.features__icon {
    font-size: 2.5rem;
    color: var(--brand);
    margin-bottom: var(--space-y);
}

.features__card h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-surface);
}

.features__card p {
    color: var(--fg-on-surface-light);
    margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .nav-menu a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  .nav-menu a.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 8px;
    }
    .nav-menu a {
      display: block;
      padding: 12px 16px;
      text-align: center;
    }
    .cta-secondary {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-brand {
  flex: 1 1 200px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f0a500;
  text-transform: uppercase;
}

.footer-right {
  flex: 2 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-menu a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #f0a500;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: #f0a500;
}

.footer-contact {
  max-width: 1200px;
  margin: 2rem auto 0;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.contact-address,
.contact-phone,
.contact-email {
  color: #e0e0e0;
  font-size: 0.95rem;
}

.contact-phone,
.contact-email {
  text-decoration: none;
  transition: color 0.3s;
}

.contact-phone:hover,
.contact-email:hover {
  color: #f0a500;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: #999;
  margin: 0 0 0.5rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-menu {
    justify-content: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

.profile {

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

    .profile .profile__c {
        max-width: 900px;
        margin: 0 auto;
    }

    .profile .profile__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .profile h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
    }

    .profile .profile__card {
        background: var(--surface-light);
        border: 2px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
        box-shadow: var(--shadow-lg);
    }

    .profile .profile__header {
        display: flex;
        gap: clamp(24px, 4vw, 32px);
        align-items: center;
        margin-bottom: clamp(32px, 4vw, 40px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 2px solid var(--border-on-surface-light);
    }

    /* Ak je randomNumber párne (2) - prvý potomok dostane order: 2 */
    .profile .profile__header > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 767px) {
        .profile .profile__header {
            flex-direction: column;
            text-align: center;
        }
    }

    .profile .profile__avatar-wrapper {
        position: relative;
        flex-shrink: 0;
    }

    .profile .profile__avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 700;
        border: 4px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__avatar-overlay {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        border: 3px solid var(--bg-page);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__avatar-overlay input {
        display: none;
    }

    .profile .profile__avatar-overlay:hover {
        transform: scale(1.1);
        box-shadow: var(--shadow-lg);
    }

    .profile .profile__avatar-icon {
        font-size: 1.125rem;
    }

    .profile .profile__header-info {
        flex: 1;
    }

    .profile .profile__header-info h2 {
        margin: 0 0 0.5rem;
        font-size: clamp(24px, 3.5vw, 28px);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__role {
        margin: 0;
        color: var(--neutral-600);
        font-size: 1rem;
    }

    .profile .profile__form {
        display: flex;
        flex-direction: column;
        gap: clamp(32px, 4vw, 40px);
    }

    /* Ak je randomNumber párne (2) - prvý potomok dostane order: 2 */
    .profile .profile__form > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__form-section {
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .profile .profile__form-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

    .profile .profile__form-section h3 {
        margin: 0 0 clamp(20px, 3vw, 24px);
        font-size: clamp(20px, 2.8vw, 24px);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 24px);
    }

    /* Ak je randomNumber párne (2) - prvý potomok dostane order: 2 */
    .profile .profile__form-grid > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 767px) {
        .profile .profile__form-grid {
            grid-template-columns: 1fr;
        }
    }

    .profile .profile__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .profile .profile__form-group label {
        font-weight: 600;
        color: var(--fg-on-page);
        font-size: 0.875rem;
    }

    .profile .profile__form-group input,
    .profile .profile__form-group textarea {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__form-group input::placeholder,
    .profile .profile__form-group textarea::placeholder {
        color: var(--neutral-600);
    }

    .profile .profile__form-group input:focus,
    .profile .profile__form-group textarea:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .profile .profile__checkboxes {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Ak je randomNumber párne (2) - prvý potomok dostane order: 2 */
    .profile .profile__checkboxes > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__checkbox-label {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        cursor: pointer;
        font-weight: 500;
        color: var(--fg-on-page);
    }

    .profile .profile__checkbox-label input {
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .profile .profile__actions {
        display: flex;
        gap: 1rem;
        margin-top: clamp(24px, 4vw, 32px);
        padding-top: clamp(24px, 4vw, 32px);
        border-top: 1px solid var(--border-on-surface-light);
    }

    /* Ak je randomNumber párne (2) - prvý potomok dostane order: 2 */
    .profile .profile__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__save {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__save:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

    .profile .profile__cancel {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--ring);
        background: transparent;
        color: var(--fg-on-page);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__cancel:hover {
        border-color: var(--bg-primary);
        color: var(--bg-primary);
        background: rgba(37, 99, 235, 0.1);
    }

.support-cv2 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .support-cv2__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

    .support-cv2__box h2 {
        margin: 0;
        font-size: clamp(26px, 4vw, 40px);
    }

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

    .support-cv2__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-cv2__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .nav-menu a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  .nav-menu a.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 8px;
    }
    .nav-menu a {
      display: block;
      padding: 12px 16px;
      text-align: center;
    }
    .cta-secondary {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-brand {
  flex: 1 1 200px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f0a500;
  text-transform: uppercase;
}

.footer-right {
  flex: 2 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-menu a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #f0a500;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: #f0a500;
}

.footer-contact {
  max-width: 1200px;
  margin: 2rem auto 0;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.contact-address,
.contact-phone,
.contact-email {
  color: #e0e0e0;
  font-size: 0.95rem;
}

.contact-phone,
.contact-email {
  text-decoration: none;
  transition: color 0.3s;
}

.contact-phone:hover,
.contact-email:hover {
  color: #f0a500;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: #999;
  margin: 0 0 0.5rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-menu {
    justify-content: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

.settings {

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

    .settings .settings__c {
        max-width: 800px;
        margin: 0 auto;
    }

    .settings .settings__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .settings h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .settings .settings__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
    }

    .settings .settings__accordion {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .settings .settings__accordion > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__accordion-item {
        background: var(--surface-light);
        border: 2px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__accordion-item:hover {
        box-shadow: var(--shadow-md);
        border-color: var(--bg-primary);
    }

    .settings .settings__accordion-item.active {
        border-color: var(--bg-primary);
        box-shadow: var(--shadow-lg);
    }

    .settings .settings__accordion-header {
        width: 100%;
        padding: clamp(20px, 3vw, 28px);
        border: none;
        background: transparent;
        color: var(--fg-on-page);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        text-align: left;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__accordion-header:hover {
        background: var(--bg-alt);
    }

    .settings .settings__accordion-title {
        font-size: clamp(18px, 2.4vw, 20px);
        font-weight: 700;
        color: var(--fg-on-page);
    }

    .settings .settings__accordion-icon {
        font-size: 0.875rem;
        color: var(--neutral-600);
        transition: transform var(--anim-duration) var(--anim-ease);
        flex-shrink: 0;
    }

    .settings .settings__accordion-item.active .settings__accordion-icon {
        transform: rotate(180deg);
    }

    .settings .settings__accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__accordion-item.active .settings__accordion-content {
        max-height: 2000px;
    }

    .settings .settings__form {
        padding: 0 clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px);
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 24px);
    }

    .settings .settings__avatar-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: clamp(20px, 3vw, 28px) 0;
    }

    .settings .settings__avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 700;
        border: 4px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .settings .settings__avatar-btn {
        padding: 0.625rem 1.25rem;
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        font-size: 0.875rem;
        border: 1px solid var(--ring);
    }

    .settings .settings__avatar-btn input {
        display: none;
    }

    .settings .settings__avatar-btn:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .settings .settings__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .settings .settings__form-group label {
        font-weight: 600;
        color: var(--fg-on-page);
        font-size: 0.875rem;
    }

    .settings .settings__form-group input[type="text"],
    .settings .settings__form-group input[type="email"] {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__form-group input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .settings .settings__form-group input[type="checkbox"] {
        margin-right: 0.5rem;
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .settings .settings__form-group label span {
        font-weight: 500;
        color: var(--fg-on-page);
    }

    .settings .settings__submit {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
        box-shadow: var(--shadow-md);
    }

    .settings .settings__submit:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

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

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

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

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

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

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

    .education-struct-v5 .grid a, .education-struct-v5 .tiers a, .education-struct-v5 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.security--light-v6 {

    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

.security__inner {
    max-width: 720px;
    margin: 0 auto;
}

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

.security__inner p {
    margin: 0 0 10px;
    color: var(--neutral-700);
}

.security__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.security__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: var(--radius-lg);
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
}

.security__bullet {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
}

.security__label {
    font-size: 0.9rem;
    color: var(--neutral-800);
}

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .nav-menu a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  .nav-menu a.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 8px;
    }
    .nav-menu a {
      display: block;
      padding: 12px 16px;
      text-align: center;
    }
    .cta-secondary {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-brand {
  flex: 1 1 200px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f0a500;
  text-transform: uppercase;
}

.footer-right {
  flex: 2 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-menu a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #f0a500;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: #f0a500;
}

.footer-contact {
  max-width: 1200px;
  margin: 2rem auto 0;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.contact-address,
.contact-phone,
.contact-email {
  color: #e0e0e0;
  font-size: 0.95rem;
}

.contact-phone,
.contact-email {
  text-decoration: none;
  transition: color 0.3s;
}

.contact-phone:hover,
.contact-email:hover {
  color: #f0a500;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: #999;
  margin: 0 0 0.5rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-menu {
    justify-content: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

.activity {

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

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

    .activity .activity__h {
        margin-bottom: var(--space-y);
    }

    .activity h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0;
        color: var(--fg-on-primary);
    }

    .activity .activity__timeline {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        position: relative;
        padding-left: 2rem;
    }

    .activity .activity__timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--ring);
    }

    .activity .activity__item {
        position: relative;
        padding-left: 2rem;
    }

    .activity .activity__item::before {
        content: '';
        position: absolute;
        left: -1.625rem;
        top: 0.5rem;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--bg-primary);
        border: 2px solid var(--bg-page);
    }

    .activity .activity__date {
        color: var(--neutral-600);
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .activity .activity__content {
        background: var(--surface-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .activity h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 20px);
        color: var(--fg-on-primary);
    }

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

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

        transform: translateY(28px);
    }

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

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

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

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

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

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

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

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

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

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

.about-timeline {

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

    .about-timeline .about-timeline__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-timeline .about-timeline__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-timeline .about-timeline__cell {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
    }

    .about-timeline time {
        opacity: .9;
    }

    @media (max-width: 767px) {
        .about-timeline .about-timeline__grid {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .nav-menu a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  .nav-menu a.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 8px;
    }
    .nav-menu a {
      display: block;
      padding: 12px 16px;
      text-align: center;
    }
    .cta-secondary {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-brand {
  flex: 1 1 200px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f0a500;
  text-transform: uppercase;
}

.footer-right {
  flex: 2 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-menu a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #f0a500;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: #f0a500;
}

.footer-contact {
  max-width: 1200px;
  margin: 2rem auto 0;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.contact-address,
.contact-phone,
.contact-email {
  color: #e0e0e0;
  font-size: 0.95rem;
}

.contact-phone,
.contact-email {
  text-decoration: none;
  transition: color 0.3s;
}

.contact-phone:hover,
.contact-email:hover {
  color: #f0a500;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: #999;
  margin: 0 0 0.5rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-menu {
    justify-content: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

.security--light-v6 {

    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

.security__inner {
    max-width: 720px;
    margin: 0 auto;
}

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

.security__inner p {
    margin: 0 0 10px;
    color: var(--neutral-700);
}

.security__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.security__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: var(--radius-lg);
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
}

.security__bullet {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
}

.security__label {
    font-size: 0.9rem;
    color: var(--neutral-800);
}

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .nav-menu a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  .nav-menu a.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 8px;
    }
    .nav-menu a {
      display: block;
      padding: 12px 16px;
      text-align: center;
    }
    .cta-secondary {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-brand {
  flex: 1 1 200px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f0a500;
  text-transform: uppercase;
}

.footer-right {
  flex: 2 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-menu a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #f0a500;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: #f0a500;
}

.footer-contact {
  max-width: 1200px;
  margin: 2rem auto 0;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.contact-address,
.contact-phone,
.contact-email {
  color: #e0e0e0;
  font-size: 0.95rem;
}

.contact-phone,
.contact-email {
  text-decoration: none;
  transition: color 0.3s;
}

.contact-phone:hover,
.contact-email:hover {
  color: #f0a500;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: #999;
  margin: 0 0 0.5rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-menu {
    justify-content: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: clamp(20px, 3vw, 28px);
    }

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

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

    .connect .connect__icon {
        font-size: clamp(46px, 8vw, 70px);
        width: clamp(95px, 13.5vw, 135px);
        height: clamp(95px, 13.5vw, 135px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-2);
        border-radius: 50%;
        border: 2px solid var(--border-on-surface);
    }

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

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

    .form-layout-e .wrap {
        max-width: 820px;
        margin: 0 auto;
        background: white;
        color: black;
        border-radius: var(--radius-xl);
        padding: var(--space-x);
        box-shadow: var(--shadow-md);
    }

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

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

    .form-layout-e .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
    }

    .form-layout-e .dark-card {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: rgba(255, 255, 255, .04);
    }

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

    .form-layout-e input:not([type="checkbox"]), .form-layout-e textarea {
        width: 100%;
        border: 1px solid var(--neutral-600);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .07);
        color: var(--neutral-0);
        padding: 9px;
        font: inherit;
    }

    .form-layout-e .end {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 8px;
    }

    .form-layout-e .agree {
        display: flex;
        gap: 8px;
        align-items: center;
    }

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .nav-menu a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  .nav-menu a.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 8px;
    }
    .nav-menu a {
      display: block;
      padding: 12px 16px;
      text-align: center;
    }
    .cta-secondary {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-brand {
  flex: 1 1 200px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f0a500;
  text-transform: uppercase;
}

.footer-right {
  flex: 2 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-menu a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #f0a500;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: #f0a500;
}

.footer-contact {
  max-width: 1200px;
  margin: 2rem auto 0;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.contact-address,
.contact-phone,
.contact-email {
  color: #e0e0e0;
  font-size: 0.95rem;
}

.contact-phone,
.contact-email {
  text-decoration: none;
  transition: color 0.3s;
}

.contact-phone:hover,
.contact-email:hover {
  color: #f0a500;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: #999;
  margin: 0 0 0.5rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-menu {
    justify-content: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .nav-menu a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  .nav-menu a.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 8px;
    }
    .nav-menu a {
      display: block;
      padding: 12px 16px;
      text-align: center;
    }
    .cta-secondary {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-brand {
  flex: 1 1 200px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f0a500;
  text-transform: uppercase;
}

.footer-right {
  flex: 2 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-menu a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #f0a500;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: #f0a500;
}

.footer-contact {
  max-width: 1200px;
  margin: 2rem auto 0;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.contact-address,
.contact-phone,
.contact-email {
  color: #e0e0e0;
  font-size: 0.95rem;
}

.contact-phone,
.contact-email {
  text-decoration: none;
  transition: color 0.3s;
}

.contact-phone:hover,
.contact-email:hover {
  color: #f0a500;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: #999;
  margin: 0 0 0.5rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-menu {
    justify-content: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

    .policy-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .policy-layout-f .section-head {
        margin-bottom: 16px;
    }

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

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

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

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

    .policy-layout-f .head {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .nav-menu a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  .nav-menu a.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 8px;
    }
    .nav-menu a {
      display: block;
      padding: 12px 16px;
      text-align: center;
    }
    .cta-secondary {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-brand {
  flex: 1 1 200px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f0a500;
  text-transform: uppercase;
}

.footer-right {
  flex: 2 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-menu a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #f0a500;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: #f0a500;
}

.footer-contact {
  max-width: 1200px;
  margin: 2rem auto 0;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.contact-address,
.contact-phone,
.contact-email {
  color: #e0e0e0;
  font-size: 0.95rem;
}

.contact-phone,
.contact-email {
  text-decoration: none;
  transition: color 0.3s;
}

.contact-phone:hover,
.contact-email:hover {
  color: #f0a500;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: #999;
  margin: 0 0 0.5rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-menu {
    justify-content: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

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

    .thank-mode-d .core {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .24);
    }

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

    .thank-mode-d p {
        margin: 12px 0 0;
        opacity: .9;
    }

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .nav-menu a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  .nav-menu a.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 8px;
    }
    .nav-menu a {
      display: block;
      padding: 12px 16px;
      text-align: center;
    }
    .cta-secondary {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-brand {
  flex: 1 1 200px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f0a500;
  text-transform: uppercase;
}

.footer-right {
  flex: 2 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-menu a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #f0a500;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: #f0a500;
}

.footer-contact {
  max-width: 1200px;
  margin: 2rem auto 0;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.contact-address,
.contact-phone,
.contact-email {
  color: #e0e0e0;
  font-size: 0.95rem;
}

.contact-phone,
.contact-email {
  text-decoration: none;
  transition: color 0.3s;
}

.contact-phone:hover,
.contact-email:hover {
  color: #f0a500;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: #999;
  margin: 0 0 0.5rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-menu {
    justify-content: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

.err-slab-c {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: linear-gradient(180deg, var(--bg-accent), var(--bg-page));
        color: var(--fg-on-page);
    }

    .err-slab-c .tile {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 44px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        border-top: 8px solid var(--accent);
    }

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

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

    .err-slab-c a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: 999px;
        border: 1px solid var(--neutral-300);
        color: var(--fg-on-page);
        text-decoration: none;
    }