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

  --max-w: 1240px;
  --space-x: 1.12rem;
  --space-y: 1.29rem;
  --gap: 0.72rem;

  --radius-xl: 0.9rem;
  --radius-lg: 0.74rem;
  --radius-md: 0.38rem;
  --radius-sm: 0.2rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 5px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);

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

  --brand: #1A3A5C;
  --brand-contrast: #FFFFFF;
  --accent: #E67E22;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D8E0;
  --neutral-600: #7F8C8D;
  --neutral-800: #2C3E50;
  --neutral-900: #1A252F;

  --bg-page: #FFFFFF;
  --fg-on-page: #2C3E50;

  --bg-alt: #F0F4F8;
  --fg-on-alt: #34495E;

  --surface-1: #FFFFFF;
  --surface-2: #F9FAFB;
  --fg-on-surface: #2C3E50;
  --border-on-surface: #E2E8F0;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #2C3E50;
  --border-on-surface-light: #E2E8F0;

  --bg-primary: #2980B9;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1F618D;
  --ring: #2980B9;

  --bg-accent: #E67E22;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #D35400;

  --link: #2980B9;
  --link-hover: #1F618D;

  --gradient-hero: linear-gradient(135deg, #1A3A5C 0%, #2980B9 100%);
  --gradient-accent: linear-gradient(135deg, #E67E22 0%, #D35400 100%);

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

.site-header {
  background: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-left,
.nav-right {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

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

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

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid var(--brand);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: var(--space-x);
  top: 50%;
  transform: translateY(-50%);
  z-index: 110;
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

.mobile-nav {
  display: none;
  background: var(--surface-1);
  border-top: 1px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.mobile-nav-list .nav-link {
  display: block;
  padding: 0.5rem 0;
  font-size: calc(var(--font-size-base) * 1.1);
  border-bottom: 1px solid var(--border-on-surface-light);
}

.mobile-nav-list .nav-link::after {
  display: none;
}

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
    display: flex;
    align-items: flex-start;
  }
  .brand {
    background: linear-gradient(135deg, #0f3460, #16213e);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e94560;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e94560;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #e94560;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .legal-links a {
    color: #a0a0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #e94560;
  }
  .footer-bottom {
    flex: 1 1 100%;
    border-top: 1px solid #2a2a4a;
    padding-top: 1.5rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
  }
  .contact-info address {
    font-style: normal;
    color: #c0c0d0;
  }
  .contact-info a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-info a:hover {
    color: #e94560;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
    line-height: 1.5;
  }
  .copyright {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-left {
      justify-content: center;
    }
    .footer-right {
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .legal-links {
      justify-content: center;
    }
    .contact-info {
      justify-content: center;
      flex-direction: column;
      align-items: center;
    }
    .disclaimer, .copyright {
      text-align: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.wp-lang-switcher-v5 {
        position: fixed;
        right: clamp(16px, 2vw, var(--space-x, 24px));
        bottom: clamp(16px, 2vw, var(--space-y, 20px));
        z-index: 99999;

        --local-random: var(--random-number, 1);
    }

    .wp-lang-switcher-v5__btn {
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        padding: calc(8px + var(--local-random) * 1px) calc(12px + var(--local-random) * 2px);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-md, 12px) - var(--local-random) * 1px);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: var(--shadow-sm, 0 2px 4px rgba(0, 0, 0, 0.05));
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);

        font-size: 14px;
        font-weight: 500;
    }

    .wp-lang-switcher-v5__btn:hover {
        background: var(--bg-alt, #f9fafb);
        border-color: var(--neutral-300, #d1d5db);
        box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.08));
    }

    .wp-lang-switcher-v5__current {
        color: var(--fg-on-surface, #111827);
        font-weight: 600;
        letter-spacing: calc(0.3px + var(--local-random) * 0.1px);
    }

    .wp-lang-switcher-v5__arrow {
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        color: var(--neutral-600, #4b5563);
    }

    .wp-lang-switcher-v5__panel.open ~ .wp-lang-switcher-v5__btn .wp-lang-switcher-v5__arrow,
    .wp-lang-switcher-v5__btn:has(~ .wp-lang-switcher-v5__panel.open) .wp-lang-switcher-v5__arrow {
        transform: rotate(180deg);
    }

    .wp-lang-switcher-v5__panel {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 6px);
        background: var(--surface-1, #fff);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-md, 12px) + var(--local-random) * 1px);
        box-shadow: var(--shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.12));
        min-width: calc(160px + var(--local-random) * 10px);
        overflow: hidden;

        transform: translateY(4px);
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher-v5__panel.open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .wp-lang-switcher-v5__panel button,
    .wp-lang-switcher-v5__panel a {
        width: 100%;
        text-align: left;
        padding: calc(10px + var(--local-random) * 1px) calc(14px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        cursor: pointer;

        font-size: 14px;
        transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        border-bottom: 1px solid var(--neutral-100, #f9fafb);
        text-decoration: none;
        display: block;
    }

    .wp-lang-switcher-v5__panel button:last-child,
    .wp-lang-switcher-v5__panel a:last-child {
        border-bottom: none;
    }

    .wp-lang-switcher-v5__panel button:hover,
    .wp-lang-switcher-v5__panel a:hover {
        background: var(--bg-alt, #f9fafb);
        color: var(--bg-primary, #3b82f6);
    }

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

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

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

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

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

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

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

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

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

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

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

.next-route-l6 {
        padding: clamp(3.1rem, 7vw, 5.6rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

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

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

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

    .next-route-l6__line a {
        display: flex;
        gap: .6rem;
        align-items: center;
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        color: var(--fg-on-page);
    }

    .next-route-l6__line i {
        font-style: normal;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.why-choose-light {

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

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

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

        transform: translateY(20px);
    }

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

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

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

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

        transform: translateY(30px);
    }

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

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

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

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

.social-c2 {

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

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

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

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

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

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

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

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

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

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

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

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

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

    }

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

    .social-c2__qRole {
        opacity: .85;
    }

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

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

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

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

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

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

.site-header {
  background: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-left,
.nav-right {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

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

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

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid var(--brand);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: var(--space-x);
  top: 50%;
  transform: translateY(-50%);
  z-index: 110;
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

.mobile-nav {
  display: none;
  background: var(--surface-1);
  border-top: 1px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.mobile-nav-list .nav-link {
  display: block;
  padding: 0.5rem 0;
  font-size: calc(var(--font-size-base) * 1.1);
  border-bottom: 1px solid var(--border-on-surface-light);
}

.mobile-nav-list .nav-link::after {
  display: none;
}

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
    display: flex;
    align-items: flex-start;
  }
  .brand {
    background: linear-gradient(135deg, #0f3460, #16213e);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e94560;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e94560;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #e94560;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .legal-links a {
    color: #a0a0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #e94560;
  }
  .footer-bottom {
    flex: 1 1 100%;
    border-top: 1px solid #2a2a4a;
    padding-top: 1.5rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
  }
  .contact-info address {
    font-style: normal;
    color: #c0c0d0;
  }
  .contact-info a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-info a:hover {
    color: #e94560;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
    line-height: 1.5;
  }
  .copyright {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-left {
      justify-content: center;
    }
    .footer-right {
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .legal-links {
      justify-content: center;
    }
    .contact-info {
      justify-content: center;
      flex-direction: column;
      align-items: center;
    }
    .disclaimer, .copyright {
      text-align: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

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

    .faq-layout-c .section-head {
        margin-bottom: 16px;
    }

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

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

    .faq-layout-c .faq-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
        counter-reset: faq;
    }

    .faq-layout-c .row {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .faq-layout-c .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        cursor: pointer;
    }

    .faq-layout-c .q span {
        display: inline-block;
        min-width: 50px;
        color: var(--brand);
        font-weight: 700;
    }

    .faq-layout-c .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-c .a p {
        margin: 0;
        padding: 0 12px 12px;
        color: var(--neutral-600);
    }

    .faq-layout-c .row.open .a {
        max-height: 240px;
    }

.about-mission {

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

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

    .about-mission .about-mission__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: 1fr 1fr;
    }

    .about-mission p {
        color: var(--neutral-600);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__grid {
            grid-template-columns: 1fr;
        }
    }

.gallery--colored-v5 {

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

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

.gallery__header {
    text-align: center;
    margin-bottom: 24px;
}

.gallery__header h2 {
    margin: 0 0 6px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.gallery__header p {
    margin: 0;
    color: var(--neutral-300);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
}

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

.gallery__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    font-size: 0.85rem;
}

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

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

    .identity-lv2__head {
        text-align: center;
        margin-bottom: 16px;
    }

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

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

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

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

    .identity-lv2__grid h3 {
        margin: 0;
    }

    .identity-lv2__grid strong {
        display: block;
        margin: 6px 0;
        color: var(--brand);
    }

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

    .identity-lv2__grid blockquote {
        margin: 0;
        padding: 8px 10px;
        border-left: 3px solid var(--brand);
        background: var(--surface-2);
        color: var(--neutral-800);
    }

.site-header {
  background: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-left,
.nav-right {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

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

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

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid var(--brand);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: var(--space-x);
  top: 50%;
  transform: translateY(-50%);
  z-index: 110;
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

.mobile-nav {
  display: none;
  background: var(--surface-1);
  border-top: 1px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.mobile-nav-list .nav-link {
  display: block;
  padding: 0.5rem 0;
  font-size: calc(var(--font-size-base) * 1.1);
  border-bottom: 1px solid var(--border-on-surface-light);
}

.mobile-nav-list .nav-link::after {
  display: none;
}

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
    display: flex;
    align-items: flex-start;
  }
  .brand {
    background: linear-gradient(135deg, #0f3460, #16213e);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e94560;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e94560;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #e94560;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .legal-links a {
    color: #a0a0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #e94560;
  }
  .footer-bottom {
    flex: 1 1 100%;
    border-top: 1px solid #2a2a4a;
    padding-top: 1.5rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
  }
  .contact-info address {
    font-style: normal;
    color: #c0c0d0;
  }
  .contact-info a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-info a:hover {
    color: #e94560;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
    line-height: 1.5;
  }
  .copyright {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-left {
      justify-content: center;
    }
    .footer-right {
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .legal-links {
      justify-content: center;
    }
    .contact-info {
      justify-content: center;
      flex-direction: column;
      align-items: center;
    }
    .disclaimer, .copyright {
      text-align: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.plans-lv4 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .plans-lv4__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .plans-lv4__head {
        text-align: center;
        margin-bottom: 14px;
    }

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

    .plans-lv4__head p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .plans-lv4__stack {
        display: grid;
        gap: 10px;
    }

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

    .plans-lv4__line {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 8px;
    }

    .plans-lv4__line h3 {
        margin: 0;
    }

    .plans-lv4__line p {
        margin: 0;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv4__chips {
        margin-top: 8px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .plans-lv4__chips span {
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        padding: 5px 9px;
        font-size: .88rem;
    }

    .plans-lv4__stack button {
        margin-top: 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 11px;
    }

.hiw-zigzag-c3 {
        padding: clamp(3.6rem, 8vw, 6.1rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .hiw-zigzag-c3__head {
        max-width: 42rem;
        margin: 0 auto 1.25rem;
        text-align: center;
    }

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

    .hiw-zigzag-c3__head p {
        margin: .55rem 0 0;

    }

    .hiw-zigzag-c3__grid {
        display: grid;
        gap: var(--gap);
    }

    .hiw-zigzag-c3__grid article {
        width: min(40rem, 60%);
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .2);
        backdrop-filter: blur(8px);
    }

    .hiw-zigzag-c3__grid article:nth-child(odd) {
        margin-right: auto;
    }

    .hiw-zigzag-c3__grid article:nth-child(even) {
        margin-left: auto;
    }

    .hiw-zigzag-c3__num {
        display: inline-flex;
        min-width: 2.6rem;
        height: 2.6rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .hiw-zigzag-c3__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .9);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.social-c2 {

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

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

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

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

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

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

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

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

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

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

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

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

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

    }

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

    .social-c2__qRole {
        opacity: .85;
    }

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

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

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

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

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

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

.site-header {
  background: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-left,
.nav-right {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

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

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

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid var(--brand);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: var(--space-x);
  top: 50%;
  transform: translateY(-50%);
  z-index: 110;
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

.mobile-nav {
  display: none;
  background: var(--surface-1);
  border-top: 1px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.mobile-nav-list .nav-link {
  display: block;
  padding: 0.5rem 0;
  font-size: calc(var(--font-size-base) * 1.1);
  border-bottom: 1px solid var(--border-on-surface-light);
}

.mobile-nav-list .nav-link::after {
  display: none;
}

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
    display: flex;
    align-items: flex-start;
  }
  .brand {
    background: linear-gradient(135deg, #0f3460, #16213e);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e94560;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e94560;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #e94560;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .legal-links a {
    color: #a0a0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #e94560;
  }
  .footer-bottom {
    flex: 1 1 100%;
    border-top: 1px solid #2a2a4a;
    padding-top: 1.5rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
  }
  .contact-info address {
    font-style: normal;
    color: #c0c0d0;
  }
  .contact-info a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-info a:hover {
    color: #e94560;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
    line-height: 1.5;
  }
  .copyright {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-left {
      justify-content: center;
    }
    .footer-right {
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .legal-links {
      justify-content: center;
    }
    .contact-info {
      justify-content: center;
      flex-direction: column;
      align-items: center;
    }
    .disclaimer, .copyright {
      text-align: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

    .form-layout-f .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-f .boxed {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .form-layout-f .group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

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

    .form-layout-f input:not([type="checkbox"]), .form-layout-f textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

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

    .form-layout-f button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

.clarifications-c1 {

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

    .clarifications-c1::before {
        content: '';
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.18), transparent 52%);
        filter: blur(18px);
        animation: c1Glow 6s var(--anim-ease) infinite;
        opacity: .8;
        pointer-events: none;
    }

    @keyframes c1Glow {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1);
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.03);
        }
    }

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

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

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

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

    .clarifications-c1__grid {
        display: grid;
        gap: 12px;
    }

    .clarifications-c1__item {
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
        overflow: hidden;
        backdrop-filter: blur(8px);
    }

    .clarifications-c1__q {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: transparent;
        border: 0;
        color: inherit;
        cursor: pointer;
        text-align: left;
    }

    .clarifications-c1__dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--accent);
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.12);
        flex: 0 0 auto;
        animation: c1Dot 1.8s ease-in-out infinite;
    }

    @keyframes c1Dot {
        0%, 100% {
            transform: scale(1);
            opacity: .9
        }
        50% {
            transform: scale(1.15);
            opacity: 1
        }
    }

    .clarifications-c1__qText {
        font-weight: 800;
        letter-spacing: -.01em
    }

    .clarifications-c1__chev {
        margin-left: auto;
        opacity: .85;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c1__a {
        display: none;
        padding: 0 16px 16px 38px;
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    .clarifications-c1__item.is-open .clarifications-c1__chev {
        transform: rotate(180deg);
    }

    .clarifications-c1__item.is-open .clarifications-c1__a {
        display: block;
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-c1::before, .clarifications-c1__dot {
            animation: none;
        }
    }

.contacts-fresh-v3 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .contacts-fresh-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: calc(var(--gap) * 2);
    }

    .contacts-fresh-v3 .left h2 {
        margin: .3rem 0;
        font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    }

    .contacts-fresh-v3 .left p {
        max-width: 46ch;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v3 .right {
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v3 .row {
        padding: 1rem 1.1rem;
        border-left: 4px solid var(--bg-primary);
        background: var(--surface-2);
        border-radius: var(--radius-sm);
    }

    .contacts-fresh-v3 h3 {
        margin: 0 0 .3rem;
    }

    .contacts-fresh-v3 p {
        margin: 0;
        font-weight: 700;
    }

    .contacts-fresh-v3 small {
        color: var(--fg-on-surface-light);
    }

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

.site-header {
  background: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-left,
.nav-right {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

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

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

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid var(--brand);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: var(--space-x);
  top: 50%;
  transform: translateY(-50%);
  z-index: 110;
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

.mobile-nav {
  display: none;
  background: var(--surface-1);
  border-top: 1px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.mobile-nav-list .nav-link {
  display: block;
  padding: 0.5rem 0;
  font-size: calc(var(--font-size-base) * 1.1);
  border-bottom: 1px solid var(--border-on-surface-light);
}

.mobile-nav-list .nav-link::after {
  display: none;
}

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
    display: flex;
    align-items: flex-start;
  }
  .brand {
    background: linear-gradient(135deg, #0f3460, #16213e);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e94560;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e94560;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #e94560;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .legal-links a {
    color: #a0a0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #e94560;
  }
  .footer-bottom {
    flex: 1 1 100%;
    border-top: 1px solid #2a2a4a;
    padding-top: 1.5rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
  }
  .contact-info address {
    font-style: normal;
    color: #c0c0d0;
  }
  .contact-info a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-info a:hover {
    color: #e94560;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
    line-height: 1.5;
  }
  .copyright {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-left {
      justify-content: center;
    }
    .footer-right {
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .legal-links {
      justify-content: center;
    }
    .contact-info {
      justify-content: center;
      flex-direction: column;
      align-items: center;
    }
    .disclaimer, .copyright {
      text-align: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

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

.site-header {
  background: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-left,
.nav-right {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

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

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

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid var(--brand);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: var(--space-x);
  top: 50%;
  transform: translateY(-50%);
  z-index: 110;
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

.mobile-nav {
  display: none;
  background: var(--surface-1);
  border-top: 1px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.mobile-nav-list .nav-link {
  display: block;
  padding: 0.5rem 0;
  font-size: calc(var(--font-size-base) * 1.1);
  border-bottom: 1px solid var(--border-on-surface-light);
}

.mobile-nav-list .nav-link::after {
  display: none;
}

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
    display: flex;
    align-items: flex-start;
  }
  .brand {
    background: linear-gradient(135deg, #0f3460, #16213e);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e94560;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e94560;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #e94560;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .legal-links a {
    color: #a0a0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #e94560;
  }
  .footer-bottom {
    flex: 1 1 100%;
    border-top: 1px solid #2a2a4a;
    padding-top: 1.5rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
  }
  .contact-info address {
    font-style: normal;
    color: #c0c0d0;
  }
  .contact-info a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-info a:hover {
    color: #e94560;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
    line-height: 1.5;
  }
  .copyright {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-left {
      justify-content: center;
    }
    .footer-right {
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .legal-links {
      justify-content: center;
    }
    .contact-info {
      justify-content: center;
      flex-direction: column;
      align-items: center;
    }
    .disclaimer, .copyright {
      text-align: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

.site-header {
  background: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-left,
.nav-right {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

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

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

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid var(--brand);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: var(--space-x);
  top: 50%;
  transform: translateY(-50%);
  z-index: 110;
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

.mobile-nav {
  display: none;
  background: var(--surface-1);
  border-top: 1px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.mobile-nav-list .nav-link {
  display: block;
  padding: 0.5rem 0;
  font-size: calc(var(--font-size-base) * 1.1);
  border-bottom: 1px solid var(--border-on-surface-light);
}

.mobile-nav-list .nav-link::after {
  display: none;
}

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
    display: flex;
    align-items: flex-start;
  }
  .brand {
    background: linear-gradient(135deg, #0f3460, #16213e);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e94560;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e94560;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #e94560;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .legal-links a {
    color: #a0a0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #e94560;
  }
  .footer-bottom {
    flex: 1 1 100%;
    border-top: 1px solid #2a2a4a;
    padding-top: 1.5rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
  }
  .contact-info address {
    font-style: normal;
    color: #c0c0d0;
  }
  .contact-info a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-info a:hover {
    color: #e94560;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
    line-height: 1.5;
  }
  .copyright {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-left {
      justify-content: center;
    }
    .footer-right {
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .legal-links {
      justify-content: center;
    }
    .contact-info {
      justify-content: center;
      flex-direction: column;
      align-items: center;
    }
    .disclaimer, .copyright {
      text-align: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

    .thank-mode-a .box {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

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

    .thank-mode-a p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .thank-mode-a a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

.site-header {
  background: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-left,
.nav-right {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

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

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

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid var(--brand);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: var(--space-x);
  top: 50%;
  transform: translateY(-50%);
  z-index: 110;
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

.mobile-nav {
  display: none;
  background: var(--surface-1);
  border-top: 1px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  box-shadow: var(--shadow-md);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.mobile-nav-list .nav-link {
  display: block;
  padding: 0.5rem 0;
  font-size: calc(var(--font-size-base) * 1.1);
  border-bottom: 1px solid var(--border-on-surface-light);
}

.mobile-nav-list .nav-link::after {
  display: none;
}

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
    display: flex;
    align-items: flex-start;
  }
  .brand {
    background: linear-gradient(135deg, #0f3460, #16213e);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e94560;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e94560;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #e94560;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .legal-links a {
    color: #a0a0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #e94560;
  }
  .footer-bottom {
    flex: 1 1 100%;
    border-top: 1px solid #2a2a4a;
    padding-top: 1.5rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
  }
  .contact-info address {
    font-style: normal;
    color: #c0c0d0;
  }
  .contact-info a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-info a:hover {
    color: #e94560;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
    line-height: 1.5;
  }
  .copyright {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-left {
      justify-content: center;
    }
    .footer-right {
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .legal-links {
      justify-content: center;
    }
    .contact-info {
      justify-content: center;
      flex-direction: column;
      align-items: center;
    }
    .disclaimer, .copyright {
      text-align: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

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

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

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

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