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

  --max-w: 1260px;
  --space-x: 1.36rem;
  --space-y: 1.45rem;
  --gap: 2.09rem;

  --radius-xl: 1.13rem;
  --radius-lg: 0.84rem;
  --radius-md: 0.68rem;
  --radius-sm: 0.33rem;

  --shadow-sm: 0 2px 7px rgba(0,0,0,0.13);
  --shadow-md: 0 8px 22px rgba(0,0,0,0.17);
  --shadow-lg: 0 34px 58px rgba(0,0,0,0.21);

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

  --brand: #1E3A5F;
  --brand-contrast: #FFFFFF;
  --accent: #FF6B35;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D5DB;
  --neutral-600: #6B7280;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

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

  --bg-alt: #E8EDF2;
  --fg-on-alt: #1F2937;

  --surface-1: #FFFFFF;
  --surface-2: #F9FAFB;
  --fg-on-surface: #1F2937;
  --border-on-surface: #E5E7EB;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #E5E7EB;

  --bg-primary: #1E3A5F;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #162D4A;
  --ring: #FF6B35;

  --bg-accent: #FF6B35;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #E55A2B;

  --link: #1E3A5F;
  --link-hover: #FF6B35;

  --gradient-hero: linear-gradient(135deg, #1E3A5F 0%, #2B5A8C 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);

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

.site-header {
  background-color: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  position: relative;
  z-index: 100;
  width: 100%;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
  gap: var(--gap, 1rem);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand, #2c3e50);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: var(--gap, 1rem);
}

.contact-item {
  font-size: var(--font-size-base, 1rem);
  color: var(--neutral-600, #6c757d);
  line-height: var(--line-height-base, 1.5);
}

.cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent, #e74c3c);
  color: var(--accent-contrast, #ffffff);
  border-radius: var(--radius-md, 8px);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base, 1rem);
  transition: background-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  line-height: var(--line-height-base, 1.5);
}

.cta-button:hover {
  background-color: var(--bg-accent-hover, #c0392b);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800, #343a40);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

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

.header-nav {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: 0 var(--space-x, 1.5rem) var(--space-y, 1rem);
}

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

.nav-item {
  margin: 0;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  color: var(--neutral-800, #343a40);
  text-decoration: none;
  font-size: var(--font-size-base, 1rem);
  font-weight: 500;
  border-radius: var(--radius-sm, 4px);
  transition: background-color var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  line-height: var(--line-height-base, 1.5);
}

.nav-link:hover,
.nav-link:focus {
  background-color: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  color: var(--brand, #2c3e50);
}

@media (max-width: 767px) {
  .header-contact {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-nav {
    display: none;
    padding: 0 var(--space-x, 1.5rem) var(--space-y, 1rem);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border-on-surface-light, #e9ecef);
  }

  .nav-item:last-child .nav-link {
    border-bottom: none;
  }
}

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

  .burger {
    display: none !important;
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #3498db;
    text-decoration: none;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95em;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9em;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.9em;
  }
  .contact-info a {
    color: #3498db;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8em;
    color: #95a5a6;
    margin-top: 10px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.wp-lang-switcher-v8 {
        position: fixed;
        right: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
    }

    .wp-lang-switcher-v8__toggle {
        width: 58px;
        height: 58px;
        border-radius: 12px;
        border: 0;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.08em;
        cursor: pointer;
        display: grid;
        place-items: center;
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .wp-lang-switcher-v8__dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: color-mix(in srgb, var(--fg-on-primary) 78%, transparent);
        position: absolute;
        right: 13px;
        top: 13px;
    }

    .wp-lang-switcher-v8__list {
        position: absolute;
        right: 0;
        bottom: 66px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px) scale(0.95);
        transform-origin: bottom right;
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v8__list.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .wp-lang-switcher-v8__list button,
    .wp-lang-switcher-v8__list a {
        min-width: 56px;
        height: 38px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.06em;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v8__list button:hover,
    .wp-lang-switcher-v8__list a:hover {
        transform: translateX(-2px);
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }

.intro-flag-c11 {
        padding: clamp(3.8rem, 8vw, 6.8rem) var(--space-x);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .intro-flag-c11__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

    .intro-flag-c11__left, .intro-flag-c11__right {
        padding: 1.1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-flag-c11__tag {
        display: inline-flex;
        padding: .4rem .75rem;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .intro-flag-c11__left h1 {
        margin: .8rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.6rem);
        line-height: 1;
    }

    .intro-flag-c11__left p {
        margin: .9rem 0 0;

    }

    .intro-flag-c11__right {
        display: grid;
        align-content: center;
        gap: .65rem;
    }

    .intro-flag-c11__right div {
        font-size: clamp(2.8rem, 5vw, 4rem);
        font-weight: 700;
    }

    .intro-flag-c11__right span {
        color: rgba(255, 255, 255, .82);
    }

    @media (max-width: 860px) {
        .intro-flag-c11__wrap {
            grid-template-columns: 1fr;
        }
    }

.cta-struct-v2 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900)
    }

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

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

    .cta-struct-v2 a {
        text-decoration: none
    }

    .cta-struct-v2 .center, .cta-struct-v2 .banner, .cta-struct-v2 .stack, .cta-struct-v2 .bar, .cta-struct-v2 .split, .cta-struct-v2 .duo article {
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--border-on-surface)
    }

    .cta-struct-v2 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

    .cta-struct-v2 .split {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    .cta-struct-v2 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

    .cta-struct-v2 .actions a, .cta-struct-v2 .center a, .cta-struct-v2 .banner > a, .cta-struct-v2 .duo a {
        display: inline-flex;
        min-height: 2.35rem;
        padding: 0 .85rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .cta-struct-v2 .banner {
        display: grid;
        gap: .6rem
    }

    .cta-struct-v2 .numbers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: .5rem
    }

    .cta-struct-v2 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300)
    }

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

    .cta-struct-v2 .duo article {
        display: grid;
        gap: .45rem
    }

    .cta-struct-v2 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .cta-struct-v2 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .cta-struct-v2 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300)
    }

    .cta-struct-v2 .bar {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    @media (max-width: 820px) {
        .cta-struct-v2 .split, .cta-struct-v2 .bar, .cta-struct-v2 .duo {
            grid-template-columns:1fr
        }

        .cta-struct-v2 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .cta-struct-v2 .numbers {
            grid-template-columns:1fr
        }
    }

.recommendations-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .recommendations-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .recommendations-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .recommendations-u5 .sub{margin:.35rem 0 0;opacity:.9;} .recommendations-u5 article,.recommendations-u5 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .recommendations-u5 p{margin:0} .recommendations-u5 a{text-decoration:none;color:inherit;font-weight:700} .recommendations-u5 .table{display:grid;gap:.5rem} .recommendations-u5 .foot{display:grid;grid-template-columns:1fr 1fr;gap:.5rem;margin-top:.65rem} .recommendations-u5 .foot p{padding:.65rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} @media (max-width:860px){.recommendations-u5 .split,.recommendations-u5 .media,.recommendations-u5 .grid,.recommendations-u5 .cards,.recommendations-u5 .bento,.recommendations-u5 .foot{grid-template-columns:1fr}}

.why-choose-light-alt {

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

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

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

    }

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

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

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

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

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

    .why-choose-light-alt .why-choose-light-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        align-items: flex-start;

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
  background-color: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  position: relative;
  z-index: 100;
  width: 100%;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
  gap: var(--gap, 1rem);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand, #2c3e50);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: var(--gap, 1rem);
}

.contact-item {
  font-size: var(--font-size-base, 1rem);
  color: var(--neutral-600, #6c757d);
  line-height: var(--line-height-base, 1.5);
}

.cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent, #e74c3c);
  color: var(--accent-contrast, #ffffff);
  border-radius: var(--radius-md, 8px);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base, 1rem);
  transition: background-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  line-height: var(--line-height-base, 1.5);
}

.cta-button:hover {
  background-color: var(--bg-accent-hover, #c0392b);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800, #343a40);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

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

.header-nav {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: 0 var(--space-x, 1.5rem) var(--space-y, 1rem);
}

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

.nav-item {
  margin: 0;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  color: var(--neutral-800, #343a40);
  text-decoration: none;
  font-size: var(--font-size-base, 1rem);
  font-weight: 500;
  border-radius: var(--radius-sm, 4px);
  transition: background-color var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  line-height: var(--line-height-base, 1.5);
}

.nav-link:hover,
.nav-link:focus {
  background-color: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  color: var(--brand, #2c3e50);
}

@media (max-width: 767px) {
  .header-contact {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-nav {
    display: none;
    padding: 0 var(--space-x, 1.5rem) var(--space-y, 1rem);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border-on-surface-light, #e9ecef);
  }

  .nav-item:last-child .nav-link {
    border-bottom: none;
  }
}

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

  .burger {
    display: none !important;
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #3498db;
    text-decoration: none;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95em;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9em;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.9em;
  }
  .contact-info a {
    color: #3498db;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8em;
    color: #95a5a6;
    margin-top: 10px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.mis-lx8{padding:calc(var(--space-y)*2.95) var(--space-x);background:var(--bg-alt)}
.mis-lx8 .mis-shell{max-width:var(--max-w);margin:0 auto}
.mis-lx8 h2{margin:0 0 .9rem;font-size:clamp(1.75rem,3.1vw,2.45rem)}
.mis-lx8 .mis-split{display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)}
.mis-lx8 .mis-split>p{margin:0;padding:1rem;border-radius:var(--radius-lg);background:var(--surface-1);border:1px solid var(--border-on-surface);color:var(--fg-on-surface-light)}
.mis-lx8 .mis-points{display:grid;gap:.55rem}
.mis-lx8 .mis-points div{padding:.8rem .9rem;border-radius:var(--radius-md);background:var(--surface-1);border-inline-start:4px solid var(--bg-primary)}
.mis-lx8 h3{margin:0 0 .2rem;font-size:1.02rem}
.mis-lx8 .mis-points p{margin:0;color:var(--fg-on-surface-light)}
@keyframes missionFloat{0%{transform:translateY(4px);opacity:.75}100%{transform:none;opacity:1}}
.mis-lx8 .mis-points div{animation:missionFloat .45s var(--anim-ease) both}
.mis-lx8 .mis-points div:nth-child(2){animation-delay:.06s}.mis-lx8 .mis-points div:nth-child(3){animation-delay:.12s}
@media (max-width:860px){.mis-lx8 .mis-split{grid-template-columns:1fr}}

.timeline-u9{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .timeline-u9 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .timeline-u9 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .timeline-u9 .sub{margin:.35rem 0 0;opacity:.9;} .timeline-u9 article,.timeline-u9 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .timeline-u9 p{margin:0} .timeline-u9 a{text-decoration:none;color:inherit;font-weight:700} .timeline-u9 .cards{padding:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.55rem} .timeline-u9 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .timeline-u9 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.timeline-u9 .split,.timeline-u9 .media,.timeline-u9 .grid,.timeline-u9 .cards,.timeline-u9 .bento,.timeline-u9 .foot{grid-template-columns:1fr}}

.identity-lv4 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

    .identity-lv4__head {
        margin-bottom: 15px;
    }

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

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

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

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

    .identity-lv4__stack article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        padding: 12px;
    }

    .identity-lv4__line {
        display: flex;
        align-items: baseline;
        gap: 8px;
        flex-wrap: wrap;
    }

    .identity-lv4__line i {
        font-style: normal;
        color: var(--link);
    }

    .identity-lv4__line h3 {
        margin: 0;
    }

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

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

.site-header {
  background-color: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  position: relative;
  z-index: 100;
  width: 100%;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
  gap: var(--gap, 1rem);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand, #2c3e50);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: var(--gap, 1rem);
}

.contact-item {
  font-size: var(--font-size-base, 1rem);
  color: var(--neutral-600, #6c757d);
  line-height: var(--line-height-base, 1.5);
}

.cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent, #e74c3c);
  color: var(--accent-contrast, #ffffff);
  border-radius: var(--radius-md, 8px);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base, 1rem);
  transition: background-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  line-height: var(--line-height-base, 1.5);
}

.cta-button:hover {
  background-color: var(--bg-accent-hover, #c0392b);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800, #343a40);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

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

.header-nav {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: 0 var(--space-x, 1.5rem) var(--space-y, 1rem);
}

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

.nav-item {
  margin: 0;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  color: var(--neutral-800, #343a40);
  text-decoration: none;
  font-size: var(--font-size-base, 1rem);
  font-weight: 500;
  border-radius: var(--radius-sm, 4px);
  transition: background-color var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  line-height: var(--line-height-base, 1.5);
}

.nav-link:hover,
.nav-link:focus {
  background-color: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  color: var(--brand, #2c3e50);
}

@media (max-width: 767px) {
  .header-contact {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-nav {
    display: none;
    padding: 0 var(--space-x, 1.5rem) var(--space-y, 1rem);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border-on-surface-light, #e9ecef);
  }

  .nav-item:last-child .nav-link {
    border-bottom: none;
  }
}

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

  .burger {
    display: none !important;
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #3498db;
    text-decoration: none;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95em;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9em;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.9em;
  }
  .contact-info a {
    color: #3498db;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8em;
    color: #95a5a6;
    margin-top: 10px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.hiw-ux11 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

    .hiw-ux11__head {
        margin-bottom: 1.2rem;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

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

    .hiw-ux11__head p {
        margin: 0;
        color: var(--neutral-600);
        max-width: 32rem;
    }

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

    .hiw-ux11__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-sm);
    }

    .hiw-ux11__badge {
        display: inline-flex;
        padding: .35rem .65rem;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--brand);
        font-weight: 700;
    }

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

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

.cap-prism-v5{padding:calc(var(--space-y)*3) var(--space-x);background:var(--neutral-800);color:var(--neutral-0)}
.cap-prism-v5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)}
.cap-prism-v5 .banner{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:var(--gap);padding:1rem;border-radius:var(--radius-lg);background:var(--gradient-hero)}
.cap-prism-v5 h2{margin:0;font-size:clamp(1.7rem,3.3vw,2.5rem)}
.cap-prism-v5 .banner a{padding:.56rem .82rem;border-radius:var(--radius-sm);text-decoration:none;background:var(--surface-1);color:var(--fg-on-surface);font-weight:700}
.cap-prism-v5 .cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--gap);padding:0;margin:0;list-style:none}
.cap-prism-v5 li{padding:1rem;border-radius:var(--radius-md);background:var(--chip-bg)}
.cap-prism-v5 h3{margin:0 0 .45rem}
.cap-prism-v5 p{margin:0;opacity:.9}
.cap-prism-v5 small{display:block;margin-top:.5rem;font-weight:700}
@media (max-width:980px){.cap-prism-v5 .cards{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (max-width:640px){.cap-prism-v5 .cards{grid-template-columns:1fr}}

.plans-ux10{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--neutral-100);color:var(--neutral-900)}.plans-ux10__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux10__top p{margin:8px 0 12px;color:var(--neutral-600)}.plans-ux10__matrix{display:grid;grid-template-columns:repeat(12,1fr);gap:10px}.plans-ux10__matrix article{grid-column:span 4;border:1px solid var(--neutral-300);border-radius:var(--radius-md);background:var(--neutral-0);padding:12px}.plans-ux10__matrix article:nth-child(1){grid-column:span 6}.plans-ux10__matrix article:nth-child(2){grid-column:span 6}.plans-ux10 h3{margin:0}.plans-ux10 p{margin:7px 0;color:var(--neutral-800)}.plans-ux10 span{display:inline-flex;margin:0 6px 6px 0;padding:4px 8px;border-radius:999px;border:1px solid var(--neutral-300);background:var(--neutral-100)}.plans-ux10 button{width:100%;margin-top:8px;border:1px solid var(--neutral-300);border-radius:var(--radius-sm);padding:8px 10px;background:var(--neutral-100);color:var(--neutral-900)}@media(max-width:900px){.plans-ux10__matrix article{grid-column:span 6}}@media(max-width:640px){.plans-ux10__matrix article{grid-column:span 12}}

.site-header {
  background-color: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  position: relative;
  z-index: 100;
  width: 100%;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
  gap: var(--gap, 1rem);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand, #2c3e50);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: var(--gap, 1rem);
}

.contact-item {
  font-size: var(--font-size-base, 1rem);
  color: var(--neutral-600, #6c757d);
  line-height: var(--line-height-base, 1.5);
}

.cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent, #e74c3c);
  color: var(--accent-contrast, #ffffff);
  border-radius: var(--radius-md, 8px);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base, 1rem);
  transition: background-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  line-height: var(--line-height-base, 1.5);
}

.cta-button:hover {
  background-color: var(--bg-accent-hover, #c0392b);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800, #343a40);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

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

.header-nav {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: 0 var(--space-x, 1.5rem) var(--space-y, 1rem);
}

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

.nav-item {
  margin: 0;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  color: var(--neutral-800, #343a40);
  text-decoration: none;
  font-size: var(--font-size-base, 1rem);
  font-weight: 500;
  border-radius: var(--radius-sm, 4px);
  transition: background-color var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  line-height: var(--line-height-base, 1.5);
}

.nav-link:hover,
.nav-link:focus {
  background-color: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  color: var(--brand, #2c3e50);
}

@media (max-width: 767px) {
  .header-contact {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-nav {
    display: none;
    padding: 0 var(--space-x, 1.5rem) var(--space-y, 1rem);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border-on-surface-light, #e9ecef);
  }

  .nav-item:last-child .nav-link {
    border-bottom: none;
  }
}

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

  .burger {
    display: none !important;
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #3498db;
    text-decoration: none;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95em;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9em;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.9em;
  }
  .contact-info a {
    color: #3498db;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8em;
    color: #95a5a6;
    margin-top: 10px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.frm-lx2{padding:calc(var(--space-y)*2.9) var(--space-x)}
.frm-lx2 .frm-shell{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)}
.frm-lx2 .frm-intro{padding:1rem;border-radius:var(--radius-lg);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.frm-lx2 h2{margin:0;font-size:clamp(1.85rem,3.5vw,2.65rem)}
.frm-lx2 .frm-intro p{margin:.45rem 0 0;color:var(--fg-on-surface-light)}
.frm-lx2 .frm-panel{padding:1.1rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-xl);background:var(--surface-1);box-shadow:var(--shadow-md);display:grid;gap:.75rem}
.frm-lx2 .frm-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.62rem}
.frm-lx2 label{display:grid;gap:.28rem}
.frm-lx2 span{font-size:.84rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx2 input,.frm-lx2 textarea{width:100%;padding:.78rem .82rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-md);background:var(--surface-1);color:var(--fg-on-surface);font:inherit;outline:none;transition:border-color var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)}
.frm-lx2 input:focus,.frm-lx2 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 20%, transparent)}
.frm-lx2 textarea{min-height:128px;resize:vertical}
.frm-lx2 button{justify-self:start;padding:.82rem 1.1rem;border:0;border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
.frm-lx2 button:hover{background:var(--bg-primary-hover)}
@media (max-width:920px){.frm-lx2 .frm-shell,.frm-lx2 .frm-grid{grid-template-columns:1fr}}

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

    .map-poster-c7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.25rem;
        flex-wrap: wrap;
        align-items: start;
    }

    .map-poster-c7__copy {
        flex: 1 1 18rem;
    }

    .map-poster-c7__embed {
        flex: 1 1 24rem;
    }

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

    .map-poster-c7__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .map-poster-c7__details {
        margin-top: 1rem;
        display: grid;
        gap: .75rem;
    }

    .map-poster-c7__details div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-poster-c7__details span {
        display: block;
        margin-top: .35rem;
        color: rgba(255, 255, 255, .84);
    }

    .map-poster-c7__embed iframe {
        display: block;
        width: 100%;
        min-height: 24rem;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-lg);
    }

.con-lx8{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-alt)}
.con-lx8 .con-stage{max-width:var(--max-w);margin:0 auto;padding:1.1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.con-lx8 .con-head h2{margin:0;font-size:clamp(1.75rem,3.1vw,2.45rem)}
.con-lx8 .con-head p{margin:.4rem 0 .95rem;color:var(--fg-on-surface-light)}
.con-lx8 .con-columns{display:grid;grid-template-columns:1.2fr .8fr;gap:.75rem}
.con-lx8 .con-essentials{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.6rem}
.con-lx8 .con-essentials article{padding:.9rem;border-radius:var(--radius-md);background:var(--surface-2)}
.con-lx8 small{display:block;color:var(--fg-on-surface-light);margin-bottom:.2rem}
.con-lx8 a{text-decoration:none;color:var(--link);font-weight:700}
.con-lx8 .con-side{padding:.9rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface)}
.con-lx8 .con-side p{margin:0 0 .55rem}
.con-lx8 .con-side p:last-child{margin:0}
.con-lx8 .con-tags{display:flex;flex-wrap:wrap;gap:.45rem;margin-top:.85rem}
.con-lx8 .con-tags a{padding:.35rem .6rem;border-radius:99px;background:var(--surface-2);border:1px solid var(--border-on-surface);font-weight:600}
@media (max-width:860px){.con-lx8 .con-columns,.con-lx8 .con-essentials{grid-template-columns:1fr}}

.touch-stream {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .touch-stream .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .touch-stream .touch-header {
        margin-bottom: 12px;
    }

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

    .touch-stream .touhc-header p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .touch-stream .stream {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 8px;
    }

    .touch-stream .chip {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        padding: 10px 12px;
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
    }

    .touch-stream .chip em {
        font-style: normal;
        opacity: .85;
    }

    .touch-stream .foot {
        margin-top: 12px;
    }

    .touch-stream .foot a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: var(--radius-md);
        padding: 10px 14px;
        display: inline-block;
    }

.site-header {
  background-color: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  position: relative;
  z-index: 100;
  width: 100%;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
  gap: var(--gap, 1rem);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand, #2c3e50);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: var(--gap, 1rem);
}

.contact-item {
  font-size: var(--font-size-base, 1rem);
  color: var(--neutral-600, #6c757d);
  line-height: var(--line-height-base, 1.5);
}

.cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent, #e74c3c);
  color: var(--accent-contrast, #ffffff);
  border-radius: var(--radius-md, 8px);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base, 1rem);
  transition: background-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  line-height: var(--line-height-base, 1.5);
}

.cta-button:hover {
  background-color: var(--bg-accent-hover, #c0392b);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800, #343a40);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

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

.header-nav {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: 0 var(--space-x, 1.5rem) var(--space-y, 1rem);
}

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

.nav-item {
  margin: 0;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  color: var(--neutral-800, #343a40);
  text-decoration: none;
  font-size: var(--font-size-base, 1rem);
  font-weight: 500;
  border-radius: var(--radius-sm, 4px);
  transition: background-color var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  line-height: var(--line-height-base, 1.5);
}

.nav-link:hover,
.nav-link:focus {
  background-color: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  color: var(--brand, #2c3e50);
}

@media (max-width: 767px) {
  .header-contact {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-nav {
    display: none;
    padding: 0 var(--space-x, 1.5rem) var(--space-y, 1rem);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border-on-surface-light, #e9ecef);
  }

  .nav-item:last-child .nav-link {
    border-bottom: none;
  }
}

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

  .burger {
    display: none !important;
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #3498db;
    text-decoration: none;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95em;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9em;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.9em;
  }
  .contact-info a {
    color: #3498db;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8em;
    color: #95a5a6;
    margin-top: 10px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.policyitems-u3{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .policyitems-u3 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .policyitems-u3 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .policyitems-u3 .sub{margin:.35rem 0 0;opacity:.9;} .policyitems-u3 article,.policyitems-u3 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .policyitems-u3 p{margin:0} .policyitems-u3 a{text-decoration:none;color:inherit;font-weight:700} .policyitems-u3 .rail{display:flex;gap:.55rem;overflow:auto} .policyitems-u3 .rail article{min-width:240px} .policyitems-u3 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .policyitems-u3 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.policyitems-u3 .split,.policyitems-u3 .media,.policyitems-u3 .grid,.policyitems-u3 .cards,.policyitems-u3 .bento,.policyitems-u3 .foot{grid-template-columns:1fr}}

.site-header {
  background-color: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  position: relative;
  z-index: 100;
  width: 100%;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
  gap: var(--gap, 1rem);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand, #2c3e50);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: var(--gap, 1rem);
}

.contact-item {
  font-size: var(--font-size-base, 1rem);
  color: var(--neutral-600, #6c757d);
  line-height: var(--line-height-base, 1.5);
}

.cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent, #e74c3c);
  color: var(--accent-contrast, #ffffff);
  border-radius: var(--radius-md, 8px);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base, 1rem);
  transition: background-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  line-height: var(--line-height-base, 1.5);
}

.cta-button:hover {
  background-color: var(--bg-accent-hover, #c0392b);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800, #343a40);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

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

.header-nav {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: 0 var(--space-x, 1.5rem) var(--space-y, 1rem);
}

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

.nav-item {
  margin: 0;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  color: var(--neutral-800, #343a40);
  text-decoration: none;
  font-size: var(--font-size-base, 1rem);
  font-weight: 500;
  border-radius: var(--radius-sm, 4px);
  transition: background-color var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  line-height: var(--line-height-base, 1.5);
}

.nav-link:hover,
.nav-link:focus {
  background-color: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  color: var(--brand, #2c3e50);
}

@media (max-width: 767px) {
  .header-contact {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-nav {
    display: none;
    padding: 0 var(--space-x, 1.5rem) var(--space-y, 1rem);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border-on-surface-light, #e9ecef);
  }

  .nav-item:last-child .nav-link {
    border-bottom: none;
  }
}

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

  .burger {
    display: none !important;
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #3498db;
    text-decoration: none;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95em;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9em;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.9em;
  }
  .contact-info a {
    color: #3498db;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8em;
    color: #95a5a6;
    margin-top: 10px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

.site-header {
  background-color: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  position: relative;
  z-index: 100;
  width: 100%;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
  gap: var(--gap, 1rem);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand, #2c3e50);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: var(--gap, 1rem);
}

.contact-item {
  font-size: var(--font-size-base, 1rem);
  color: var(--neutral-600, #6c757d);
  line-height: var(--line-height-base, 1.5);
}

.cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent, #e74c3c);
  color: var(--accent-contrast, #ffffff);
  border-radius: var(--radius-md, 8px);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base, 1rem);
  transition: background-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  line-height: var(--line-height-base, 1.5);
}

.cta-button:hover {
  background-color: var(--bg-accent-hover, #c0392b);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800, #343a40);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

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

.header-nav {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: 0 var(--space-x, 1.5rem) var(--space-y, 1rem);
}

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

.nav-item {
  margin: 0;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  color: var(--neutral-800, #343a40);
  text-decoration: none;
  font-size: var(--font-size-base, 1rem);
  font-weight: 500;
  border-radius: var(--radius-sm, 4px);
  transition: background-color var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  line-height: var(--line-height-base, 1.5);
}

.nav-link:hover,
.nav-link:focus {
  background-color: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  color: var(--brand, #2c3e50);
}

@media (max-width: 767px) {
  .header-contact {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-nav {
    display: none;
    padding: 0 var(--space-x, 1.5rem) var(--space-y, 1rem);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border-on-surface-light, #e9ecef);
  }

  .nav-item:last-child .nav-link {
    border-bottom: none;
  }
}

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

  .burger {
    display: none !important;
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #3498db;
    text-decoration: none;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95em;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9em;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.9em;
  }
  .contact-info a {
    color: #3498db;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8em;
    color: #95a5a6;
    margin-top: 10px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.thx-lx6{padding:calc(var(--space-y)*2.65) var(--space-x)}
.thx-lx6 .thx-grid{max-width:980px;margin:0 auto;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.62rem}
.thx-lx6 .thx-main{grid-column:1/-1;padding:1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.thx-lx6 h2{margin:0;font-size:clamp(1.78rem,3.3vw,2.52rem)}
.thx-lx6 .thx-main p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.thx-lx6 article:not(.thx-main){padding:.88rem;border-radius:var(--radius-md);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.thx-lx6 h3{margin:0 0 .22rem;font-size:1rem}
.thx-lx6 article p{margin:0;color:var(--fg-on-surface-light)}
@media (max-width:700px){.thx-lx6 .thx-grid{grid-template-columns:1fr}}

.site-header {
  background-color: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  position: relative;
  z-index: 100;
  width: 100%;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
  gap: var(--gap, 1rem);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand, #2c3e50);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: var(--gap, 1rem);
}

.contact-item {
  font-size: var(--font-size-base, 1rem);
  color: var(--neutral-600, #6c757d);
  line-height: var(--line-height-base, 1.5);
}

.cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent, #e74c3c);
  color: var(--accent-contrast, #ffffff);
  border-radius: var(--radius-md, 8px);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base, 1rem);
  transition: background-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  line-height: var(--line-height-base, 1.5);
}

.cta-button:hover {
  background-color: var(--bg-accent-hover, #c0392b);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800, #343a40);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

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

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

.header-nav {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: 0 var(--space-x, 1.5rem) var(--space-y, 1rem);
}

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

.nav-item {
  margin: 0;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  color: var(--neutral-800, #343a40);
  text-decoration: none;
  font-size: var(--font-size-base, 1rem);
  font-weight: 500;
  border-radius: var(--radius-sm, 4px);
  transition: background-color var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  line-height: var(--line-height-base, 1.5);
}

.nav-link:hover,
.nav-link:focus {
  background-color: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  color: var(--brand, #2c3e50);
}

@media (max-width: 767px) {
  .header-contact {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-nav {
    display: none;
    padding: 0 var(--space-x, 1.5rem) var(--space-y, 1rem);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border-on-surface-light, #e9ecef);
  }

  .nav-item:last-child .nav-link {
    border-bottom: none;
  }
}

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

  .burger {
    display: none !important;
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #3498db;
    text-decoration: none;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95em;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9em;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.9em;
  }
  .contact-info a {
    color: #3498db;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8em;
    color: #95a5a6;
    margin-top: 10px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.err-slab-f {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .err-slab-f .chip {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        position: relative;
    }

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

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

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

    .err-slab-f a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }