:root {
  --font-family: "Rubik", sans-serif;
  --font-size-base: 16.6px;
  --line-height-base: 1.75;

  --max-w: 1320px;
  --space-x: 1.92rem;
  --space-y: 1.5rem;
  --gap: 1.77rem;

  --radius-xl: 1.19rem;
  --radius-lg: 0.78rem;
  --radius-md: 0.51rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.16);
  --shadow-md: 0 12px 24px rgba(0,0,0,0.21);
  --shadow-lg: 0 28px 46px rgba(0,0,0,0.25);

  --overlay: rgba(0,0,0,0.6);
  --anim-duration: 470ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 2;

  --brand: #E85D04;
  --brand-contrast: #FFFFFF;
  --accent: #F48C06;
  --accent-contrast: #FFFFFF;

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

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

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

  --surface-1: #FFFFFF;
  --surface-2: #F3F4F6;
  --fg-on-surface: #1F2937;
  --border-on-surface: #D1D5DB;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #4B5563;
  --border-on-surface-light: #E5E7EB;

  --bg-primary: #E85D04;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #D45202;
  --ring: #E85D04;

  --bg-accent: #F48C06;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #D97706;

  --link: #E85D04;
  --link-hover: #D45202;

  --gradient-hero: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  --gradient-accent: linear-gradient(135deg, #E85D04 0%, #F48C06 100%);

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

header {
  background: var(--surface-1, #ffffff);
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 var(--space-x, 1.5rem);
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--gap, 1rem);
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand, #1a3a5c);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  gap: var(--gap, 1.5rem);
  align-items: center;
}

.nav-menu a {
  color: var(--neutral-800, #333);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
  color: var(--brand, #1a3a5c);
  border-bottom-color: var(--brand, #1a3a5c);
}

.cta-button {
  background: var(--brand, #1a3a5c);
  color: var(--brand-contrast, #ffffff);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md, 6px);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-primary-hover, #15304d);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  gap: 4px;
  border-radius: var(--radius-sm, 4px);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--neutral-900, #111);
  border-radius: 2px;
  transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

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

@media (max-width: 767px) {
  .header-inner {
    height: 56px;
  }

  .nav-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 0.75rem var(--space-x, 1.5rem);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    width: 100%;
    text-align: center;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand h2 {
    color: #f0a500;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
  }
  .contact-info p {
    margin: 0.3rem 0;
  }
  .contact-info a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #b0b0b0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.hero-arc-v6 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .hero-arc-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: calc(var(--gap) * 1.5);
    }

    .hero-arc-v6 .top {
        display: grid;
        grid-template-columns:1fr minmax(260px, .82fr);
        gap: var(--gap);
        align-items: stretch;
    }

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

    .hero-arc-v6 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.3vw, 3.5rem);
        line-height: 1.1;
    }

    .hero-arc-v6 .subtitle {
        margin: 0;
        max-width: 50ch;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v6 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
    }

    .hero-arc-v6 .actions a {
        padding: .64rem .95rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        transition: background var(--anim-duration) var(--anim-ease);
    }

    .hero-arc-v6 .actions a:hover {
        background: var(--bg-primary-hover);
    }

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

    .hero-arc-v6 .image {
        overflow: hidden;
        border-radius: var(--radius-xl);
    }

    .hero-arc-v6 img {
        width: 100%;
        height: 100%;
        min-height: 300px;
        object-fit: cover;
        display: block;
    }

    .hero-arc-v6 .bottom {
        display: grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v6 .bottom article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        box-shadow: var(--shadow-sm);
    }

    .hero-arc-v6 .bottom p {
        margin: .3rem 0 0;
        opacity: .92;
    }

    @media (max-width: 960px) {
        .hero-arc-v6 .top {
            grid-template-columns:1fr;
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    @media (max-width: 680px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            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);
    }

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

    .next-ux18 {
        padding: clamp(3.7rem, 8vw, 6.3rem) var(--space-x);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .next-ux18__wrap {
        max-width: 60rem;
        margin: 0 auto;
        display: grid;
        grid-template-columns: .95fr 1.05fr;
        gap: 1rem;
        align-items: center;
    }

    .next-ux18__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
    }

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

    .next-ux18__copy span {
        display: block;
        margin-top: .85rem;

    }

    .next-ux18__stack {
        display: grid;
        gap: .7rem;
    }

    .next-ux18__stack a {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        padding: .9rem 1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .next-ux18__stack span {
        color: rgba(255, 255, 255, .8);
    }

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

    @media (max-width: 820px) {
        .next-ux18__wrap {
            grid-template-columns: 1fr;
        }
    }

.social-l2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

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

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

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

    .social-l2__wrap {
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-l2__quoteBox {
        padding: 18px;
        border-bottom: 1px solid var(--border-on-surface);
        position: relative;
    }

    .social-l2__quote {
        display: none;
    }

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

    .social-l2__q {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
    }

    .social-l2__m {
        margin-top: 12px;
        color: var(--neutral-600);
        font-weight: 800;
    }

    .social-l2__badges {
        overflow: hidden;
        background: var(--bg-alt);
    }

    .social-l2__badgeTrack {
        display: flex;
        gap: 10px;
        padding: 12px;
        width: max-content;
        animation: socialL2Badges 16s linear infinite;
    }

    @keyframes socialL2Badges {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-l2__badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        white-space: nowrap;
    }

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

header {
  background: var(--surface-1, #ffffff);
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 var(--space-x, 1.5rem);
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--gap, 1rem);
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand, #1a3a5c);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  gap: var(--gap, 1.5rem);
  align-items: center;
}

.nav-menu a {
  color: var(--neutral-800, #333);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
  color: var(--brand, #1a3a5c);
  border-bottom-color: var(--brand, #1a3a5c);
}

.cta-button {
  background: var(--brand, #1a3a5c);
  color: var(--brand-contrast, #ffffff);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md, 6px);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-primary-hover, #15304d);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  gap: 4px;
  border-radius: var(--radius-sm, 4px);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--neutral-900, #111);
  border-radius: 2px;
  transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

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

@media (max-width: 767px) {
  .header-inner {
    height: 56px;
  }

  .nav-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 0.75rem var(--space-x, 1.5rem);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    width: 100%;
    text-align: center;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand h2 {
    color: #f0a500;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
  }
  .contact-info p {
    margin: 0.3rem 0;
  }
  .contact-info a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #b0b0b0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.post-list {

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

    .post-list .post-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-list .post-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .post-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .post-list .post-list__categories {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .post-list .post-list__category {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-light);
        color: var(--fg-on-page);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__category:hover {
        background: var(--bg-primary);
        color: var(--fg-on-page) fff;
    }

    .post-list .post-list__list {
        display: flex;
        flex-direction: column;
        gap: var(--space-x);
    }

    .post-list .post-list__item {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(16px, 2vw, 24px);
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__item:hover {
        box-shadow: var(--shadow-md);
        transform: translateX(4px);
    }

    .post-list .post-list__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .post-list h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .post-list h3 a {
        color: var(--fg-on-page);
        text-decoration: none;
    }

    .post-list h3 a:hover {
        color: var(--bg-primary);
    }

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

header {
  background: var(--surface-1, #ffffff);
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 var(--space-x, 1.5rem);
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--gap, 1rem);
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand, #1a3a5c);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  gap: var(--gap, 1.5rem);
  align-items: center;
}

.nav-menu a {
  color: var(--neutral-800, #333);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
  color: var(--brand, #1a3a5c);
  border-bottom-color: var(--brand, #1a3a5c);
}

.cta-button {
  background: var(--brand, #1a3a5c);
  color: var(--brand-contrast, #ffffff);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md, 6px);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-primary-hover, #15304d);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  gap: 4px;
  border-radius: var(--radius-sm, 4px);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--neutral-900, #111);
  border-radius: 2px;
  transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

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

@media (max-width: 767px) {
  .header-inner {
    height: 56px;
  }

  .nav-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 0.75rem var(--space-x, 1.5rem);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    width: 100%;
    text-align: center;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand h2 {
    color: #f0a500;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
  }
  .contact-info p {
    margin: 0.3rem 0;
  }
  .contact-info a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #b0b0b0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.post-item {

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

    .post-item .post-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;

        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-page);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {

        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;

    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: none;
        outline: none;
        min-height: 100px;

    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

header {
  background: var(--surface-1, #ffffff);
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 var(--space-x, 1.5rem);
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--gap, 1rem);
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand, #1a3a5c);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  gap: var(--gap, 1.5rem);
  align-items: center;
}

.nav-menu a {
  color: var(--neutral-800, #333);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
  color: var(--brand, #1a3a5c);
  border-bottom-color: var(--brand, #1a3a5c);
}

.cta-button {
  background: var(--brand, #1a3a5c);
  color: var(--brand-contrast, #ffffff);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md, 6px);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-primary-hover, #15304d);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  gap: 4px;
  border-radius: var(--radius-sm, 4px);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--neutral-900, #111);
  border-radius: 2px;
  transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

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

@media (max-width: 767px) {
  .header-inner {
    height: 56px;
  }

  .nav-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 0.75rem var(--space-x, 1.5rem);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    width: 100%;
    text-align: center;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand h2 {
    color: #f0a500;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
  }
  .contact-info p {
    margin: 0.3rem 0;
  }
  .contact-info a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #b0b0b0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.post-item {

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

    .post-item .post-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;

        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-page);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {

        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;

    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: none;
        outline: none;
        min-height: 100px;

    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.author--light-v6 {

    padding: 32px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.author__inner {
    max-width: 520px;
    margin: 0 auto;
}

.author__name {
    margin: 0 0 4px;
    font-size: 1.05rem;
}

.author__role {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.author__bio {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

header {
  background: var(--surface-1, #ffffff);
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 var(--space-x, 1.5rem);
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--gap, 1rem);
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand, #1a3a5c);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  gap: var(--gap, 1.5rem);
  align-items: center;
}

.nav-menu a {
  color: var(--neutral-800, #333);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
  color: var(--brand, #1a3a5c);
  border-bottom-color: var(--brand, #1a3a5c);
}

.cta-button {
  background: var(--brand, #1a3a5c);
  color: var(--brand-contrast, #ffffff);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md, 6px);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-primary-hover, #15304d);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  gap: 4px;
  border-radius: var(--radius-sm, 4px);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--neutral-900, #111);
  border-radius: 2px;
  transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

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

@media (max-width: 767px) {
  .header-inner {
    height: 56px;
  }

  .nav-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 0.75rem var(--space-x, 1.5rem);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    width: 100%;
    text-align: center;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand h2 {
    color: #f0a500;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
  }
  .contact-info p {
    margin: 0.3rem 0;
  }
  .contact-info a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #b0b0b0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.post-item {

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

    .post-item .post-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;

        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-page);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {

        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;

    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: none;
        outline: none;
        min-height: 100px;

    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

header {
  background: var(--surface-1, #ffffff);
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 var(--space-x, 1.5rem);
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--gap, 1rem);
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand, #1a3a5c);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  gap: var(--gap, 1.5rem);
  align-items: center;
}

.nav-menu a {
  color: var(--neutral-800, #333);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
  color: var(--brand, #1a3a5c);
  border-bottom-color: var(--brand, #1a3a5c);
}

.cta-button {
  background: var(--brand, #1a3a5c);
  color: var(--brand-contrast, #ffffff);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md, 6px);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-primary-hover, #15304d);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  gap: 4px;
  border-radius: var(--radius-sm, 4px);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--neutral-900, #111);
  border-radius: 2px;
  transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

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

@media (max-width: 767px) {
  .header-inner {
    height: 56px;
  }

  .nav-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 0.75rem var(--space-x, 1.5rem);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    width: 100%;
    text-align: center;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand h2 {
    color: #f0a500;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
  }
  .contact-info p {
    margin: 0.3rem 0;
  }
  .contact-info a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #b0b0b0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.article-list--colored-v5 {

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

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

.article-list__header {
    margin-bottom: 20px;
}

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

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

.article-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.article-list__card {
    background: rgba(15,23,42,0.9);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    border: 1px solid rgba(148,163,184,0.6);
}

.article-list__card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: var(--brand-contrast);
}

.article-list__card p {
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: rgba(226,232,240,0.9);
}

.article-list__link {
    font-size: 0.85rem;
    color: var(--bg-accent);
    text-decoration: none;
}

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

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

    .faq-fresh-v1 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    }

    .faq-fresh-v1 .items {
        display: grid;
        gap: .8rem;
    }

    .faq-fresh-v1 details {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        padding: .85rem 1rem;
        background: var(--surface-1);
    }

    .faq-fresh-v1 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .faq-fresh-v1 p {
        margin: .7rem 0 0;
        color: var(--fg-on-surface-light);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}.clar-ux5{padding:clamp(20px,3vw,44px);background:var(--gradient-accent);color:var(--accent-contrast)}.clar-ux5__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux5__head{margin-bottom:12px}.clar-ux5__head h2{margin:0}.clar-ux5__head p{margin:8px 0 0;color:rgba(255,255,255,.88)}.clar-ux5__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px}.clar-ux5__grid article{border:1px solid rgba(255,255,255,.3);background:rgba(255,255,255,.1);border-radius:var(--radius-md);padding:12px}.clar-ux5__grid span,.clar-ux5__grid small{display:inline-flex;font-size:.82rem;opacity:.9}.clar-ux5__grid h3{margin:6px 0}.clar-ux5__grid p{margin:0;opacity:.93}

header {
  background: var(--surface-1, #ffffff);
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 var(--space-x, 1.5rem);
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--gap, 1rem);
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand, #1a3a5c);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  gap: var(--gap, 1.5rem);
  align-items: center;
}

.nav-menu a {
  color: var(--neutral-800, #333);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
  color: var(--brand, #1a3a5c);
  border-bottom-color: var(--brand, #1a3a5c);
}

.cta-button {
  background: var(--brand, #1a3a5c);
  color: var(--brand-contrast, #ffffff);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md, 6px);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-primary-hover, #15304d);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  gap: 4px;
  border-radius: var(--radius-sm, 4px);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--neutral-900, #111);
  border-radius: 2px;
  transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

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

@media (max-width: 767px) {
  .header-inner {
    height: 56px;
  }

  .nav-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 0.75rem var(--space-x, 1.5rem);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    width: 100%;
    text-align: center;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand h2 {
    color: #f0a500;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
  }
  .contact-info p {
    margin: 0.3rem 0;
  }
  .contact-info a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #b0b0b0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

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

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

    .form-fresh-v5 .head p {
        margin: .35rem 0 0;
        opacity: .82;
    }

    .form-fresh-v5 .panel {
        display: grid;
        gap: .7rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .form-fresh-v5 label {
        display: grid;
        gap: .3rem;
    }

    .form-fresh-v5 span {
        font-size: .82rem;
        opacity: .85;
    }

    .form-fresh-v5 input {
        padding: .65rem .75rem;
        border: 1px solid var(--btn-ghost-bg-hover);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        font: inherit;
    }

    .form-fresh-v5 button {
        padding: .72rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

    .support-cv5 {
        padding: clamp(54px, 7vw, 94px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .support-cv5__head {
        margin-bottom: 14px;
    }

    .support-cv5__head p {
        margin: 0;
        font-weight: 700;
        opacity: .9;
    }

    .support-cv5__head h2 {
        margin: 7px 0 0;
        font-size: clamp(30px, 5vw, 46px);
    }

    .support-cv5__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .support-cv5__grid article {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.32);
        color: var(--fg-on-page);
        padding: 13px;
        box-shadow: var(--shadow-sm);
    }

    .support-cv5__grid span {
        font-size: .82rem;
        color: var(--brand);
    }

    .support-cv5__grid h3 {
        margin: var(--space-x) 0;
    }

    .support-cv5__grid p {
        margin: 0;
        color: var(--neutral-700, var(--neutral-600));
    }

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

    .contact-layout-e .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .contact-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .contact-layout-e .rail {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 16px;
    }

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

    .contact-layout-e aside h3 {
        margin: 0 0 10px;
    }

    .contact-layout-e aside p {
        margin: 0 0 10px;
        opacity: .9;
    }

    .contact-layout-e .social {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .contact-layout-e .social a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .16);
        padding: 6px 10px;
        border-radius: var(--radius-sm);
    }

    .contact-layout-e .content {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        display: grid;
        gap: 10px;
    }

    .contact-layout-e .row {
        display: grid;
        gap: 3px;
        padding-bottom: 10px;
        border-bottom: 1px dashed var(--neutral-300);
    }

    .contact-layout-e .row:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    @media (max-width: 760px) {
        .contact-layout-e .rail {
            grid-template-columns: 1fr;
        }
    }

header {
  background: var(--surface-1, #ffffff);
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 var(--space-x, 1.5rem);
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--gap, 1rem);
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand, #1a3a5c);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  gap: var(--gap, 1.5rem);
  align-items: center;
}

.nav-menu a {
  color: var(--neutral-800, #333);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
  color: var(--brand, #1a3a5c);
  border-bottom-color: var(--brand, #1a3a5c);
}

.cta-button {
  background: var(--brand, #1a3a5c);
  color: var(--brand-contrast, #ffffff);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md, 6px);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-primary-hover, #15304d);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  gap: 4px;
  border-radius: var(--radius-sm, 4px);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--neutral-900, #111);
  border-radius: 2px;
  transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

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

@media (max-width: 767px) {
  .header-inner {
    height: 56px;
  }

  .nav-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 0.75rem var(--space-x, 1.5rem);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    width: 100%;
    text-align: center;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand h2 {
    color: #f0a500;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
  }
  .contact-info p {
    margin: 0.3rem 0;
  }
  .contact-info a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #b0b0b0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

    .terms-layout-f .list {
        display: grid;
        gap: 14px;
    }

    .terms-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        padding: var(--space-y) var(--space-x);
    }

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

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

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

header {
  background: var(--surface-1, #ffffff);
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 var(--space-x, 1.5rem);
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--gap, 1rem);
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand, #1a3a5c);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  gap: var(--gap, 1.5rem);
  align-items: center;
}

.nav-menu a {
  color: var(--neutral-800, #333);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
  color: var(--brand, #1a3a5c);
  border-bottom-color: var(--brand, #1a3a5c);
}

.cta-button {
  background: var(--brand, #1a3a5c);
  color: var(--brand-contrast, #ffffff);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md, 6px);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-primary-hover, #15304d);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  gap: 4px;
  border-radius: var(--radius-sm, 4px);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--neutral-900, #111);
  border-radius: 2px;
  transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

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

@media (max-width: 767px) {
  .header-inner {
    height: 56px;
  }

  .nav-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 0.75rem var(--space-x, 1.5rem);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    width: 100%;
    text-align: center;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand h2 {
    color: #f0a500;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
  }
  .contact-info p {
    margin: 0.3rem 0;
  }
  .contact-info a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #b0b0b0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

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

header {
  background: var(--surface-1, #ffffff);
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 var(--space-x, 1.5rem);
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--gap, 1rem);
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand, #1a3a5c);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  gap: var(--gap, 1.5rem);
  align-items: center;
}

.nav-menu a {
  color: var(--neutral-800, #333);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
  color: var(--brand, #1a3a5c);
  border-bottom-color: var(--brand, #1a3a5c);
}

.cta-button {
  background: var(--brand, #1a3a5c);
  color: var(--brand-contrast, #ffffff);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md, 6px);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-primary-hover, #15304d);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  gap: 4px;
  border-radius: var(--radius-sm, 4px);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--neutral-900, #111);
  border-radius: 2px;
  transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

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

@media (max-width: 767px) {
  .header-inner {
    height: 56px;
  }

  .nav-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 0.75rem var(--space-x, 1.5rem);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    width: 100%;
    text-align: center;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand h2 {
    color: #f0a500;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
  }
  .contact-info p {
    margin: 0.3rem 0;
  }
  .contact-info a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #b0b0b0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

header {
  background: var(--surface-1, #ffffff);
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 var(--space-x, 1.5rem);
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--gap, 1rem);
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand, #1a3a5c);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  gap: var(--gap, 1.5rem);
  align-items: center;
}

.nav-menu a {
  color: var(--neutral-800, #333);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
  color: var(--brand, #1a3a5c);
  border-bottom-color: var(--brand, #1a3a5c);
}

.cta-button {
  background: var(--brand, #1a3a5c);
  color: var(--brand-contrast, #ffffff);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md, 6px);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-primary-hover, #15304d);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  gap: 4px;
  border-radius: var(--radius-sm, 4px);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--neutral-900, #111);
  border-radius: 2px;
  transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

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

@media (max-width: 767px) {
  .header-inner {
    height: 56px;
  }

  .nav-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 0.75rem var(--space-x, 1.5rem);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-on-surface-light, #f0f0f0);
    width: 100%;
    text-align: center;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .brand h2 {
    color: #f0a500;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
  }
  .contact-info p {
    margin: 0.3rem 0;
  }
  .contact-info a {
    color: #f0a500;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #b0b0b0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.nf404-v12 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .nf404-v12__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-top: 6px solid var(--accent);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        border-right: 1px solid var(--border-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: clamp(28px, 4vw, 46px);
    }

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

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

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